diff --git a/Applications/CoreApp/MitkCoreApp.cpp b/Applications/CoreApp/MitkCoreApp.cpp index 8da51e9c15d..4e3de6b38fe 100644 --- a/Applications/CoreApp/MitkCoreApp.cpp +++ b/Applications/CoreApp/MitkCoreApp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Applications/PluginGenerator/COPYRIGHT_HEADER b/Applications/PluginGenerator/COPYRIGHT_HEADER new file mode 100644 index 00000000000..f92933ddebd --- /dev/null +++ b/Applications/PluginGenerator/COPYRIGHT_HEADER @@ -0,0 +1,11 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ diff --git a/Applications/PluginGenerator/LICENSE b/Applications/PluginGenerator/LICENSE new file mode 100644 index 00000000000..597f16cd219 --- /dev/null +++ b/Applications/PluginGenerator/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2003-2019, German Cancer Research Center (DKFZ) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the German Cancer Research Center (DKFZ), nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Applications/PluginGenerator/LICENSE.txt b/Applications/PluginGenerator/LICENSE.txt deleted file mode 100644 index 07c13ca8431..00000000000 --- a/Applications/PluginGenerator/LICENSE.txt +++ /dev/null @@ -1,29 +0,0 @@ -Copyright (c) 2003-2012 German Cancer Research Center, Division of Medical -and Biological Informatics -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name of the German Cancer Research Center, nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. diff --git a/Applications/PluginGenerator/MITKLicense.txt b/Applications/PluginGenerator/MITKLicense.txt deleted file mode 100644 index b51839eafef..00000000000 --- a/Applications/PluginGenerator/MITKLicense.txt +++ /dev/null @@ -1,15 +0,0 @@ -/*=================================================================== - -The Medical Imaging Interaction Toolkit (MITK) - -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. - -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ diff --git a/Applications/PluginGenerator/PluginGenerator.cpp b/Applications/PluginGenerator/PluginGenerator.cpp index a32fae17845..6bfa50e1f81 100644 --- a/Applications/PluginGenerator/PluginGenerator.cpp +++ b/Applications/PluginGenerator/PluginGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ctkCommandLineParser.h" #include @@ -253,8 +249,8 @@ int main(int argc, char **argv) parser.addArgument("help", "h", QVariant::Bool, " Show this help text"); parser.addArgument("out-dir", "o", QVariant::String, " Output directory", QDir::tempPath()); parser.addArgument( - "license", "l", QVariant::String, " Path to a file containing license information", ":/MITKLicense.txt"); - parser.addArgument("vendor", "v", QVariant::String, " The vendor of the generated code", "DKFZ"); + "license", "l", QVariant::String, " Path to a file containing license information", ":/COPYRIGHT_HEADER"); + parser.addArgument("vendor", "v", QVariant::String, " The vendor of the generated code", "German Cancer Research Center (DKFZ)"); parser.addArgument("quiet", "q", QVariant::Bool, " Do not print additional information"); parser.addArgument("confirm-all", "y", QVariant::Bool, " Answer all questions with 'yes'"); //parser.addArgument("check-update", "u", QVariant::Bool, " Check for updates and exit"); @@ -271,7 +267,7 @@ int main(int argc, char **argv) parser.beginGroup("Project options"); parser.addArgument( - "project-copyright", "", QVariant::String, " Path to a file containing copyright information", ":/LICENSE.txt"); + "project-copyright", "", QVariant::String, " Path to a file containing copyright information", ":/LICENSE"); parser.addArgument("project-name", "", QVariant::String, " The project name"); parser.setExactMatchRegularExpression("--project-name", "^[a-zA-Z_\\-]+$", "Project name invalid"); parser.addArgument("project-app-name", "", QVariant::String, " The application name"); diff --git a/Applications/PluginGenerator/PluginGeneratorConfig.h.in b/Applications/PluginGenerator/PluginGeneratorConfig.h.in index 64d4a62e60e..69b65a5ce65 100644 --- a/Applications/PluginGenerator/PluginGeneratorConfig.h.in +++ b/Applications/PluginGenerator/PluginGeneratorConfig.h.in @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PLUGINGENERATORCONFIG_H #define PLUGINGENERATORCONFIG_H diff --git a/Applications/PluginGenerator/ProjectTemplate/CMake/CPackSetup.cmake b/Applications/PluginGenerator/ProjectTemplate/CMake/CPackSetup.cmake index 4b180dbb6dc..9444664b5bf 100644 --- a/Applications/PluginGenerator/ProjectTemplate/CMake/CPackSetup.cmake +++ b/Applications/PluginGenerator/ProjectTemplate/CMake/CPackSetup.cmake @@ -2,8 +2,8 @@ set(CPACK_PACKAGE_NAME ${PROJECT_NAME}) set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "This is an awesome app") set(CPACK_PACKAGE_VENDOR "$(vendor)") set(CPACK_CREATE_DESKTOP_LINKS "${MY_APP_NAME}") -set(CPACK_PACKAGE_DESCRIPTION_FILE "${PROJECT_SOURCE_DIR}/LICENSE.txt") -set(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE.txt") +set(CPACK_PACKAGE_DESCRIPTION_FILE "${PROJECT_SOURCE_DIR}/LICENSE") +set(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE") set(CPACK_PACKAGE_VERSION_MAJOR "${${PROJECT_NAME}_VERSION_MAJOR}") set(CPACK_PACKAGE_VERSION_MINOR "${${PROJECT_NAME}_VERSION_MINOR}") diff --git a/Applications/PluginGenerator/ProjectTemplate/LICENSE.txt b/Applications/PluginGenerator/ProjectTemplate/LICENSE similarity index 100% rename from Applications/PluginGenerator/ProjectTemplate/LICENSE.txt rename to Applications/PluginGenerator/ProjectTemplate/LICENSE diff --git a/Applications/PluginGenerator/SetupPackaging.cmake b/Applications/PluginGenerator/SetupPackaging.cmake index a5d7c42929b..2edf76aa208 100644 --- a/Applications/PluginGenerator/SetupPackaging.cmake +++ b/Applications/PluginGenerator/SetupPackaging.cmake @@ -39,8 +39,8 @@ include(InstallRequiredSystemLibraries) set(CPACK_PACKAGE_NAME "MitkPluginGenerator") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MITK PluginGenerator bootstraps MITK-based projects") set(CPACK_PACKAGE_VENDOR "German Cancer Research Center (DKFZ)") -set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.txt") -set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.txt") +set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE") +set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE") set(CPACK_PACKAGE_VERSION_MAJOR "${VERSION_MAJOR}") set(CPACK_PACKAGE_VERSION_MINOR "${VERSION_MINOR}") set(CPACK_PACKAGE_VERSION_PATCH "${VERSION_PATCH}") diff --git a/Applications/PluginGenerator/plugin_template.qrc b/Applications/PluginGenerator/plugin_template.qrc index b205118c450..63399dd6d4e 100644 --- a/Applications/PluginGenerator/plugin_template.qrc +++ b/Applications/PluginGenerator/plugin_template.qrc @@ -13,6 +13,6 @@ PluginTemplate/src/internal/QmitkTemplateView.cpp PluginTemplate/src/internal/QmitkTemplateView.h PluginTemplate/src/internal/QmitkTemplateViewControls.ui - MITKLicense.txt + COPYRIGHT_HEADER diff --git a/Applications/PluginGenerator/project_template.qrc b/Applications/PluginGenerator/project_template.qrc index 5ec7a893b09..85b8e2c88a9 100644 --- a/Applications/PluginGenerator/project_template.qrc +++ b/Applications/PluginGenerator/project_template.qrc @@ -1,7 +1,7 @@ ProjectTemplate/CMakeLists.txt - ProjectTemplate/LICENSE.txt + ProjectTemplate/LICENSE ProjectTemplate/SuperBuild.cmake ProjectTemplate/Apps/TemplateApp/CMakeLists.txt ProjectTemplate/Apps/TemplateApp/startTemplateApp.bat.in @@ -12,6 +12,6 @@ ProjectTemplate/CMake/MacroEmptyExternalProject.cmake ProjectTemplate/CMakeExternals/MITK.cmake ProjectTemplate/Plugins/Plugins.cmake - LICENSE.txt + LICENSE diff --git a/Applications/Solstice/MitkSolstice.cpp b/Applications/Solstice/MitkSolstice.cpp index 3d56ec84ec6..bc2db3053ec 100644 --- a/Applications/Solstice/MitkSolstice.cpp +++ b/Applications/Solstice/MitkSolstice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStarter.h" diff --git a/Applications/Solstice/MitkSolsticeUI.cpp b/Applications/Solstice/MitkSolsticeUI.cpp index eba84b1baf1..4c8bafe2b78 100644 --- a/Applications/Solstice/MitkSolsticeUI.cpp +++ b/Applications/Solstice/MitkSolsticeUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStarter.h" diff --git a/Applications/Workbench/MitkWorkbench.cpp b/Applications/Workbench/MitkWorkbench.cpp index 41c7c009cf4..eaa6f48ed93 100644 --- a/Applications/Workbench/MitkWorkbench.cpp +++ b/Applications/Workbench/MitkWorkbench.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/CMake/mitkSetupCPack.cmake b/CMake/mitkSetupCPack.cmake index 7e7a0a2645b..4a415bbe5d3 100644 --- a/CMake/mitkSetupCPack.cmake +++ b/CMake/mitkSetupCPack.cmake @@ -87,10 +87,10 @@ endif() include(InstallRequiredSystemLibraries) set(CPACK_PACKAGE_NAME "MITK") -set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MITK is a medical image processing tool") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "The Medical Imaging Interaction Toolkit") set(CPACK_PACKAGE_VENDOR "German Cancer Research Center (DKFZ)") -set(CPACK_PACKAGE_DESCRIPTION_FILE "${MITK_SOURCE_DIR}/LICENSE.txt") -set(CPACK_RESOURCE_FILE_LICENSE "${MITK_SOURCE_DIR}/LICENSE.txt") +set(CPACK_PACKAGE_DESCRIPTION_FILE "${MITK_SOURCE_DIR}/LICENSE") +set(CPACK_RESOURCE_FILE_LICENSE "${MITK_SOURCE_DIR}/LICENSE") set(CPACK_PACKAGE_VERSION_MAJOR ${MITK_REVISION_DESC}) string(REPLACE " [local changes]" "-local_changes" CPACK_PACKAGE_VERSION_MAJOR ${CPACK_PACKAGE_VERSION_MAJOR}) diff --git a/COPYRIGHT_HEADER b/COPYRIGHT_HEADER index b51839eafef..f92933ddebd 100644 --- a/COPYRIGHT_HEADER +++ b/COPYRIGHT_HEADER @@ -1,15 +1,11 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ diff --git a/Documentation/CMakeDoxygenFilter.cpp b/Documentation/CMakeDoxygenFilter.cpp index 002425000d7..1181e6a20a3 100644 --- a/Documentation/CMakeDoxygenFilter.cpp +++ b/Documentation/CMakeDoxygenFilter.cpp @@ -1,7 +1,7 @@ -/*============================================================================= +/*============================================================================ - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15,7 +15,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Documentation/Doxygen/2-UserManual/MiniApps.dox b/Documentation/Doxygen/2-UserManual/MiniApps.dox index 40a3835f296..46f1e9ececc 100644 --- a/Documentation/Doxygen/2-UserManual/MiniApps.dox +++ b/Documentation/Doxygen/2-UserManual/MiniApps.dox @@ -49,7 +49,7 @@ $./GibbsTracking --xml Fiber Tracking and Processing Methods Gibbs Tracking -MBI +German Cancer Research Center (DKFZ) ... diff --git a/Documentation/Doxygen/3-DeveloperManual/Starting/FirstSteps/MiniAppCommandLineTool/MiniAppCommandLineToolHowTo.dox b/Documentation/Doxygen/3-DeveloperManual/Starting/FirstSteps/MiniAppCommandLineTool/MiniAppCommandLineToolHowTo.dox index 27ed135506c..bce1c618c2d 100644 --- a/Documentation/Doxygen/3-DeveloperManual/Starting/FirstSteps/MiniAppCommandLineTool/MiniAppCommandLineToolHowTo.dox +++ b/Documentation/Doxygen/3-DeveloperManual/Starting/FirstSteps/MiniAppCommandLineTool/MiniAppCommandLineToolHowTo.dox @@ -63,7 +63,7 @@ Running the ExampleToUpperCaseMiniApp without an argument or with wrong ones: \verbatim Command Line Utility *To Upper Case* in Category *MITK-Examples* An example MiniApp that converts the contents of a test file to upper case. -MBI +German Cancer Research Center (DKFZ) Use --xml to generate an XML description parsable as a CTK Command Line Module Plugin. @@ -103,7 +103,7 @@ Running the ExampleToUpperCaseMiniApp with argument "--xml" ... MITK-Examples To Upper Case An example MiniApp that converts the contents of a test file to upper case. - MBI + German Cancer Research Center (DKFZ) Parameters diff --git a/Documentation/Doxygen/3-DeveloperManual/Starting/FirstSteps/NewPlugin.dox b/Documentation/Doxygen/3-DeveloperManual/Starting/FirstSteps/NewPlugin.dox index 2e127850395..8fdb863ee5c 100644 --- a/Documentation/Doxygen/3-DeveloperManual/Starting/FirstSteps/NewPlugin.dox +++ b/Documentation/Doxygen/3-DeveloperManual/Starting/FirstSteps/NewPlugin.dox @@ -13,8 +13,8 @@ A CTK plugin generator for MITK (version 1.2.0) -h, --help Show this help text -o, --out-dir Output directory (default: /tmp) - -l, --license Path to a file containing license information (default: :/MITKLicense.txt) - -v, --vendor The vendor of the generated code (default: DKFZ, Medical and Biological Informatics) + -l, --license Path to a file containing license information (default: :/COPYRIGHT_HEADER) + -v, --vendor The vendor of the generated code (default: German Cancer Research Center (DKFZ)) -q, --quiet Do not print additional information -y, --confirm-all Answer all questions with 'yes' -u, --check-update Check for updates and exit @@ -29,7 +29,7 @@ Plugin options -pn, --plugin-name The plugin's human readable name Project options - --project-copyright Path to a file containing copyright information (default: :/LICENSE.txt) + --project-copyright Path to a file containing copyright information (default: :/LICENSE) --project-name The project name --project-app-name The application name diff --git a/Documentation/Doxygen/3-DeveloperManual/Starting/GettingToKnow/StyleGuideAndNotes.dox b/Documentation/Doxygen/3-DeveloperManual/Starting/GettingToKnow/StyleGuideAndNotes.dox index 430f1ba7d60..2ea36ad6b42 100644 --- a/Documentation/Doxygen/3-DeveloperManual/Starting/GettingToKnow/StyleGuideAndNotes.dox +++ b/Documentation/Doxygen/3-DeveloperManual/Starting/GettingToKnow/StyleGuideAndNotes.dox @@ -249,21 +249,17 @@ ImageType::Pointer image; \li Copyright @code -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ @endcode \li Includes [A .. Z] diff --git a/Documentation/Snippets/org.blueberry.ui.qt.help-config/main.cpp b/Documentation/Snippets/org.blueberry.ui.qt.help-config/main.cpp index 3e115bc6a9d..473ba9d8729 100644 --- a/Documentation/Snippets/org.blueberry.ui.qt.help-config/main.cpp +++ b/Documentation/Snippets/org.blueberry.ui.qt.help-config/main.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Examples/Annotation/AnnotationExample.cpp b/Examples/Annotation/AnnotationExample.cpp index f37b7e64e0b..7cc527f0435 100644 --- a/Examples/Annotation/AnnotationExample.cpp +++ b/Examples/Annotation/AnnotationExample.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "QmitkRenderWindow.h" diff --git a/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncher.cpp b/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncher.cpp index 903ca767a7c..96cc40d450a 100644 --- a/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncher.cpp +++ b/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncherDialog.cpp b/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncherDialog.cpp index 250c9d5e546..56eb14c5887 100644 --- a/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncherDialog.cpp +++ b/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncherDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "BlueBerryExampleLauncherDialog.h" #include "ui_BlueBerryExampleLauncherDialog.h" diff --git a/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncherDialog.h b/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncherDialog.h index c7049cbaf22..7283ab3bb94 100644 --- a/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncherDialog.h +++ b/Examples/BlueBerryExampleLauncher/BlueBerryExampleLauncherDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BLUEBERRYEXAMPLELAUNCHERDIALOG_H #define BLUEBERRYEXAMPLELAUNCHERDIALOG_H diff --git a/Examples/DocumentationExample.h b/Examples/DocumentationExample.h index 347757aaf74..1253cc69f07 100644 --- a/Examples/DocumentationExample.h +++ b/Examples/DocumentationExample.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /** * \brief This is a class for showing how to document your code using doxygen. diff --git a/Examples/Dump/mitkdump.cpp b/Examples/Dump/mitkdump.cpp index d89f82ff61a..33ef0ad2cf7 100644 --- a/Examples/Dump/mitkdump.cpp +++ b/Examples/Dump/mitkdump.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ /** \file mitkdump.cpp diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureReaderService.cpp b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureReaderService.cpp index d45345c4797..0fd2a438da1 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureReaderService.cpp +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExampleDataStructureReaderService.h" diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureReaderService.h b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureReaderService.h index fabd39b1374..4f1384ed8e7 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureReaderService.h +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkExampleDataStructureReaderService_h #define __mitkExampleDataStructureReaderService_h diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureSerializer.cpp b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureSerializer.cpp index 84d07e1133c..5d6d101dccd 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureSerializer.cpp +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExampleDataStructureSerializer.h" #include "mitkExampleDataStructure.h" diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureSerializer.h b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureSerializer.h index 3c6e5c4bed0..7c1bb24c8d7 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureSerializer.h +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkExampleDataStructureSerializer_h_included #define mitkExampleDataStructureSerializer_h_included diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureWriterService.cpp b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureWriterService.cpp index 12b7575b44d..875a4c8d7b7 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureWriterService.cpp +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureWriterService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExampleDataStructureWriterService.h" diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureWriterService.h b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureWriterService.h index 1a071de0d72..0fa03392b51 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureWriterService.h +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleDataStructureWriterService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkExampleDataStructureWriterService_h #define __mitkExampleDataStructureWriterService_h diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleIOMimeTypes.cpp b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleIOMimeTypes.cpp index f0c81cf989e..c2719c46b7d 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleIOMimeTypes.cpp +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleIOMimeTypes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExampleIOMimeTypes.h" #include "mitkIOMimeTypes.h" diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleIOMimeTypes.h b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleIOMimeTypes.h index bd6ae8a54bd..76a1efee3f4 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleIOMimeTypes.h +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkExampleIOMimeTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEXAMPLEIOMIMETYPES_H #define MITKEXAMPLEIOMIMETYPES_H diff --git a/Examples/FirstSteps/NewModule/autoload/IO/mitkNewModuleIOActivator.cpp b/Examples/FirstSteps/NewModule/autoload/IO/mitkNewModuleIOActivator.cpp index 19ce863b6ba..0b9fff5ddef 100644 --- a/Examples/FirstSteps/NewModule/autoload/IO/mitkNewModuleIOActivator.cpp +++ b/Examples/FirstSteps/NewModule/autoload/IO/mitkNewModuleIOActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Examples/FirstSteps/NewModule/cmdapps/ExampleToUpperCaseMiniApp.cpp b/Examples/FirstSteps/NewModule/cmdapps/ExampleToUpperCaseMiniApp.cpp index 25ed8b78a5a..47465a3adc2 100644 --- a/Examples/FirstSteps/NewModule/cmdapps/ExampleToUpperCaseMiniApp.cpp +++ b/Examples/FirstSteps/NewModule/cmdapps/ExampleToUpperCaseMiniApp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // std includes #include @@ -49,7 +45,7 @@ int main(int argc, char *argv[]) parser.setCategory("MITK-Examples"); parser.setTitle("To Upper Case"); parser.setDescription("An example MiniApp that converts the contents of a test file to upper case."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); //! [create parser] //! [add arguments] diff --git a/Examples/FirstSteps/NewModule/include/mitkExampleDataStructure.h b/Examples/FirstSteps/NewModule/include/mitkExampleDataStructure.h index 241b7fe5604..f57170f12b5 100644 --- a/Examples/FirstSteps/NewModule/include/mitkExampleDataStructure.h +++ b/Examples/FirstSteps/NewModule/include/mitkExampleDataStructure.h @@ -1,19 +1,15 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_ExampleDataStructure_H #define _MITK_ExampleDataStructure_H diff --git a/Examples/FirstSteps/NewModule/src/DataManagement/mitkExampleDataStructure.cpp b/Examples/FirstSteps/NewModule/src/DataManagement/mitkExampleDataStructure.cpp index d115fef009a..074b31f061d 100644 --- a/Examples/FirstSteps/NewModule/src/DataManagement/mitkExampleDataStructure.cpp +++ b/Examples/FirstSteps/NewModule/src/DataManagement/mitkExampleDataStructure.cpp @@ -1,19 +1,15 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExampleDataStructure.h" #include "mitkGeometry3D.h" diff --git a/Examples/FirstSteps/NewModule/test/mitkExampleDataStructureReaderWriterTest.cpp b/Examples/FirstSteps/NewModule/test/mitkExampleDataStructureReaderWriterTest.cpp index 1f3b0f8a468..f765ccc53be 100644 --- a/Examples/FirstSteps/NewModule/test/mitkExampleDataStructureReaderWriterTest.cpp +++ b/Examples/FirstSteps/NewModule/test/mitkExampleDataStructureReaderWriterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Examples/FirstSteps/NewModule/test/mitkExampleDataStructureTest.cpp b/Examples/FirstSteps/NewModule/test/mitkExampleDataStructureTest.cpp index 7765765a693..135771e8b40 100644 --- a/Examples/FirstSteps/NewModule/test/mitkExampleDataStructureTest.cpp +++ b/Examples/FirstSteps/NewModule/test/mitkExampleDataStructureTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Examples/MbiLog/MitkLogExample.cpp b/Examples/MbiLog/MitkLogExample.cpp index 4910d71dccc..f0ca47d2d2a 100644 --- a/Examples/MbiLog/MitkLogExample.cpp +++ b/Examples/MbiLog/MitkLogExample.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer.views/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.customviewer.views/manifest_headers.cmake index 3eb20c87139..9d97d71601b 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer.views/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.customviewer.views/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example Test Views") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common # QmitkAbstractView diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/DicomView.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/DicomView.cpp index 0cf28dd59f9..dc1420cf5a2 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/DicomView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/DicomView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "DicomView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/DicomView.h b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/DicomView.h index 87031488190..1a7a3d83269 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/DicomView.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/DicomView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef DICOMVIEW_H_ #define DICOMVIEW_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/SimpleRenderWindowView.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/SimpleRenderWindowView.cpp index 1e9d6044eee..2f672204979 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/SimpleRenderWindowView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/SimpleRenderWindowView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "SimpleRenderWindowView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/SimpleRenderWindowView.h b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/SimpleRenderWindowView.h index c3f1a40cddd..917fa54e423 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/SimpleRenderWindowView.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/SimpleRenderWindowView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SimpleRenderWindowView_H_ #define SimpleRenderWindowView_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/org_mitk_example_gui_customviewer_views_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/org_mitk_example_gui_customviewer_views_Activator.cpp index 6df12af7c85..3eb4c7d3535 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/org_mitk_example_gui_customviewer_views_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/org_mitk_example_gui_customviewer_views_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_customviewer_views_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/org_mitk_example_gui_customviewer_views_Activator.h b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/org_mitk_example_gui_customviewer_views_Activator.h index e43579fbe90..5674390b279 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/org_mitk_example_gui_customviewer_views_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer.views/src/internal/org_mitk_example_gui_customviewer_views_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_customviewer_views_Activator_H #define org_mitk_example_gui_customviewer_views_Activator_H diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/documentation/doxygen/code_snippets/MinimalApplicationSnippet.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/documentation/doxygen/code_snippets/MinimalApplicationSnippet.cpp index 2d90569aa87..6b052c48a44 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/documentation/doxygen/code_snippets/MinimalApplicationSnippet.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/documentation/doxygen/code_snippets/MinimalApplicationSnippet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "CustomViewer.h" #include "CustomViewerWorkbenchAdvisor.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.customviewer/manifest_headers.cmake index db30a2389a1..7cf2e7837db 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example Custom Viewer") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.core.ext # Registers file reader factories diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewer.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewer.cpp index d31b784c581..e5a62c43cad 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewer.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "CustomViewer.h" #include "CustomViewerWorkbenchAdvisor.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewer.h b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewer.h index b43f3f3898f..99dd9adcc93 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewer.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CUSTOMVIEWER_H_ #define CUSTOMVIEWER_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchAdvisor.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchAdvisor.cpp index f5d6b752238..99f3aea8c07 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchAdvisor.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "CustomViewerWorkbenchAdvisor.h" #include "CustomViewerWorkbenchWindowAdvisor.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchAdvisor.h b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchAdvisor.h index c3b08a162bd..705347030dc 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchAdvisor.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchWindowAdvisor.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchWindowAdvisor.cpp index 297db86eea5..3725cb88ff7 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchWindowAdvisor.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchWindowAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "CustomViewerWorkbenchWindowAdvisor.h" #include "QtPerspectiveSwitcherTabBar.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchWindowAdvisor.h b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchWindowAdvisor.h index 6ef83e81a2c..6b4b967316d 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchWindowAdvisor.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/CustomViewerWorkbenchWindowAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CUSTOMVIEWERWORKBENCHWINDOWADVISOR_H_ #define CUSTOMVIEWERWORKBENCHWINDOWADVISOR_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/DicomPerspective.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/DicomPerspective.cpp index cfdd20ac057..f7bdbf8c6d3 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/DicomPerspective.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/DicomPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "DicomPerspective.h" #include "berryIFolderLayout.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/DicomPerspective.h b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/DicomPerspective.h index 4acd403a503..7dd34eeeb22 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/DicomPerspective.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/DicomPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef DICOMPERSPECTIVE_H_ #define DICOMPERSPECTIVE_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/QtPerspectiveSwitcherTabBar.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/QtPerspectiveSwitcherTabBar.cpp index d6d746933b9..a581c7a9f2e 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/QtPerspectiveSwitcherTabBar.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/QtPerspectiveSwitcherTabBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QtPerspectiveSwitcherTabBar.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/QtPerspectiveSwitcherTabBar.h b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/QtPerspectiveSwitcherTabBar.h index 31dcb5c4453..1aaff429ea9 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/QtPerspectiveSwitcherTabBar.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/QtPerspectiveSwitcherTabBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QTPERSPECTIVESWITCHERTABBAR_H_ #define QTPERSPECTIVESWITCHERTABBAR_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/ViewerPerspective.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/ViewerPerspective.cpp index 8d6d574e564..1e11d1ea0ca 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/ViewerPerspective.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/ViewerPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ViewerPerspective.h" #include "berryIFolderLayout.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/ViewerPerspective.h b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/ViewerPerspective.h index 7e1adb64c32..1f6abcbd0f7 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/ViewerPerspective.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/ViewerPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VIEWERPERSPECTIVE_H_ #define VIEWERPERSPECTIVE_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/org_mitk_example_gui_customviewer_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/org_mitk_example_gui_customviewer_Activator.cpp index 152a6635c24..806a196f11a 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/org_mitk_example_gui_customviewer_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/org_mitk_example_gui_customviewer_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_customviewer_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/org_mitk_example_gui_customviewer_Activator.h b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/org_mitk_example_gui_customviewer_Activator.h index e59cf10bfe9..1040150ebfc 100644 --- a/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/org_mitk_example_gui_customviewer_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.customviewer/src/internal/org_mitk_example_gui_customviewer_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_customviewer_Activator_H #define org_mitk_example_gui_customviewer_Activator_H diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/manifest_headers.cmake index 1e01c91003c..e45e6ae8622 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example: Extension Point Contribution") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToLowerCase.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToLowerCase.cpp index e820ecaf42f..a0a7ed65d11 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToLowerCase.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToLowerCase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ChangeTextToLowerCase.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToLowerCase.h b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToLowerCase.h index 39c1ab8a66e..8a1c77c9851 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToLowerCase.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToLowerCase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CHANGETEXTTOLOWERCASE_H #define CHANGETEXTTOLOWERCASE_H diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToUpperCase.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToUpperCase.cpp index 0cba17d23c7..a5ac42b3b5e 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToUpperCase.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToUpperCase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ChangeTextToUpperCase.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToUpperCase.h b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToUpperCase.h index 159efd88f99..83505846d69 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToUpperCase.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/ChangeTextToUpperCase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CHANGETEXTTOUPPERCASE_H #define CHANGETEXTTOUPPERCASE_H diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/org_mitk_example_gui_extensionpointcontribution_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/org_mitk_example_gui_extensionpointcontribution_Activator.cpp index dade2054eba..44684438348 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/org_mitk_example_gui_extensionpointcontribution_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/org_mitk_example_gui_extensionpointcontribution_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_extensionpointcontribution_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/org_mitk_example_gui_extensionpointcontribution_Activator.h b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/org_mitk_example_gui_extensionpointcontribution_Activator.h index 2c95af52ece..942b4dedf33 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/org_mitk_example_gui_extensionpointcontribution_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointcontribution/src/internal/org_mitk_example_gui_extensionpointcontribution_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_extensionpointcontribution_Activator_H #define org_mitk_example_gui_extensionpointcontribution_Activator_H diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/manifest_headers.cmake index 91ed6644a64..cba1e990582 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example: Extension Point Definition") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/schema/changetext.exsd b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/schema/changetext.exsd index 841f36bff1f..5e1acd1a185 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/schema/changetext.exsd +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/schema/changetext.exsd @@ -101,7 +101,7 @@ fully qualified name of the class that implements - Copyright (c) 2012 Medical and Biological Informatics, DKFZ<br> + Copyright (c) German Cancer Research Center (DKFZ)<br> All rights reserved. diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/IChangeText.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/IChangeText.cpp index 209e5505221..75204457990 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/IChangeText.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/IChangeText.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "IChangeText.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/IChangeText.h b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/IChangeText.h index cb34bab28b8..257f2e59fae 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/IChangeText.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/IChangeText.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ICHANGETEXT_H_ #define ICHANGETEXT_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextDescriptor.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextDescriptor.cpp index 6af7c05725f..8bc0b8df1df 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextDescriptor.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ChangeTextDescriptor.h" #include "ExtensionPointDefinitionConstants.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextDescriptor.h b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextDescriptor.h index d9e72c74b39..0a5769acbd8 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextDescriptor.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CHANGETEXTDESCRIPTOR_H_ #define CHANGETEXTDESCRIPTOR_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextRegistry.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextRegistry.cpp index bf28890c006..78d2ef824ef 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextRegistry.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ChangeTextRegistry.h" #include "ExtensionPointDefinitionConstants.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextRegistry.h b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextRegistry.h index 0512ad7d1ff..08990d2b43c 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextRegistry.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ChangeTextRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CHANGETEXTREGISTRY_H_ #define CHANGETEXTREGISTRY_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinition.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinition.cpp index f498f9a1396..280890838cc 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinition.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinition.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ExtensionPointDefinition.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinition.h b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinition.h index 28ed987b8be..5bf2d3eb8cd 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinition.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinition.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef EXTENSIONPOINTDEFINITION_H_ #define EXTENSIONPOINTDEFINITION_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinitionConstants.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinitionConstants.cpp index f528a64de19..9ccb12d2c2d 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinitionConstants.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinitionConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ExtensionPointDefinitionConstants.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinitionConstants.h b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinitionConstants.h index 0492355173a..35ee1cb9c96 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinitionConstants.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/ExtensionPointDefinitionConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef EXTENSIONPOINTDEFINITIONCONSTANTS_H_ #define EXTENSIONPOINTDEFINITIONCONSTANTS_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalPerspective.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalPerspective.cpp index 782780883e5..33ac5b4710c 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalPerspective.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MinimalPerspective.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalPerspective.h b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalPerspective.h index f1f9a1da435..df509e2ca0f 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalPerspective.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MINIMALPERSPECTIVE_H_ #define MINIMALPERSPECTIVE_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalView.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalView.cpp index f37e706afed..42e1fd859a2 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MinimalView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalView.h b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalView.h index e817f044d6a..ace0c9807c1 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalView.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/MinimalView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MINIMALVIEW_H_ #define MINIMALVIEW_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/org_mitk_example_gui_extensionpointdefinition_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/org_mitk_example_gui_extensionpointdefinition_Activator.cpp index 5fa7a006260..ef788db71a1 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/org_mitk_example_gui_extensionpointdefinition_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/org_mitk_example_gui_extensionpointdefinition_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_extensionpointdefinition_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/org_mitk_example_gui_extensionpointdefinition_Activator.h b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/org_mitk_example_gui_extensionpointdefinition_Activator.h index 7558a219137..d51adea56ad 100644 --- a/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/org_mitk_example_gui_extensionpointdefinition_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.extensionpointdefinition/src/internal/org_mitk_example_gui_extensionpointdefinition_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_extensionpointdefinition_Activator_H #define org_mitk_example_gui_extensionpointdefinition_Activator_H diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.imaging/manifest_headers.cmake index 6b439718eab..45e5ae51ff7 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.imaging/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Examples") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/ExamplesDll.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/ExamplesDll.h index 6b4300d44e4..fc3ad053ed7 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/ExamplesDll.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/ExamplesDll.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _EXAMPLES_EXPORT_DLL_H_ #define _EXAMPLES_EXPORT_DLL_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/QmitkColourImageProcessingView.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/QmitkColourImageProcessingView.cpp index 2c72dd62ae3..3e1fdcaa983 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/QmitkColourImageProcessingView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/QmitkColourImageProcessingView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkColourImageProcessingView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/QmitkColourImageProcessingView.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/QmitkColourImageProcessingView.h index 69448c0287b..fe4357bc978 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/QmitkColourImageProcessingView.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/QmitkColourImageProcessingView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKCOLOURIMAGEPROCESSINGVIEW_H_INCLUDED #define _QMITKCOLOURIMAGEPROCESSINGVIEW_H_INCLUDED diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/mitkColourImageProcessor.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/mitkColourImageProcessor.cpp index a5c0dc36cf1..cebd6068d55 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/mitkColourImageProcessor.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/mitkColourImageProcessor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkColourImageProcessor.h" #include diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/mitkColourImageProcessor.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/mitkColourImageProcessor.h index 4769963e608..4629b1ed38e 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/mitkColourImageProcessor.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/colourimageprocessing/mitkColourImageProcessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOLOURIMAGEPROCESSOR_H #define MITKCOLOURIMAGEPROCESSOR_H diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/isosurface/QmitkIsoSurface.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/isosurface/QmitkIsoSurface.cpp index aebd4842bb6..2935ce2e5d0 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/isosurface/QmitkIsoSurface.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/isosurface/QmitkIsoSurface.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIsoSurface.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/isosurface/QmitkIsoSurface.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/isosurface/QmitkIsoSurface.h index 6edd09866f9..b85e655400f 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/isosurface/QmitkIsoSurface.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/isosurface/QmitkIsoSurface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_ISOSURFACE_H__INCLUDED #define QMITK_ISOSURFACE_H__INCLUDED diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/mitkPluginActivator.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/mitkPluginActivator.cpp index 4974c91ceb8..50898eff001 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/mitkPluginActivator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "src/internal/colourimageprocessing/QmitkColourImageProcessingView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/mitkPluginActivator.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/mitkPluginActivator.h index 07e598c37fc..6c204776c89 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/mitkPluginActivator.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simpleexample/QmitkSimpleExampleView.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simpleexample/QmitkSimpleExampleView.cpp index c82337a3224..8f4ddbe6c43 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simpleexample/QmitkSimpleExampleView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simpleexample/QmitkSimpleExampleView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSimpleExampleView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simpleexample/QmitkSimpleExampleView.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simpleexample/QmitkSimpleExampleView.h index 1eb108f1ad5..62ea891bc23 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simpleexample/QmitkSimpleExampleView.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simpleexample/QmitkSimpleExampleView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKSIMPLEEXAMPLEVIEW_H_INCLUDED #define _QMITKSIMPLEEXAMPLEVIEW_H_INCLUDED diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simplemeasurement/QmitkSimpleMeasurement.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simplemeasurement/QmitkSimpleMeasurement.cpp index 1a8c221f5cd..d32e0cb4517 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simplemeasurement/QmitkSimpleMeasurement.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simplemeasurement/QmitkSimpleMeasurement.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSimpleMeasurement.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simplemeasurement/QmitkSimpleMeasurement.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simplemeasurement/QmitkSimpleMeasurement.h index dbd96e4ccb2..12429417bfb 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simplemeasurement/QmitkSimpleMeasurement.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/simplemeasurement/QmitkSimpleMeasurement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSIMPELEMEASUREMENT_H #define MITKSIMPELEMEASUREMENT_H diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/QmitkSurfaceUtilities.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/QmitkSurfaceUtilities.cpp index 7043c3523ac..65972a1331d 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/QmitkSurfaceUtilities.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/QmitkSurfaceUtilities.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSurfaceUtilities.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/QmitkSurfaceUtilities.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/QmitkSurfaceUtilities.h index 3a625551ed6..9f781e4977d 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/QmitkSurfaceUtilities.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/QmitkSurfaceUtilities.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QMITK_SurfaceUtilities_H__INCLUDED) #define QMITK_SurfaceUtilities_H__INCLUDED diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceModifier.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceModifier.cpp index e1e8e8a528a..6a73c2307b3 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceModifier.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceModifier.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk headers #include "mitkSurfaceModifier.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceModifier.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceModifier.h index 95668dffd28..7b0ad620bef 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceModifier.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceModifier.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSurfaceModifier_H_HEADER_INCLUDED_ #define MITKSurfaceModifier_H_HEADER_INCLUDED_ diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceToPointSetFilter.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceToPointSetFilter.cpp index afbbba449eb..c5c092b3cba 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceToPointSetFilter.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceToPointSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceToPointSetFilter.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceToPointSetFilter.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceToPointSetFilter.h index 75d03bc5955..6d1c0d58235 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceToPointSetFilter.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkSurfaceToPointSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSURFACETOPOINTSETFILTER_H_HEADER_INCLUDED_ #define MITKSURFACETOPOINTSETFILTER_H_HEADER_INCLUDED_ diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkTargetPointsCalculator.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkTargetPointsCalculator.cpp index f03702b210d..998fe1b5358 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkTargetPointsCalculator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkTargetPointsCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk headers #include "mitkTargetPointsCalculator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkTargetPointsCalculator.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkTargetPointsCalculator.h index 249338fec49..0a0babc2a62 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkTargetPointsCalculator.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/surfaceutilities/mitkTargetPointsCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTARGETPOINTSCALCULATOR_H_HEADER_INCLUDED_ #define MITKTARGETPOINTSCALCULATOR_H_HEADER_INCLUDED_ diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/viewinitialization/QmitkViewInitializationView.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/viewinitialization/QmitkViewInitializationView.cpp index f23589db28e..ee9f42a7e60 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/viewinitialization/QmitkViewInitializationView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/viewinitialization/QmitkViewInitializationView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkViewInitializationView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/viewinitialization/QmitkViewInitializationView.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/viewinitialization/QmitkViewInitializationView.h index 7b91565ad99..d9ae14489ba 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/viewinitialization/QmitkViewInitializationView.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/viewinitialization/QmitkViewInitializationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKVIEWINITIALIZATIONVIEW_H_INCLUDED #define _QMITKVIEWINITIALIZATIONVIEW_H_INCLUDED diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/volumetry/QmitkVolumetryView.cpp b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/volumetry/QmitkVolumetryView.cpp index 051df5b0539..97acc0b0b0e 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/volumetry/QmitkVolumetryView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/volumetry/QmitkVolumetryView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkVolumetryView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/volumetry/QmitkVolumetryView.h b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/volumetry/QmitkVolumetryView.h index 6fde9556b79..807645851fc 100644 --- a/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/volumetry/QmitkVolumetryView.h +++ b/Examples/Plugins/org.mitk.example.gui.imaging/src/internal/volumetry/QmitkVolumetryView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKVOLUMETRYVIEW_H_INCLUDED #define _QMITKVOLUMETRYVIEW_H_INCLUDED diff --git a/Examples/Plugins/org.mitk.example.gui.minimalapplication/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.minimalapplication/manifest_headers.cmake index e10deb3c63a..8ca4c413800 100644 --- a/Examples/Plugins/org.mitk.example.gui.minimalapplication/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.minimalapplication/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example Minimal Application") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt) diff --git a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalApplication.cpp b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalApplication.cpp index 59a6b4faaab..38565cc50b6 100644 --- a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalApplication.cpp +++ b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MinimalApplication.h" diff --git a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalApplication.h b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalApplication.h index 05ac1e37c1c..e6186a60ecf 100644 --- a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalApplication.h +++ b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MINIMALAPPLICATION_H_ #define MINIMALAPPLICATION_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalPerspective.cpp b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalPerspective.cpp index 9ca533665a7..b7a02430c9b 100755 --- a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalPerspective.cpp +++ b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MinimalPerspective.h" diff --git a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalPerspective.h b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalPerspective.h index f1f9a1da435..df509e2ca0f 100755 --- a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalPerspective.h +++ b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/MinimalPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MINIMALPERSPECTIVE_H_ #define MINIMALPERSPECTIVE_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/org_mitk_example_gui_minimalapplication_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/org_mitk_example_gui_minimalapplication_Activator.cpp index e9bd0ad0d19..55504dd3742 100644 --- a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/org_mitk_example_gui_minimalapplication_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/org_mitk_example_gui_minimalapplication_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_minimalapplication_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/org_mitk_example_gui_minimalapplication_Activator.h b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/org_mitk_example_gui_minimalapplication_Activator.h index 3009fc525a5..0ea0b45ac41 100644 --- a/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/org_mitk_example_gui_minimalapplication_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.minimalapplication/src/internal/org_mitk_example_gui_minimalapplication_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_minimalapplication_Activator_H #define org_mitk_example_gui_minimalapplication_Activator_H diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/manifest_headers.cmake index c8f5f39457e..d0da20b9dcb 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example: multiple perspectives and views") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView1.cpp b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView1.cpp index 64d0fd62cc7..676e04ebcd5 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView1.cpp +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView1.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "EmptyView1.h" @@ -37,4 +33,4 @@ void EmptyView1::CreateQtPartControl(QWidget *parent) void EmptyView1::SetFocus() { -} \ No newline at end of file +} diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView1.h b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView1.h index 3bc6d9b92fe..2df8141611c 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView1.h +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView1.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef EMPTYVIEW1_H_ #define EMPTYVIEW1_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView2.cpp b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView2.cpp index e307b23f7c1..4e929a22114 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView2.cpp +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "EmptyView2.h" diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView2.h b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView2.h index 69994600757..e906767c545 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView2.h +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/EmptyView2.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef EMPTYVIEW2_H_ #define EMPTYVIEW2_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/ExtendedPerspective.cpp b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/ExtendedPerspective.cpp index 148a7ca6918..8b3e1ad37fa 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/ExtendedPerspective.cpp +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/ExtendedPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ExtendedPerspective.h" diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/ExtendedPerspective.h b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/ExtendedPerspective.h index 70522b10055..469c95f0092 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/ExtendedPerspective.h +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/ExtendedPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef EXTENDEDPERSPECTIVE_H_ #define EXTENDEDPERSPECTIVE_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MinimalPerspective.cpp b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MinimalPerspective.cpp index 26b0d04b58d..45f8ea1c477 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MinimalPerspective.cpp +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MinimalPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MinimalPerspective.h" diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MinimalPerspective.h b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MinimalPerspective.h index 8a67d582cad..aea5c70c7e5 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MinimalPerspective.h +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MinimalPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MINIMALPERSPECTIVE_H_ #define MINIMALPERSPECTIVE_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MultiplePerspectives.cpp b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MultiplePerspectives.cpp index c2f793684c1..b8ff9f7243e 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MultiplePerspectives.cpp +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MultiplePerspectives.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MultiplePerspectives.h" diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MultiplePerspectives.h b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MultiplePerspectives.h index f756dfed14a..e6fa260a688 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MultiplePerspectives.h +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/MultiplePerspectives.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MULTIPLEPERSPECTIVES_H_ #define MULTIPLEPERSPECTIVES_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/org_mitk_example_gui_multipleperspectives_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/org_mitk_example_gui_multipleperspectives_Activator.cpp index d2be6281f63..0c92def3f60 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/org_mitk_example_gui_multipleperspectives_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/org_mitk_example_gui_multipleperspectives_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_multipleperspectives_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/org_mitk_example_gui_multipleperspectives_Activator.h b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/org_mitk_example_gui_multipleperspectives_Activator.h index 2c9d62ea3cb..72aa533c044 100644 --- a/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/org_mitk_example_gui_multipleperspectives_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.multipleperspectives/src/internal/org_mitk_example_gui_multipleperspectives_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_multipleperspectives_Activator_H #define org_mitk_example_gui_multipleperspectives_Activator_H diff --git a/Examples/Plugins/org.mitk.example.gui.opencv/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.opencv/manifest_headers.cmake index 2c59fae3dad..8897e4cfed9 100644 --- a/Examples/Plugins/org.mitk.example.gui.opencv/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.opencv/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Examples OpenCV") set(Plugin-Version "1.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/mitkPluginActivator.cpp b/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/mitkPluginActivator.cpp index b3fe63e5649..129e9767ba6 100644 --- a/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/mitkPluginActivator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "src/internal/videoplayer/QmitkVideoPlayer.h" diff --git a/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/mitkPluginActivator.h b/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/mitkPluginActivator.h index b168596b387..0a11644f09d 100644 --- a/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/mitkPluginActivator.h +++ b/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/videoplayer/QmitkVideoPlayer.cpp b/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/videoplayer/QmitkVideoPlayer.cpp index 87c4a489089..1ae80a56e5b 100644 --- a/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/videoplayer/QmitkVideoPlayer.cpp +++ b/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/videoplayer/QmitkVideoPlayer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkVideoPlayer.h" #include diff --git a/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/videoplayer/QmitkVideoPlayer.h b/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/videoplayer/QmitkVideoPlayer.h index 493da96dc9a..8a58e649049 100644 --- a/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/videoplayer/QmitkVideoPlayer.h +++ b/Examples/Plugins/org.mitk.example.gui.opencv/src/internal/videoplayer/QmitkVideoPlayer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkVideoPlayer_h #define QmitkVideoPlayer_h diff --git a/Examples/Plugins/org.mitk.example.gui.pcaexample/src/internal/PCAExample.cpp b/Examples/Plugins/org.mitk.example.gui.pcaexample/src/internal/PCAExample.cpp index cfeeff9224c..de72b6f7221 100644 --- a/Examples/Plugins/org.mitk.example.gui.pcaexample/src/internal/PCAExample.cpp +++ b/Examples/Plugins/org.mitk.example.gui.pcaexample/src/internal/PCAExample.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry @@ -104,11 +100,11 @@ for (int i=0; i diff --git a/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/QmitkRegionGrowingView.h b/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/QmitkRegionGrowingView.h index 56fd98906f1..2fd3d2f26d1 100644 --- a/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/QmitkRegionGrowingView.h +++ b/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/QmitkRegionGrowingView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkRegionGrowingView_h #define QmitkRegionGrowingView_h diff --git a/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/org_mitk_example_gui_regiongrowing_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/org_mitk_example_gui_regiongrowing_Activator.cpp index 9a24fcf4b59..8c4beee2914 100644 --- a/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/org_mitk_example_gui_regiongrowing_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/org_mitk_example_gui_regiongrowing_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_regiongrowing_Activator.h" #include "QmitkRegionGrowingView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/org_mitk_example_gui_regiongrowing_Activator.h b/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/org_mitk_example_gui_regiongrowing_Activator.h index 6f82231b46e..3e2efcd87e3 100644 --- a/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/org_mitk_example_gui_regiongrowing_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.regiongrowing/src/internal/org_mitk_example_gui_regiongrowing_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_regiongrowing_Activator_h #define org_mitk_example_gui_regiongrowing_Activator_h diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/manifest_headers.cmake index 9804e1e282e..dcdb9807c28 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example: Seletion service MITK") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/ListenerViewMitk.cpp b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/ListenerViewMitk.cpp index 05d6d82e42f..3a4b1481c4a 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/ListenerViewMitk.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/ListenerViewMitk.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ListenerViewMitk.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/ListenerViewMitk.h b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/ListenerViewMitk.h index c50bfc91ee5..eaaa78049a7 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/ListenerViewMitk.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/ListenerViewMitk.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LISTENERVIEWMITK_H_ #define LISTENERVIEWMITK_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/SelectionViewMitk.cpp b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/SelectionViewMitk.cpp index 3d41455784e..055ea1bcd3a 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/SelectionViewMitk.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/SelectionViewMitk.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "SelectionViewMitk.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/SelectionViewMitk.h b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/SelectionViewMitk.h index 3544dd69bb4..c41fb328d76 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/SelectionViewMitk.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/SelectionViewMitk.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SELECTIONVIEWMITK_H_ #define SELECTIONVIEWMITK_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/org_mitk_example_gui_selectionservicemitk_views_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/org_mitk_example_gui_selectionservicemitk_views_Activator.cpp index 1db76b33d20..2add0b5db15 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/org_mitk_example_gui_selectionservicemitk_views_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/org_mitk_example_gui_selectionservicemitk_views_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_selectionservicemitk_views_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/org_mitk_example_gui_selectionservicemitk_views_Activator.h b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/org_mitk_example_gui_selectionservicemitk_views_Activator.h index 4b02f3e62db..2705dd5cf8f 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/org_mitk_example_gui_selectionservicemitk_views_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk.views/src/internal/org_mitk_example_gui_selectionservicemitk_views_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_selectionservicemitk_views_Activator_H #define org_mitk_example_gui_selectionservicemitk_views_Activator_H diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/manifest_headers.cmake index 42155864307..2eb89a444a2 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example: Seletion service MITK") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/ExtendedPerspective.cpp b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/ExtendedPerspective.cpp index 7407ff0b910..a035ccd9387 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/ExtendedPerspective.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/ExtendedPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ExtendedPerspective.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/ExtendedPerspective.h b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/ExtendedPerspective.h index 70522b10055..469c95f0092 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/ExtendedPerspective.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/ExtendedPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef EXTENDEDPERSPECTIVE_H_ #define EXTENDEDPERSPECTIVE_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/SelectionServiceMitk.cpp b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/SelectionServiceMitk.cpp index 49543d5bacf..fc717c67022 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/SelectionServiceMitk.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/SelectionServiceMitk.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "SelectionServiceMitk.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/SelectionServiceMitk.h b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/SelectionServiceMitk.h index 3812ad27d64..d414b9fd183 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/SelectionServiceMitk.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/SelectionServiceMitk.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SELECTIONSERVICEMITK_H_ #define SELECTIONSERVICEMITK_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/org_mitk_example_gui_selectionservicemitk_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/org_mitk_example_gui_selectionservicemitk_Activator.cpp index 6b50cf6fbb5..4ec9bafa227 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/org_mitk_example_gui_selectionservicemitk_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/org_mitk_example_gui_selectionservicemitk_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_selectionservicemitk_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/org_mitk_example_gui_selectionservicemitk_Activator.h b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/org_mitk_example_gui_selectionservicemitk_Activator.h index 5f764a0300a..a33e370840d 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/org_mitk_example_gui_selectionservicemitk_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionservicemitk/src/internal/org_mitk_example_gui_selectionservicemitk_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_selectionservicemitk_Activator_H #define org_mitk_example_gui_selectionservicemitk_Activator_H diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/manifest_headers.cmake b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/manifest_headers.cmake index 8f4139d85a3..7c800b9b3fe 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/manifest_headers.cmake +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Example: Seletion service QT") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ExtendedPerspective.cpp b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ExtendedPerspective.cpp index 3ccca479ab0..ef7540695a9 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ExtendedPerspective.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ExtendedPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ExtendedPerspective.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ExtendedPerspective.h b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ExtendedPerspective.h index 762384eb785..5bfce46eae4 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ExtendedPerspective.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ExtendedPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef EXTENDEDPERSPECTIVE_H_ #define EXTENDEDPERSPECTIVE_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ListenerView.cpp b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ListenerView.cpp index a6ae84ce19f..aa251450ec4 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ListenerView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ListenerView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ListenerView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ListenerView.h b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ListenerView.h index fdcdfa9a66b..a7fcf072247 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ListenerView.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/ListenerView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LISTENERVIEW_H_ #define LISTENERVIEW_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionServiceQt.cpp b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionServiceQt.cpp index a4dad35a7b6..f11435ddfb2 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionServiceQt.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionServiceQt.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "SelectionServiceQt.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionServiceQt.h b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionServiceQt.h index 17f3fe0b5f9..0a7614e90e7 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionServiceQt.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionServiceQt.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SELECTIONSERVICEQT_H_ #define SELECTIONSERVICEQT_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionView.cpp b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionView.cpp index a0a1469bf5e..e041469c833 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionView.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "SelectionView.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionView.h b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionView.h index 71bf0b031f3..1c60276e1fd 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionView.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/SelectionView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SELECTIONVIEW_H_ #define SELECTIONVIEW_H_ diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/org_mitk_example_gui_selectionserviceqt_Activator.cpp b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/org_mitk_example_gui_selectionserviceqt_Activator.cpp index 4dc44dc4771..43cae0c813e 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/org_mitk_example_gui_selectionserviceqt_Activator.cpp +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/org_mitk_example_gui_selectionserviceqt_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_example_gui_selectionserviceqt_Activator.h" diff --git a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/org_mitk_example_gui_selectionserviceqt_Activator.h b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/org_mitk_example_gui_selectionserviceqt_Activator.h index 31fa41f3881..6c8002508a0 100644 --- a/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/org_mitk_example_gui_selectionserviceqt_Activator.h +++ b/Examples/Plugins/org.mitk.example.gui.selectionserviceqt/src/internal/org_mitk_example_gui_selectionserviceqt_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_example_gui_selectionserviceqt_Activator_H #define org_mitk_example_gui_selectionserviceqt_Activator_H diff --git a/Examples/QtFreeRender/QtFreeRender.cpp b/Examples/QtFreeRender/QtFreeRender.cpp index 78068e2b909..227519ac535 100644 --- a/Examples/QtFreeRender/QtFreeRender.cpp +++ b/Examples/QtFreeRender/QtFreeRender.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkRenderWindow.h" diff --git a/Examples/Tutorial/ITKAndVTK/mitkWithITKAndVTK.cpp b/Examples/Tutorial/ITKAndVTK/mitkWithITKAndVTK.cpp index 0be7a6bebc6..c744b6af7fc 100644 --- a/Examples/Tutorial/ITKAndVTK/mitkWithITKAndVTK.cpp +++ b/Examples/Tutorial/ITKAndVTK/mitkWithITKAndVTK.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Examples/Tutorial/QtTesting.cpp b/Examples/Tutorial/QtTesting.cpp index 2abb81db781..dad5e460901 100644 --- a/Examples/Tutorial/QtTesting.cpp +++ b/Examples/Tutorial/QtTesting.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Examples/Tutorial/QtTesting.h b/Examples/Tutorial/QtTesting.h index e6d2ef3b7bd..66c4a6f467a 100644 --- a/Examples/Tutorial/QtTesting.h +++ b/Examples/Tutorial/QtTesting.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#include diff --git a/Examples/Tutorial/Step1/Step1.cpp b/Examples/Tutorial/Step1/Step1.cpp index 39db75ae676..c0fe5e65a5b 100644 --- a/Examples/Tutorial/Step1/Step1.cpp +++ b/Examples/Tutorial/Step1/Step1.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "QmitkRenderWindow.h" diff --git a/Examples/Tutorial/Step10/Step10.cpp b/Examples/Tutorial/Step10/Step10.cpp index 05a01ef9ded..f563a4edac6 100644 --- a/Examples/Tutorial/Step10/Step10.cpp +++ b/Examples/Tutorial/Step10/Step10.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "Step10.h" #include "mitkInternalEvent.h" diff --git a/Examples/Tutorial/Step10/Step10.h b/Examples/Tutorial/Step10/Step10.h index 2bd29f61031..2db8c125164 100644 --- a/Examples/Tutorial/Step10/Step10.h +++ b/Examples/Tutorial/Step10/Step10.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "itkObject.h" #include "itkObjectFactory.h" diff --git a/Examples/Tutorial/Step2/Step2.cpp b/Examples/Tutorial/Step2/Step2.cpp index 9df9e716882..8de4088bed4 100644 --- a/Examples/Tutorial/Step2/Step2.cpp +++ b/Examples/Tutorial/Step2/Step2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "QmitkRenderWindow.h" diff --git a/Examples/Tutorial/Step3/Step3.cpp b/Examples/Tutorial/Step3/Step3.cpp index 0012c2267ac..6e5015d309d 100644 --- a/Examples/Tutorial/Step3/Step3.cpp +++ b/Examples/Tutorial/Step3/Step3.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "QmitkRenderWindow.h" diff --git a/Examples/Tutorial/Step4/Step4.cpp b/Examples/Tutorial/Step4/Step4.cpp index 3fa7621c41f..36e6888a4cb 100644 --- a/Examples/Tutorial/Step4/Step4.cpp +++ b/Examples/Tutorial/Step4/Step4.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "QmitkRenderWindow.h" diff --git a/Examples/Tutorial/Step5/Step5.cpp b/Examples/Tutorial/Step5/Step5.cpp index 9358693467f..f6f81e571d2 100644 --- a/Examples/Tutorial/Step5/Step5.cpp +++ b/Examples/Tutorial/Step5/Step5.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "QmitkRenderWindow.h" diff --git a/Examples/Tutorial/Step6/Step6.cpp b/Examples/Tutorial/Step6/Step6.cpp index 7f76a0fcde8..cd118fb7fda 100644 --- a/Examples/Tutorial/Step6/Step6.cpp +++ b/Examples/Tutorial/Step6/Step6.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "Step6.h" diff --git a/Examples/Tutorial/Step6/Step6.h b/Examples/Tutorial/Step6/Step6.h index 96f51ba88e1..c9e4766678a 100644 --- a/Examples/Tutorial/Step6/Step6.h +++ b/Examples/Tutorial/Step6/Step6.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef STEP6_H #define STEP6_H diff --git a/Examples/Tutorial/Step6/Step6RegionGrowing.txx b/Examples/Tutorial/Step6/Step6RegionGrowing.txx index d8a7e739e47..f6fdf224119 100644 --- a/Examples/Tutorial/Step6/Step6RegionGrowing.txx +++ b/Examples/Tutorial/Step6/Step6RegionGrowing.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "Step6.h" #include diff --git a/Examples/Tutorial/Step6/Step6RegionGrowing1.cpp b/Examples/Tutorial/Step6/Step6RegionGrowing1.cpp index d0055602e1d..57c3b7d844d 100644 --- a/Examples/Tutorial/Step6/Step6RegionGrowing1.cpp +++ b/Examples/Tutorial/Step6/Step6RegionGrowing1.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "Step6RegionGrowing.txx" diff --git a/Examples/Tutorial/Step6/Step6RegionGrowing2.cpp b/Examples/Tutorial/Step6/Step6RegionGrowing2.cpp index a245f5cdd23..23cf4a9b4db 100644 --- a/Examples/Tutorial/Step6/Step6RegionGrowing2.cpp +++ b/Examples/Tutorial/Step6/Step6RegionGrowing2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "Step6RegionGrowing.txx" diff --git a/Examples/Tutorial/Step6/Step6RegionGrowing3.cpp b/Examples/Tutorial/Step6/Step6RegionGrowing3.cpp index af321b48c9b..6c87b72b24c 100644 --- a/Examples/Tutorial/Step6/Step6RegionGrowing3.cpp +++ b/Examples/Tutorial/Step6/Step6RegionGrowing3.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "Step6RegionGrowing.txx" diff --git a/Examples/Tutorial/Step6/Step6main.cpp b/Examples/Tutorial/Step6/Step6main.cpp index b410e39e78e..e6c2c61f3a5 100644 --- a/Examples/Tutorial/Step6/Step6main.cpp +++ b/Examples/Tutorial/Step6/Step6main.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "Step6.h" diff --git a/Examples/Tutorial/Step7/Step7.cpp b/Examples/Tutorial/Step7/Step7.cpp index cb800c876e2..48594a2c96f 100644 --- a/Examples/Tutorial/Step7/Step7.cpp +++ b/Examples/Tutorial/Step7/Step7.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "Step7.h" diff --git a/Examples/Tutorial/Step7/Step7.h b/Examples/Tutorial/Step7/Step7.h index 44bbbcd06db..e0e14219115 100644 --- a/Examples/Tutorial/Step7/Step7.h +++ b/Examples/Tutorial/Step7/Step7.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef STEP7_H #define STEP7_H diff --git a/Examples/Tutorial/Step7/Step7main.cpp b/Examples/Tutorial/Step7/Step7main.cpp index 6bd8c5760ec..fb44f54b432 100644 --- a/Examples/Tutorial/Step7/Step7main.cpp +++ b/Examples/Tutorial/Step7/Step7main.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "Step7.h" diff --git a/Examples/Tutorial/Step8/Step8.cpp b/Examples/Tutorial/Step8/Step8.cpp index e660294d2bd..86f1c185711 100644 --- a/Examples/Tutorial/Step8/Step8.cpp +++ b/Examples/Tutorial/Step8/Step8.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "Step8.h" diff --git a/Examples/Tutorial/Step8/Step8.h b/Examples/Tutorial/Step8/Step8.h index 10b90eb96d6..7cb4331975b 100644 --- a/Examples/Tutorial/Step8/Step8.h +++ b/Examples/Tutorial/Step8/Step8.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef STEP8_H #define STEP8_H diff --git a/Examples/Tutorial/Step8/Step8main.cpp b/Examples/Tutorial/Step8/Step8main.cpp index 98fd8ffe33c..ecf82688a97 100644 --- a/Examples/Tutorial/Step8/Step8main.cpp +++ b/Examples/Tutorial/Step8/Step8main.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" #include "Step8.h" diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000000..597f16cd219 --- /dev/null +++ b/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2003-2019, German Cancer Research Center (DKFZ) +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the German Cancer Research Center (DKFZ), nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index 7b173194d95..00000000000 --- a/LICENSE.txt +++ /dev/null @@ -1,36 +0,0 @@ -Copyright (c) 2003-2019 German Cancer Research Center, -Division of Medical and Biological Informatics -All rights reserved. - -Redistribution and use in source and binary forms, with or -without modification, are permitted provided that the -following conditions are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the - following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the - following disclaimer in the documentation and/or other - materials provided with the distribution. - - * Neither the name of the German Cancer Research Center, - nor the names of its contributors may be used to endorse - or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE -GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT -OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. diff --git a/Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.h b/Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.h index 20423e6434a..9d8c9f519d0 100644 --- a/Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.h +++ b/Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkIntelligentBinaryClosingFilter_h #define __itkIntelligentBinaryClosingFilter_h diff --git a/Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.txx b/Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.txx index 1b8aec5ef53..5851d5560e3 100644 --- a/Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.txx +++ b/Modules/AlgorithmsExt/include/itkIntelligentBinaryClosingFilter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _itkIntelligentBinaryClosingFilter_txx #define _itkIntelligentBinaryClosingFilter_txx diff --git a/Modules/AlgorithmsExt/include/mitkAnisotropicIterativeClosestPointRegistration.h b/Modules/AlgorithmsExt/include/mitkAnisotropicIterativeClosestPointRegistration.h index 2d2a41b3cf0..21f4d6ab492 100644 --- a/Modules/AlgorithmsExt/include/mitkAnisotropicIterativeClosestPointRegistration.h +++ b/Modules/AlgorithmsExt/include/mitkAnisotropicIterativeClosestPointRegistration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __ANISOTROPICITERATIVECLOSESTPOINTREGISTRATION_H__ #define __ANISOTROPICITERATIVECLOSESTPOINTREGISTRATION_H__ diff --git a/Modules/AlgorithmsExt/include/mitkAnisotropicRegistrationCommon.h b/Modules/AlgorithmsExt/include/mitkAnisotropicRegistrationCommon.h index 879a5021b2d..1beee225356 100644 --- a/Modules/AlgorithmsExt/include/mitkAnisotropicRegistrationCommon.h +++ b/Modules/AlgorithmsExt/include/mitkAnisotropicRegistrationCommon.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __ANISOTROPICREGISTRATIONCOMMON_H__ #define __ANISOTROPICREGISTRATIONCOMMON_H__ diff --git a/Modules/AlgorithmsExt/include/mitkAutoCropImageFilter.h b/Modules/AlgorithmsExt/include/mitkAutoCropImageFilter.h index 38796af19ab..d7efd03bf1c 100644 --- a/Modules/AlgorithmsExt/include/mitkAutoCropImageFilter.h +++ b/Modules/AlgorithmsExt/include/mitkAutoCropImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkAutoCropImageFilter_h_ #define __mitkAutoCropImageFilter_h_ @@ -50,8 +46,7 @@ namespace mitk * * @ingroup Process * - * @author Thomas Boettger; revised by Tobias Schwarz and Daniel Stein; Division of Medical - * and Biological Informatics + * @author Thomas Boettger; revised by Tobias Schwarz and Daniel Stein * */ diff --git a/Modules/AlgorithmsExt/include/mitkBoundingObjectCutAndCast.h b/Modules/AlgorithmsExt/include/mitkBoundingObjectCutAndCast.h index ad1da6362c3..98c41a604be 100644 --- a/Modules/AlgorithmsExt/include/mitkBoundingObjectCutAndCast.h +++ b/Modules/AlgorithmsExt/include/mitkBoundingObjectCutAndCast.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BOUNDINGOBJECTCUTANDCAST_H_HEADER_INCLUDED_C10B22CD #define BOUNDINGOBJECTCUTANDCAST_H_HEADER_INCLUDED_C10B22CD diff --git a/Modules/AlgorithmsExt/include/mitkBoundingObjectCutAndCast.txx b/Modules/AlgorithmsExt/include/mitkBoundingObjectCutAndCast.txx index a2c069c47c3..bced8876a8f 100644 --- a/Modules/AlgorithmsExt/include/mitkBoundingObjectCutAndCast.txx +++ b/Modules/AlgorithmsExt/include/mitkBoundingObjectCutAndCast.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKBOUNDINGOBJECTCUTANDCAST_TXX #define MITKBOUNDINGOBJECTCUTANDCAST_TXX diff --git a/Modules/AlgorithmsExt/include/mitkBoundingObjectCutter.h b/Modules/AlgorithmsExt/include/mitkBoundingObjectCutter.h index 2a1b58ccf2b..08b5e37b9f5 100644 --- a/Modules/AlgorithmsExt/include/mitkBoundingObjectCutter.h +++ b/Modules/AlgorithmsExt/include/mitkBoundingObjectCutter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BOUNDINGOBJECTCUTTER_H_HEADER_INCLUDED_C10B22CD #define BOUNDINGOBJECTCUTTER_H_HEADER_INCLUDED_C10B22CD diff --git a/Modules/AlgorithmsExt/include/mitkBoundingObjectCutter.txx b/Modules/AlgorithmsExt/include/mitkBoundingObjectCutter.txx index d9c1d05c4c5..ab5e26ebbe9 100644 --- a/Modules/AlgorithmsExt/include/mitkBoundingObjectCutter.txx +++ b/Modules/AlgorithmsExt/include/mitkBoundingObjectCutter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKBOUNDINGOBJECTCUTTER_TXX #define MITKBOUNDINGOBJECTCUTTER_TXX diff --git a/Modules/AlgorithmsExt/include/mitkBoundingObjectToSegmentationFilter.h b/Modules/AlgorithmsExt/include/mitkBoundingObjectToSegmentationFilter.h index be1d86487b4..d7f917a5fe3 100644 --- a/Modules/AlgorithmsExt/include/mitkBoundingObjectToSegmentationFilter.h +++ b/Modules/AlgorithmsExt/include/mitkBoundingObjectToSegmentationFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKBOUNDINGOBJECTTOSEGMENTATIONFILTER_H #define MITKBOUNDINGOBJECTTOSEGMENTATIONFILTER_H diff --git a/Modules/AlgorithmsExt/include/mitkCovarianceMatrixCalculator.h b/Modules/AlgorithmsExt/include/mitkCovarianceMatrixCalculator.h index aa8e871ae88..92856ab4b62 100644 --- a/Modules/AlgorithmsExt/include/mitkCovarianceMatrixCalculator.h +++ b/Modules/AlgorithmsExt/include/mitkCovarianceMatrixCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_COVARIANCEMATRIXCALCULATOR_H__ #define __MITK_COVARIANCEMATRIXCALCULATOR_H__ diff --git a/Modules/AlgorithmsExt/include/mitkCropTimestepsImageFilter.h b/Modules/AlgorithmsExt/include/mitkCropTimestepsImageFilter.h index f2cbe5496bf..d7bd4f4423d 100644 --- a/Modules/AlgorithmsExt/include/mitkCropTimestepsImageFilter.h +++ b/Modules/AlgorithmsExt/include/mitkCropTimestepsImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCropTimestepsImageFilter_h #define mitkCropTimestepsImageFilter_h diff --git a/Modules/AlgorithmsExt/include/mitkGeometryClipImageFilter.h b/Modules/AlgorithmsExt/include/mitkGeometryClipImageFilter.h index 877da7e1eaa..43c9ecc2276 100644 --- a/Modules/AlgorithmsExt/include/mitkGeometryClipImageFilter.h +++ b/Modules/AlgorithmsExt/include/mitkGeometryClipImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGEOMETRYCLIPIMAGEFILTER_H_HEADER_INCLUDED_C1F48A22 #define MITKGEOMETRYCLIPIMAGEFILTER_H_HEADER_INCLUDED_C1F48A22 diff --git a/Modules/AlgorithmsExt/include/mitkGeometryDataSource.h b/Modules/AlgorithmsExt/include/mitkGeometryDataSource.h index 4666adfdd0d..abb36d621cd 100644 --- a/Modules/AlgorithmsExt/include/mitkGeometryDataSource.h +++ b/Modules/AlgorithmsExt/include/mitkGeometryDataSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGEOMETRYDATASOURCE_H_HEADER_INCLUDED_C10B4740 #define MITKGEOMETRYDATASOURCE_H_HEADER_INCLUDED_C10B4740 diff --git a/Modules/AlgorithmsExt/include/mitkHeightFieldSurfaceClipImageFilter.h b/Modules/AlgorithmsExt/include/mitkHeightFieldSurfaceClipImageFilter.h index e50e67e30b3..edf48162fc4 100644 --- a/Modules/AlgorithmsExt/include/mitkHeightFieldSurfaceClipImageFilter.h +++ b/Modules/AlgorithmsExt/include/mitkHeightFieldSurfaceClipImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKHEIGHTFIELDSURFACECLIPIMAGEFILTER_H_HEADER_INCLUDED #define MITKHEIGHTFIELDSURFACECLIPIMAGEFILTER_H_HEADER_INCLUDED diff --git a/Modules/AlgorithmsExt/include/mitkImageToUnstructuredGridFilter.h b/Modules/AlgorithmsExt/include/mitkImageToUnstructuredGridFilter.h index 11040c61833..97b2342d623 100644 --- a/Modules/AlgorithmsExt/include/mitkImageToUnstructuredGridFilter.h +++ b/Modules/AlgorithmsExt/include/mitkImageToUnstructuredGridFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKIMAGETOUNSTRUCTUREDGRIDFILTER_h__ #define _MITKIMAGETOUNSTRUCTUREDGRIDFILTER_h__ diff --git a/Modules/AlgorithmsExt/include/mitkLabeledImageToSurfaceFilter.h b/Modules/AlgorithmsExt/include/mitkLabeledImageToSurfaceFilter.h index b3de633b61d..26d4385f40c 100644 --- a/Modules/AlgorithmsExt/include/mitkLabeledImageToSurfaceFilter.h +++ b/Modules/AlgorithmsExt/include/mitkLabeledImageToSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitk_labeled_image_to_surface_filter__h_ #define _mitk_labeled_image_to_surface_filter__h_ diff --git a/Modules/AlgorithmsExt/include/mitkMaskAndCutRoiImageFilter.h b/Modules/AlgorithmsExt/include/mitkMaskAndCutRoiImageFilter.h index d3cb32b778a..a510e16ba97 100644 --- a/Modules/AlgorithmsExt/include/mitkMaskAndCutRoiImageFilter.h +++ b/Modules/AlgorithmsExt/include/mitkMaskAndCutRoiImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMASKANDCUTROIIMAGEFILTER_H #define MITKMASKANDCUTROIIMAGEFILTER_H diff --git a/Modules/AlgorithmsExt/include/mitkMaskImageFilter.h b/Modules/AlgorithmsExt/include/mitkMaskImageFilter.h index 74e196e89bb..61b046a75a9 100644 --- a/Modules/AlgorithmsExt/include/mitkMaskImageFilter.h +++ b/Modules/AlgorithmsExt/include/mitkMaskImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMASKIMAGEFILTER_H_HEADER_INCLUDED_C1F48A22 #define MITKMASKIMAGEFILTER_H_HEADER_INCLUDED_C1F48A22 diff --git a/Modules/AlgorithmsExt/include/mitkMovieGenerator.h b/Modules/AlgorithmsExt/include/mitkMovieGenerator.h index fb78c7cff8d..e7da10c8868 100755 --- a/Modules/AlgorithmsExt/include/mitkMovieGenerator.h +++ b/Modules/AlgorithmsExt/include/mitkMovieGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MOVIEGENERATOR_H_HEADER_INCLUDED diff --git a/Modules/AlgorithmsExt/include/mitkMovieGeneratorWin32.h b/Modules/AlgorithmsExt/include/mitkMovieGeneratorWin32.h index f5ee775f499..fe00eb848f4 100755 --- a/Modules/AlgorithmsExt/include/mitkMovieGeneratorWin32.h +++ b/Modules/AlgorithmsExt/include/mitkMovieGeneratorWin32.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MovieGeneratorWin32WIN32_H_HEADER_INCLUDED #define MovieGeneratorWin32WIN32_H_HEADER_INCLUDED diff --git a/Modules/AlgorithmsExt/include/mitkNonBlockingAlgorithm.h b/Modules/AlgorithmsExt/include/mitkNonBlockingAlgorithm.h index bcc55be75f2..c280fa5ec29 100644 --- a/Modules/AlgorithmsExt/include/mitkNonBlockingAlgorithm.h +++ b/Modules/AlgorithmsExt/include/mitkNonBlockingAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_NON_BLOCKING_ALGORITHM_H_INCLUDED_DFARdfWN1tr #define MITK_NON_BLOCKING_ALGORITHM_H_INCLUDED_DFARdfWN1tr diff --git a/Modules/AlgorithmsExt/include/mitkNonBlockingAlgorithmEvents.h b/Modules/AlgorithmsExt/include/mitkNonBlockingAlgorithmEvents.h index 88def71d5be..f6f8c22a9cf 100644 --- a/Modules/AlgorithmsExt/include/mitkNonBlockingAlgorithmEvents.h +++ b/Modules/AlgorithmsExt/include/mitkNonBlockingAlgorithmEvents.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_NON_BLOCKING_ALGORHITHMS_ENVETS_H_INCLDUED #define MITK_NON_BLOCKING_ALGORHITHMS_ENVETS_H_INCLDUED diff --git a/Modules/AlgorithmsExt/include/mitkPadImageFilter.h b/Modules/AlgorithmsExt/include/mitkPadImageFilter.h index 05d67a4fbdc..ef72e58eea7 100644 --- a/Modules/AlgorithmsExt/include/mitkPadImageFilter.h +++ b/Modules/AlgorithmsExt/include/mitkPadImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPADIMAGEFILTER_H_HEADER_INCLUDED #define MITKPADIMAGEFILTER_H_HEADER_INCLUDED diff --git a/Modules/AlgorithmsExt/include/mitkPlaneFit.h b/Modules/AlgorithmsExt/include/mitkPlaneFit.h index e45080fc708..197aadabd24 100644 --- a/Modules/AlgorithmsExt/include/mitkPlaneFit.h +++ b/Modules/AlgorithmsExt/include/mitkPlaneFit.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(MITK_PLANEFIT_H__INCLUDED_) #define MITK_PLANEFIT_H__INCLUDED_ diff --git a/Modules/AlgorithmsExt/include/mitkPlaneLandmarkProjector.h b/Modules/AlgorithmsExt/include/mitkPlaneLandmarkProjector.h index 1ef1946f3a7..253e1672e9e 100644 --- a/Modules/AlgorithmsExt/include/mitkPlaneLandmarkProjector.h +++ b/Modules/AlgorithmsExt/include/mitkPlaneLandmarkProjector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLANELANDMARKPROJECTOR_H_HEADER_INCLUDED_C1C68A2C #define MITKPLANELANDMARKPROJECTOR_H_HEADER_INCLUDED_C1C68A2C diff --git a/Modules/AlgorithmsExt/include/mitkPointLocator.h b/Modules/AlgorithmsExt/include/mitkPointLocator.h index 19231a9ea1b..304dcdfa79f 100644 --- a/Modules/AlgorithmsExt/include/mitkPointLocator.h +++ b/Modules/AlgorithmsExt/include/mitkPointLocator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_POINT_LOCATOR__H__ #define _MITK_POINT_LOCATOR__H__ diff --git a/Modules/AlgorithmsExt/include/mitkSegmentationSink.h b/Modules/AlgorithmsExt/include/mitkSegmentationSink.h index ab80767eeab..7570aa039e6 100644 --- a/Modules/AlgorithmsExt/include/mitkSegmentationSink.h +++ b/Modules/AlgorithmsExt/include/mitkSegmentationSink.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_SEGMENTATION_SINK_H_INCLUDET_WAD #define MITK_SEGMENTATION_SINK_H_INCLUDET_WAD diff --git a/Modules/AlgorithmsExt/include/mitkSimpleHistogram.h b/Modules/AlgorithmsExt/include/mitkSimpleHistogram.h index 69cf4464b89..3736b286119 100644 --- a/Modules/AlgorithmsExt/include/mitkSimpleHistogram.h +++ b/Modules/AlgorithmsExt/include/mitkSimpleHistogram.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSIMPLEHISTOGRAM_H #define MITKSIMPLEHISTOGRAM_H diff --git a/Modules/AlgorithmsExt/include/mitkSimpleUnstructuredGridHistogram.h b/Modules/AlgorithmsExt/include/mitkSimpleUnstructuredGridHistogram.h index 36ed6bdf405..849d61c3a33 100644 --- a/Modules/AlgorithmsExt/include/mitkSimpleUnstructuredGridHistogram.h +++ b/Modules/AlgorithmsExt/include/mitkSimpleUnstructuredGridHistogram.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSIMPLEUNSTRUCTUREDGRIDHISTOGRAM_H #define MITKSIMPLEUNSTRUCTUREDGRIDHISTOGRAM_H diff --git a/Modules/AlgorithmsExt/include/mitkSurfaceToPointSetFilter.h b/Modules/AlgorithmsExt/include/mitkSurfaceToPointSetFilter.h index 63be80e1421..5ec265261b3 100644 --- a/Modules/AlgorithmsExt/include/mitkSurfaceToPointSetFilter.h +++ b/Modules/AlgorithmsExt/include/mitkSurfaceToPointSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSURFACETOPOINTSETFILTER_H_HEADER_INCLUDED_ #define MITKSURFACETOPOINTSETFILTER_H_HEADER_INCLUDED_ diff --git a/Modules/AlgorithmsExt/include/mitkUnstructuredGridClusteringFilter.h b/Modules/AlgorithmsExt/include/mitkUnstructuredGridClusteringFilter.h index fc79177c71e..f833f00408a 100644 --- a/Modules/AlgorithmsExt/include/mitkUnstructuredGridClusteringFilter.h +++ b/Modules/AlgorithmsExt/include/mitkUnstructuredGridClusteringFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKUNSTRUCTUREDGRIDCLUSTERINGFILTER_h__ #define _MITKUNSTRUCTUREDGRIDCLUSTERINGFILTER_h__ diff --git a/Modules/AlgorithmsExt/include/mitkUnstructuredGridToUnstructuredGridFilter.h b/Modules/AlgorithmsExt/include/mitkUnstructuredGridToUnstructuredGridFilter.h index 5f0292c148d..d24477e8f28 100644 --- a/Modules/AlgorithmsExt/include/mitkUnstructuredGridToUnstructuredGridFilter.h +++ b/Modules/AlgorithmsExt/include/mitkUnstructuredGridToUnstructuredGridFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKUNSTRUCTUREDGRIDTOUNSTRUCTUREDGRID_h__ #define _MITKUNSTRUCTUREDGRIDTOUNSTRUCTUREDGRID_h__ diff --git a/Modules/AlgorithmsExt/include/mitkWeightedPointTransform.h b/Modules/AlgorithmsExt/include/mitkWeightedPointTransform.h index 54671ce680c..bb34dfba25f 100644 --- a/Modules/AlgorithmsExt/include/mitkWeightedPointTransform.h +++ b/Modules/AlgorithmsExt/include/mitkWeightedPointTransform.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __WEIGHTEDPOINTTRANSFORM_H__ #define __WEIGHTEDPOINTTRANSFORM_H__ diff --git a/Modules/AlgorithmsExt/src/mitkAnisotropicIterativeClosestPointRegistration.cpp b/Modules/AlgorithmsExt/src/mitkAnisotropicIterativeClosestPointRegistration.cpp index b36c423ba84..9b1ada51e3e 100644 --- a/Modules/AlgorithmsExt/src/mitkAnisotropicIterativeClosestPointRegistration.cpp +++ b/Modules/AlgorithmsExt/src/mitkAnisotropicIterativeClosestPointRegistration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkAnisotropicIterativeClosestPointRegistration.h" diff --git a/Modules/AlgorithmsExt/src/mitkAnisotropicRegistrationCommon.cpp b/Modules/AlgorithmsExt/src/mitkAnisotropicRegistrationCommon.cpp index c0c7b375ed3..e904b06752d 100644 --- a/Modules/AlgorithmsExt/src/mitkAnisotropicRegistrationCommon.cpp +++ b/Modules/AlgorithmsExt/src/mitkAnisotropicRegistrationCommon.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/AlgorithmsExt/src/mitkAutoCropImageFilter.cpp b/Modules/AlgorithmsExt/src/mitkAutoCropImageFilter.cpp index c6f31baa561..d5b7b298421 100644 --- a/Modules/AlgorithmsExt/src/mitkAutoCropImageFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkAutoCropImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAutoCropImageFilter.h" diff --git a/Modules/AlgorithmsExt/src/mitkBoundingObjectCutter.cpp b/Modules/AlgorithmsExt/src/mitkBoundingObjectCutter.cpp index b78801ee7b2..04d6641676a 100644 --- a/Modules/AlgorithmsExt/src/mitkBoundingObjectCutter.cpp +++ b/Modules/AlgorithmsExt/src/mitkBoundingObjectCutter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBoundingObjectCutter.h" #include "mitkBoundingObject.h" diff --git a/Modules/AlgorithmsExt/src/mitkBoundingObjectToSegmentationFilter.cpp b/Modules/AlgorithmsExt/src/mitkBoundingObjectToSegmentationFilter.cpp index 7bf490a7665..7c71f622e9b 100644 --- a/Modules/AlgorithmsExt/src/mitkBoundingObjectToSegmentationFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkBoundingObjectToSegmentationFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBoundingObjectToSegmentationFilter.h" #include "mitkImageCast.h" diff --git a/Modules/AlgorithmsExt/src/mitkCovarianceMatrixCalculator.cpp b/Modules/AlgorithmsExt/src/mitkCovarianceMatrixCalculator.cpp index 4c70d0aad30..3a591260409 100644 --- a/Modules/AlgorithmsExt/src/mitkCovarianceMatrixCalculator.cpp +++ b/Modules/AlgorithmsExt/src/mitkCovarianceMatrixCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCovarianceMatrixCalculator.h" #include diff --git a/Modules/AlgorithmsExt/src/mitkCropTimestepsImageFilter.cpp b/Modules/AlgorithmsExt/src/mitkCropTimestepsImageFilter.cpp index c68dffe8b74..a4caf11eff8 100644 --- a/Modules/AlgorithmsExt/src/mitkCropTimestepsImageFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkCropTimestepsImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCropTimestepsImageFilter.h" diff --git a/Modules/AlgorithmsExt/src/mitkGeometryClipImageFilter.cpp b/Modules/AlgorithmsExt/src/mitkGeometryClipImageFilter.cpp index fe2430413af..8e335100070 100644 --- a/Modules/AlgorithmsExt/src/mitkGeometryClipImageFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkGeometryClipImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometryClipImageFilter.h" #include "mitkImageTimeSelector.h" diff --git a/Modules/AlgorithmsExt/src/mitkGeometryDataSource.cpp b/Modules/AlgorithmsExt/src/mitkGeometryDataSource.cpp index 5fc7dea3e81..085234833b2 100644 --- a/Modules/AlgorithmsExt/src/mitkGeometryDataSource.cpp +++ b/Modules/AlgorithmsExt/src/mitkGeometryDataSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometryDataSource.h" #include "mitkGeometryData.h" diff --git a/Modules/AlgorithmsExt/src/mitkHeightFieldSurfaceClipImageFilter.cpp b/Modules/AlgorithmsExt/src/mitkHeightFieldSurfaceClipImageFilter.cpp index 0d1431ac8f6..447c2548322 100644 --- a/Modules/AlgorithmsExt/src/mitkHeightFieldSurfaceClipImageFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkHeightFieldSurfaceClipImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkHeightFieldSurfaceClipImageFilter.h" #include "mitkImageTimeSelector.h" diff --git a/Modules/AlgorithmsExt/src/mitkImageToUnstructuredGridFilter.cpp b/Modules/AlgorithmsExt/src/mitkImageToUnstructuredGridFilter.cpp index eb0e416d510..db561707d8c 100644 --- a/Modules/AlgorithmsExt/src/mitkImageToUnstructuredGridFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkImageToUnstructuredGridFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/AlgorithmsExt/src/mitkLabeledImageToSurfaceFilter.cpp b/Modules/AlgorithmsExt/src/mitkLabeledImageToSurfaceFilter.cpp index bb00b10b870..8c89018f1fd 100644 --- a/Modules/AlgorithmsExt/src/mitkLabeledImageToSurfaceFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkLabeledImageToSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/AlgorithmsExt/src/mitkMaskAndCutRoiImageFilter.cpp b/Modules/AlgorithmsExt/src/mitkMaskAndCutRoiImageFilter.cpp index ae596ced313..255d1316e11 100644 --- a/Modules/AlgorithmsExt/src/mitkMaskAndCutRoiImageFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkMaskAndCutRoiImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMaskAndCutRoiImageFilter.h" #include "mitkBoundingObjectToSegmentationFilter.h" diff --git a/Modules/AlgorithmsExt/src/mitkMaskImageFilter.cpp b/Modules/AlgorithmsExt/src/mitkMaskImageFilter.cpp index 32375ec5468..d08b3c1ddc8 100644 --- a/Modules/AlgorithmsExt/src/mitkMaskImageFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkMaskImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMaskImageFilter.h" #include "mitkImageTimeSelector.h" diff --git a/Modules/AlgorithmsExt/src/mitkMovieGenerator.cpp b/Modules/AlgorithmsExt/src/mitkMovieGenerator.cpp index f38818e738a..30612882620 100755 --- a/Modules/AlgorithmsExt/src/mitkMovieGenerator.cpp +++ b/Modules/AlgorithmsExt/src/mitkMovieGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMovieGenerator.h" #include "mitkConfig.h" diff --git a/Modules/AlgorithmsExt/src/mitkMovieGeneratorWin32.cpp b/Modules/AlgorithmsExt/src/mitkMovieGeneratorWin32.cpp index d98d906328a..cdd6aba532c 100755 --- a/Modules/AlgorithmsExt/src/mitkMovieGeneratorWin32.cpp +++ b/Modules/AlgorithmsExt/src/mitkMovieGeneratorWin32.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMovieGeneratorWin32.h" #include diff --git a/Modules/AlgorithmsExt/src/mitkNonBlockingAlgorithm.cpp b/Modules/AlgorithmsExt/src/mitkNonBlockingAlgorithm.cpp index 7eb47975892..ea6eb1135db 100644 --- a/Modules/AlgorithmsExt/src/mitkNonBlockingAlgorithm.cpp +++ b/Modules/AlgorithmsExt/src/mitkNonBlockingAlgorithm.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNonBlockingAlgorithm.h" #include "mitkCallbackFromGUIThread.h" diff --git a/Modules/AlgorithmsExt/src/mitkPadImageFilter.cpp b/Modules/AlgorithmsExt/src/mitkPadImageFilter.cpp index 98cc9e9148a..332f79e0b39 100644 --- a/Modules/AlgorithmsExt/src/mitkPadImageFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkPadImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPadImageFilter.h" #include "mitkImageCast.h" diff --git a/Modules/AlgorithmsExt/src/mitkPlaneFit.cpp b/Modules/AlgorithmsExt/src/mitkPlaneFit.cpp index 1c6db31492b..3bf7846bc88 100644 --- a/Modules/AlgorithmsExt/src/mitkPlaneFit.cpp +++ b/Modules/AlgorithmsExt/src/mitkPlaneFit.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneFit.h" diff --git a/Modules/AlgorithmsExt/src/mitkPlaneLandmarkProjector.cpp b/Modules/AlgorithmsExt/src/mitkPlaneLandmarkProjector.cpp index 39cbaabaee0..f5092f46f2d 100644 --- a/Modules/AlgorithmsExt/src/mitkPlaneLandmarkProjector.cpp +++ b/Modules/AlgorithmsExt/src/mitkPlaneLandmarkProjector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneLandmarkProjector.h" diff --git a/Modules/AlgorithmsExt/src/mitkPointLocator.cpp b/Modules/AlgorithmsExt/src/mitkPointLocator.cpp index 906f86bc8ab..9e9963d2331 100644 --- a/Modules/AlgorithmsExt/src/mitkPointLocator.cpp +++ b/Modules/AlgorithmsExt/src/mitkPointLocator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointLocator.h" #include diff --git a/Modules/AlgorithmsExt/src/mitkSegmentationSink.cpp b/Modules/AlgorithmsExt/src/mitkSegmentationSink.cpp index aec4a69962b..48493b47ef9 100644 --- a/Modules/AlgorithmsExt/src/mitkSegmentationSink.cpp +++ b/Modules/AlgorithmsExt/src/mitkSegmentationSink.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSegmentationSink.h" #include "mitkDataStorage.h" diff --git a/Modules/AlgorithmsExt/src/mitkSimpleHistogram.cpp b/Modules/AlgorithmsExt/src/mitkSimpleHistogram.cpp index d4f9fffcba0..3615e69a1a5 100644 --- a/Modules/AlgorithmsExt/src/mitkSimpleHistogram.cpp +++ b/Modules/AlgorithmsExt/src/mitkSimpleHistogram.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSimpleHistogram.h" diff --git a/Modules/AlgorithmsExt/src/mitkSimpleUnstructuredGridHistogram.cpp b/Modules/AlgorithmsExt/src/mitkSimpleUnstructuredGridHistogram.cpp index d35f9997883..589fff58d81 100644 --- a/Modules/AlgorithmsExt/src/mitkSimpleUnstructuredGridHistogram.cpp +++ b/Modules/AlgorithmsExt/src/mitkSimpleUnstructuredGridHistogram.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSimpleUnstructuredGridHistogram.h" diff --git a/Modules/AlgorithmsExt/src/mitkSurfaceToPointSetFilter.cpp b/Modules/AlgorithmsExt/src/mitkSurfaceToPointSetFilter.cpp index afbbba449eb..c5c092b3cba 100644 --- a/Modules/AlgorithmsExt/src/mitkSurfaceToPointSetFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkSurfaceToPointSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceToPointSetFilter.h" diff --git a/Modules/AlgorithmsExt/src/mitkUnstructuredGridClusteringFilter.cpp b/Modules/AlgorithmsExt/src/mitkUnstructuredGridClusteringFilter.cpp index 94c48c15261..26a7ed4dca3 100644 --- a/Modules/AlgorithmsExt/src/mitkUnstructuredGridClusteringFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkUnstructuredGridClusteringFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/AlgorithmsExt/src/mitkUnstructuredGridToUnstructuredGridFilter.cpp b/Modules/AlgorithmsExt/src/mitkUnstructuredGridToUnstructuredGridFilter.cpp index 6986943fdfe..b538245c83b 100644 --- a/Modules/AlgorithmsExt/src/mitkUnstructuredGridToUnstructuredGridFilter.cpp +++ b/Modules/AlgorithmsExt/src/mitkUnstructuredGridToUnstructuredGridFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/AlgorithmsExt/src/mitkWeightedPointTransform.cpp b/Modules/AlgorithmsExt/src/mitkWeightedPointTransform.cpp index 1b9e40c183b..ce6f229ea59 100644 --- a/Modules/AlgorithmsExt/src/mitkWeightedPointTransform.cpp +++ b/Modules/AlgorithmsExt/src/mitkWeightedPointTransform.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkWeightedPointTransform.h" diff --git a/Modules/AlgorithmsExt/test/mitkAnisotropicIterativeClosestPointRegistrationTest.cpp b/Modules/AlgorithmsExt/test/mitkAnisotropicIterativeClosestPointRegistrationTest.cpp index 622346680e4..ffa9a00afa9 100644 --- a/Modules/AlgorithmsExt/test/mitkAnisotropicIterativeClosestPointRegistrationTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkAnisotropicIterativeClosestPointRegistrationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/AlgorithmsExt/test/mitkAutoCropImageFilterTest.cpp b/Modules/AlgorithmsExt/test/mitkAutoCropImageFilterTest.cpp index b673262dc03..f3a4e7360c7 100644 --- a/Modules/AlgorithmsExt/test/mitkAutoCropImageFilterTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkAutoCropImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAutoCropImageFilter.h" diff --git a/Modules/AlgorithmsExt/test/mitkBoundingObjectCutterTest.cpp b/Modules/AlgorithmsExt/test/mitkBoundingObjectCutterTest.cpp index 04a16492e22..0651db2802d 100644 --- a/Modules/AlgorithmsExt/test/mitkBoundingObjectCutterTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkBoundingObjectCutterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/AlgorithmsExt/test/mitkCovarianceMatrixCalculatorTest.cpp b/Modules/AlgorithmsExt/test/mitkCovarianceMatrixCalculatorTest.cpp index 597b0f64b41..74927ae1c84 100644 --- a/Modules/AlgorithmsExt/test/mitkCovarianceMatrixCalculatorTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkCovarianceMatrixCalculatorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/AlgorithmsExt/test/mitkCropTimestepsImageFilterTest.cpp b/Modules/AlgorithmsExt/test/mitkCropTimestepsImageFilterTest.cpp index e9d6c2e18cc..39e6088172e 100644 --- a/Modules/AlgorithmsExt/test/mitkCropTimestepsImageFilterTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkCropTimestepsImageFilterTest.cpp @@ -1,13 +1,14 @@ -/*=================================================================== +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. + +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. -See LICENSE.txt or http://www.mitk.org for details. -===================================================================*/ + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ // Testing #include "mitkTestingMacros.h" #include "mitkTestFixture.h" diff --git a/Modules/AlgorithmsExt/test/mitkImageToUnstructuredGridFilterTest.cpp b/Modules/AlgorithmsExt/test/mitkImageToUnstructuredGridFilterTest.cpp index 3cc5b5a1487..84373e97d82 100644 --- a/Modules/AlgorithmsExt/test/mitkImageToUnstructuredGridFilterTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkImageToUnstructuredGridFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/AlgorithmsExt/test/mitkLabeledImageToSurfaceFilterTest.cpp b/Modules/AlgorithmsExt/test/mitkLabeledImageToSurfaceFilterTest.cpp index 32a45a67006..3cab4d34b84 100644 --- a/Modules/AlgorithmsExt/test/mitkLabeledImageToSurfaceFilterTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkLabeledImageToSurfaceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabeledImageToSurfaceFilter.h" #include "mitkReferenceCountWatcher.h" diff --git a/Modules/AlgorithmsExt/test/mitkPlaneFitTest.cpp b/Modules/AlgorithmsExt/test/mitkPlaneFitTest.cpp index 134dbb80c3a..bbbb62cb995 100644 --- a/Modules/AlgorithmsExt/test/mitkPlaneFitTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkPlaneFitTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/AlgorithmsExt/test/mitkSimpleHistogramTest.cpp b/Modules/AlgorithmsExt/test/mitkSimpleHistogramTest.cpp index c7b3821e26d..4e0959183e3 100644 --- a/Modules/AlgorithmsExt/test/mitkSimpleHistogramTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkSimpleHistogramTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/AlgorithmsExt/test/mitkUnstructuredGridClusteringFilterTest.cpp b/Modules/AlgorithmsExt/test/mitkUnstructuredGridClusteringFilterTest.cpp index 90dfcb7c91e..72f2c60ded2 100644 --- a/Modules/AlgorithmsExt/test/mitkUnstructuredGridClusteringFilterTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkUnstructuredGridClusteringFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/AlgorithmsExt/test/mitkUnstructuredGridToUnstructuredGridFilterTest.cpp b/Modules/AlgorithmsExt/test/mitkUnstructuredGridToUnstructuredGridFilterTest.cpp index 210d999ed81..5821fde4c87 100644 --- a/Modules/AlgorithmsExt/test/mitkUnstructuredGridToUnstructuredGridFilterTest.cpp +++ b/Modules/AlgorithmsExt/test/mitkUnstructuredGridToUnstructuredGridFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Annotation/include/mitkColorBarAnnotation.h b/Modules/Annotation/include/mitkColorBarAnnotation.h index 6c09702511c..43b6886aa5f 100644 --- a/Modules/Annotation/include/mitkColorBarAnnotation.h +++ b/Modules/Annotation/include/mitkColorBarAnnotation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef COLORBARAnnotation_H #define COLORBARAnnotation_H diff --git a/Modules/Annotation/include/mitkLabelAnnotation3D.h b/Modules/Annotation/include/mitkLabelAnnotation3D.h index 71217e8781c..1d3b74ff9e4 100644 --- a/Modules/Annotation/include/mitkLabelAnnotation3D.h +++ b/Modules/Annotation/include/mitkLabelAnnotation3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef LabelAnnotation3D_H #define LabelAnnotation3D_H diff --git a/Modules/Annotation/include/mitkLayoutAnnotationRenderer.h b/Modules/Annotation/include/mitkLayoutAnnotationRenderer.h index b8752dbd0d6..7038f846767 100644 --- a/Modules/Annotation/include/mitkLayoutAnnotationRenderer.h +++ b/Modules/Annotation/include/mitkLayoutAnnotationRenderer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LayoutAnnotationRenderer_H #define LayoutAnnotationRenderer_H diff --git a/Modules/Annotation/include/mitkLogoAnnotation.h b/Modules/Annotation/include/mitkLogoAnnotation.h index 53d2042983c..9c59473958d 100644 --- a/Modules/Annotation/include/mitkLogoAnnotation.h +++ b/Modules/Annotation/include/mitkLogoAnnotation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef LOGOAnnotation_H #define LOGOAnnotation_H diff --git a/Modules/Annotation/include/mitkManualPlacementAnnotationRenderer.h b/Modules/Annotation/include/mitkManualPlacementAnnotationRenderer.h index b983d0ded96..a47a041e9da 100644 --- a/Modules/Annotation/include/mitkManualPlacementAnnotationRenderer.h +++ b/Modules/Annotation/include/mitkManualPlacementAnnotationRenderer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ManualPlacementAnnotationRenderer_H #define ManualPlacementAnnotationRenderer_H diff --git a/Modules/Annotation/include/mitkScaleLegendAnnotation.h b/Modules/Annotation/include/mitkScaleLegendAnnotation.h index d8df09b16a7..f7c4e344540 100644 --- a/Modules/Annotation/include/mitkScaleLegendAnnotation.h +++ b/Modules/Annotation/include/mitkScaleLegendAnnotation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef SCALELEGENDAnnotation_H #define SCALELEGENDAnnotation_H diff --git a/Modules/Annotation/include/mitkTextAnnotation2D.h b/Modules/Annotation/include/mitkTextAnnotation2D.h index 62b86ec8abf..03df61c8fe1 100644 --- a/Modules/Annotation/include/mitkTextAnnotation2D.h +++ b/Modules/Annotation/include/mitkTextAnnotation2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef TEXTAnnotation2D_H #define TEXTAnnotation2D_H diff --git a/Modules/Annotation/include/mitkTextAnnotation3D.h b/Modules/Annotation/include/mitkTextAnnotation3D.h index 818ac50ab64..310f17c0e46 100644 --- a/Modules/Annotation/include/mitkTextAnnotation3D.h +++ b/Modules/Annotation/include/mitkTextAnnotation3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef TextAnnotation3D_H #define TextAnnotation3D_H diff --git a/Modules/Annotation/include/mitkVtkAnnotation.h b/Modules/Annotation/include/mitkVtkAnnotation.h index 19ac0abd0ec..01c0765c3d5 100644 --- a/Modules/Annotation/include/mitkVtkAnnotation.h +++ b/Modules/Annotation/include/mitkVtkAnnotation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VTKAnnotation_H #define VTKAnnotation_H diff --git a/Modules/Annotation/include/mitkVtkAnnotation2D.h b/Modules/Annotation/include/mitkVtkAnnotation2D.h index 9a78fbc854c..97cbe81f2de 100644 --- a/Modules/Annotation/include/mitkVtkAnnotation2D.h +++ b/Modules/Annotation/include/mitkVtkAnnotation2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VTKAnnotation2D_H #define VTKAnnotation2D_H diff --git a/Modules/Annotation/include/mitkVtkAnnotation3D.h b/Modules/Annotation/include/mitkVtkAnnotation3D.h index baa242bd592..71b7c487f97 100644 --- a/Modules/Annotation/include/mitkVtkAnnotation3D.h +++ b/Modules/Annotation/include/mitkVtkAnnotation3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VTKAnnotation3D_H #define VTKAnnotation3D_H diff --git a/Modules/Annotation/include/mitkVtkLogoRepresentation.h b/Modules/Annotation/include/mitkVtkLogoRepresentation.h index d711dce2e22..e9e3d685c34 100644 --- a/Modules/Annotation/include/mitkVtkLogoRepresentation.h +++ b/Modules/Annotation/include/mitkVtkLogoRepresentation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef __mitkVtkLogoRepresentation_h #define __mitkVtkLogoRepresentation_h diff --git a/Modules/Annotation/src/mitkColorBarAnnotation.cpp b/Modules/Annotation/src/mitkColorBarAnnotation.cpp index bcc1bc84865..31ee59f04b1 100644 --- a/Modules/Annotation/src/mitkColorBarAnnotation.cpp +++ b/Modules/Annotation/src/mitkColorBarAnnotation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkColorBarAnnotation.h" #include "mitkLookupTable.h" diff --git a/Modules/Annotation/src/mitkLabelAnnotation3D.cpp b/Modules/Annotation/src/mitkLabelAnnotation3D.cpp index c19d1931718..047d50ff26b 100644 --- a/Modules/Annotation/src/mitkLabelAnnotation3D.cpp +++ b/Modules/Annotation/src/mitkLabelAnnotation3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelAnnotation3D.h" #include diff --git a/Modules/Annotation/src/mitkLayoutAnnotationRenderer.cpp b/Modules/Annotation/src/mitkLayoutAnnotationRenderer.cpp index a842e5706f8..caa841edb9b 100644 --- a/Modules/Annotation/src/mitkLayoutAnnotationRenderer.cpp +++ b/Modules/Annotation/src/mitkLayoutAnnotationRenderer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLayoutAnnotationRenderer.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Annotation/src/mitkLogoAnnotation.cpp b/Modules/Annotation/src/mitkLogoAnnotation.cpp index 13e615ec881..aa8b5f04371 100644 --- a/Modules/Annotation/src/mitkLogoAnnotation.cpp +++ b/Modules/Annotation/src/mitkLogoAnnotation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLogoAnnotation.h" #include diff --git a/Modules/Annotation/src/mitkManualPlacementAnnotationRenderer.cpp b/Modules/Annotation/src/mitkManualPlacementAnnotationRenderer.cpp index 14926d0e7dd..eaa7fc36335 100644 --- a/Modules/Annotation/src/mitkManualPlacementAnnotationRenderer.cpp +++ b/Modules/Annotation/src/mitkManualPlacementAnnotationRenderer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkManualPlacementAnnotationRenderer.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Annotation/src/mitkScaleLegendAnnotation.cpp b/Modules/Annotation/src/mitkScaleLegendAnnotation.cpp index 9e4926da1d5..d07d3dfb935 100644 --- a/Modules/Annotation/src/mitkScaleLegendAnnotation.cpp +++ b/Modules/Annotation/src/mitkScaleLegendAnnotation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkScaleLegendAnnotation.h" #include diff --git a/Modules/Annotation/src/mitkTextAnnotation2D.cpp b/Modules/Annotation/src/mitkTextAnnotation2D.cpp index c7d9107b58e..24fab057330 100644 --- a/Modules/Annotation/src/mitkTextAnnotation2D.cpp +++ b/Modules/Annotation/src/mitkTextAnnotation2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTextAnnotation2D.h" #include "vtkUnicodeString.h" diff --git a/Modules/Annotation/src/mitkTextAnnotation3D.cpp b/Modules/Annotation/src/mitkTextAnnotation3D.cpp index 1f4e5717661..8cfd20f40e7 100644 --- a/Modules/Annotation/src/mitkTextAnnotation3D.cpp +++ b/Modules/Annotation/src/mitkTextAnnotation3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTextAnnotation3D.h" #include diff --git a/Modules/Annotation/src/mitkVtkAnnotation.cpp b/Modules/Annotation/src/mitkVtkAnnotation.cpp index 07b7ce68ea4..13bcfa94b5e 100644 --- a/Modules/Annotation/src/mitkVtkAnnotation.cpp +++ b/Modules/Annotation/src/mitkVtkAnnotation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkAnnotation.h" #include diff --git a/Modules/Annotation/src/mitkVtkAnnotation2D.cpp b/Modules/Annotation/src/mitkVtkAnnotation2D.cpp index ebbdc2b12e8..5e5907e6653 100644 --- a/Modules/Annotation/src/mitkVtkAnnotation2D.cpp +++ b/Modules/Annotation/src/mitkVtkAnnotation2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkAnnotation2D.h" #include diff --git a/Modules/Annotation/src/mitkVtkAnnotation3D.cpp b/Modules/Annotation/src/mitkVtkAnnotation3D.cpp index d6fc4d25a2e..a46b124a95a 100644 --- a/Modules/Annotation/src/mitkVtkAnnotation3D.cpp +++ b/Modules/Annotation/src/mitkVtkAnnotation3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkAnnotation3D.h" diff --git a/Modules/Annotation/src/mitkVtkLogoRepresentation.cxx b/Modules/Annotation/src/mitkVtkLogoRepresentation.cxx index ad4e2a26397..89f60e89e9c 100644 --- a/Modules/Annotation/src/mitkVtkLogoRepresentation.cxx +++ b/Modules/Annotation/src/mitkVtkLogoRepresentation.cxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkVtkLogoRepresentation.h" #include "vtkActor2D.h" diff --git a/Modules/Annotation/test/mitkAnnotationTest.cpp b/Modules/Annotation/test/mitkAnnotationTest.cpp index d59b7e22964..b2e19cc085c 100644 --- a/Modules/Annotation/test/mitkAnnotationTest.cpp +++ b/Modules/Annotation/test/mitkAnnotationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/Annotation/test/mitkColorBarAnnotationTest.cpp b/Modules/Annotation/test/mitkColorBarAnnotationTest.cpp index 7b96b28f4c7..1f5bd5812c1 100644 --- a/Modules/Annotation/test/mitkColorBarAnnotationTest.cpp +++ b/Modules/Annotation/test/mitkColorBarAnnotationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Annotation/test/mitkLabelAnnotation3DTest.cpp b/Modules/Annotation/test/mitkLabelAnnotation3DTest.cpp index 8baaa7f733d..2da4bcb4285 100644 --- a/Modules/Annotation/test/mitkLabelAnnotation3DTest.cpp +++ b/Modules/Annotation/test/mitkLabelAnnotation3DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Annotation/test/mitkLayoutAnnotationRendererTest.cpp b/Modules/Annotation/test/mitkLayoutAnnotationRendererTest.cpp index 6ea79aef940..642eaa51a59 100644 --- a/Modules/Annotation/test/mitkLayoutAnnotationRendererTest.cpp +++ b/Modules/Annotation/test/mitkLayoutAnnotationRendererTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Annotation/test/mitkLogoAnnotationTest.cpp b/Modules/Annotation/test/mitkLogoAnnotationTest.cpp index 9c6bd4bbc1e..a888d4f9e52 100644 --- a/Modules/Annotation/test/mitkLogoAnnotationTest.cpp +++ b/Modules/Annotation/test/mitkLogoAnnotationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Annotation/test/mitkManualPlacementAnnotationRendererTest.cpp b/Modules/Annotation/test/mitkManualPlacementAnnotationRendererTest.cpp index 3bf5873edbc..fb2c9c40847 100644 --- a/Modules/Annotation/test/mitkManualPlacementAnnotationRendererTest.cpp +++ b/Modules/Annotation/test/mitkManualPlacementAnnotationRendererTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Annotation/test/mitkScaleLegendAnnotationTest.cpp b/Modules/Annotation/test/mitkScaleLegendAnnotationTest.cpp index 160c6996c4c..5b28018ee4c 100644 --- a/Modules/Annotation/test/mitkScaleLegendAnnotationTest.cpp +++ b/Modules/Annotation/test/mitkScaleLegendAnnotationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Annotation/test/mitkTextAnnotation2DTest.cpp b/Modules/Annotation/test/mitkTextAnnotation2DTest.cpp index 4b1b8a8fb77..508966b0e65 100644 --- a/Modules/Annotation/test/mitkTextAnnotation2DTest.cpp +++ b/Modules/Annotation/test/mitkTextAnnotation2DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Annotation/test/mitkTextAnnotation3DTest.cpp b/Modules/Annotation/test/mitkTextAnnotation3DTest.cpp index 4dddcc4807c..4a1419025aa 100644 --- a/Modules/Annotation/test/mitkTextAnnotation3DTest.cpp +++ b/Modules/Annotation/test/mitkTextAnnotation3DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/AppUtil/include/QmitkSafeApplication.h b/Modules/AppUtil/include/QmitkSafeApplication.h index fb59a49183f..466eff34d1e 100644 --- a/Modules/AppUtil/include/QmitkSafeApplication.h +++ b/Modules/AppUtil/include/QmitkSafeApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSAFEAPPLICATION_H #define QMITKSAFEAPPLICATION_H diff --git a/Modules/AppUtil/include/QmitkSingleApplication.h b/Modules/AppUtil/include/QmitkSingleApplication.h index 9879eab2aca..d96148c259e 100644 --- a/Modules/AppUtil/include/QmitkSingleApplication.h +++ b/Modules/AppUtil/include/QmitkSingleApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSINGLEAPPLICATION_H #define QMITKSINGLEAPPLICATION_H diff --git a/Modules/AppUtil/include/mitkBaseApplication.h b/Modules/AppUtil/include/mitkBaseApplication.h index 080c20142b7..e1a36b1964d 100644 --- a/Modules/AppUtil/include/mitkBaseApplication.h +++ b/Modules/AppUtil/include/mitkBaseApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBaseApplication_h #define mitkBaseApplication_h diff --git a/Modules/AppUtil/src/QmitkSafeApplication.cpp b/Modules/AppUtil/src/QmitkSafeApplication.cpp index 54367892f15..c84ff97eb1c 100644 --- a/Modules/AppUtil/src/QmitkSafeApplication.cpp +++ b/Modules/AppUtil/src/QmitkSafeApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSafeApplication.h" diff --git a/Modules/AppUtil/src/QmitkSafeNotify.h b/Modules/AppUtil/src/QmitkSafeNotify.h index 55ee4d34b56..990a2354e39 100644 --- a/Modules/AppUtil/src/QmitkSafeNotify.h +++ b/Modules/AppUtil/src/QmitkSafeNotify.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSAFENOTIFY_H #define QMITKSAFENOTIFY_H diff --git a/Modules/AppUtil/src/QmitkSingleApplication.cpp b/Modules/AppUtil/src/QmitkSingleApplication.cpp index 57a1beb5914..4f1f2dafd3d 100644 --- a/Modules/AppUtil/src/QmitkSingleApplication.cpp +++ b/Modules/AppUtil/src/QmitkSingleApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSingleApplication.h" #include "QmitkSafeNotify.h" diff --git a/Modules/AppUtil/src/mitkBaseApplication.cpp b/Modules/AppUtil/src/mitkBaseApplication.cpp index 15ad04cbeb8..316bd28185e 100644 --- a/Modules/AppUtil/src/mitkBaseApplication.cpp +++ b/Modules/AppUtil/src/mitkBaseApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/AppUtil/src/mitkProvisioningInfo.cpp b/Modules/AppUtil/src/mitkProvisioningInfo.cpp index f74f9e10247..a781c173bb5 100644 --- a/Modules/AppUtil/src/mitkProvisioningInfo.cpp +++ b/Modules/AppUtil/src/mitkProvisioningInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProvisioningInfo.h" diff --git a/Modules/AppUtil/src/mitkProvisioningInfo.h b/Modules/AppUtil/src/mitkProvisioningInfo.h index 9d0c935ada1..2c9be791bd7 100644 --- a/Modules/AppUtil/src/mitkProvisioningInfo.h +++ b/Modules/AppUtil/src/mitkProvisioningInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPROVISIONINGINFO_H #define MITKPROVISIONINGINFO_H diff --git a/Modules/BasicImageProcessing/MiniApps/FileConverter.cpp b/Modules/BasicImageProcessing/MiniApps/FileConverter.cpp index 089cbc5c935..009c67c1e15 100644 --- a/Modules/BasicImageProcessing/MiniApps/FileConverter.cpp +++ b/Modules/BasicImageProcessing/MiniApps/FileConverter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -31,7 +27,7 @@ int main(int argc, char* argv[]) parser.setTitle("File Converter"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/ForwardWavelet.cpp b/Modules/BasicImageProcessing/MiniApps/ForwardWavelet.cpp index 2ede40cb770..630dfac5846 100644 --- a/Modules/BasicImageProcessing/MiniApps/ForwardWavelet.cpp +++ b/Modules/BasicImageProcessing/MiniApps/ForwardWavelet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkCommandLineParser.h" @@ -27,7 +23,7 @@ int main(int argc, char* argv[]) parser.setTitle("Multi-Resolution Pyramid"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/ImageAndValueArithmetic.cpp b/Modules/BasicImageProcessing/MiniApps/ImageAndValueArithmetic.cpp index 2cc01e421d9..4bafb6a60f4 100644 --- a/Modules/BasicImageProcessing/MiniApps/ImageAndValueArithmetic.cpp +++ b/Modules/BasicImageProcessing/MiniApps/ImageAndValueArithmetic.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -44,7 +40,7 @@ int main(int argc, char* argv[]) parser.setTitle("File Converter"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/ImageTypeConverter.cpp b/Modules/BasicImageProcessing/MiniApps/ImageTypeConverter.cpp index 40126f6ea51..616c81dc850 100644 --- a/Modules/BasicImageProcessing/MiniApps/ImageTypeConverter.cpp +++ b/Modules/BasicImageProcessing/MiniApps/ImageTypeConverter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommandLineParser.h" #include "mitkIOUtil.h" @@ -50,7 +46,7 @@ int main(int argc, char* argv[]) parser.setTitle("Image Type Converter"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/LaplacianOfGaussian.cpp b/Modules/BasicImageProcessing/MiniApps/LaplacianOfGaussian.cpp index febe74d880d..9b29f1d1b9a 100644 --- a/Modules/BasicImageProcessing/MiniApps/LaplacianOfGaussian.cpp +++ b/Modules/BasicImageProcessing/MiniApps/LaplacianOfGaussian.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkCommandLineParser.h" @@ -42,7 +38,7 @@ int main(int argc, char* argv[]) parser.setTitle("Laplacian of Gaussian"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/MaskOutlierFiltering.cpp b/Modules/BasicImageProcessing/MiniApps/MaskOutlierFiltering.cpp index 38bb872073a..e0e2c7f652b 100644 --- a/Modules/BasicImageProcessing/MiniApps/MaskOutlierFiltering.cpp +++ b/Modules/BasicImageProcessing/MiniApps/MaskOutlierFiltering.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -29,7 +25,7 @@ int main(int argc, char* argv[]) parser.setTitle("Mask Outlier filtering"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/MaskRangeBasedFiltering.cpp b/Modules/BasicImageProcessing/MiniApps/MaskRangeBasedFiltering.cpp index 8e1d22e2a83..c01f3ea5580 100644 --- a/Modules/BasicImageProcessing/MiniApps/MaskRangeBasedFiltering.cpp +++ b/Modules/BasicImageProcessing/MiniApps/MaskRangeBasedFiltering.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkCommandLineParser.h" @@ -28,7 +24,7 @@ int main(int argc, char* argv[]) parser.setTitle("Mask Outlier filtering"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/MultiResolutionPyramid.cpp b/Modules/BasicImageProcessing/MiniApps/MultiResolutionPyramid.cpp index 863f51d3c88..92c2662d937 100644 --- a/Modules/BasicImageProcessing/MiniApps/MultiResolutionPyramid.cpp +++ b/Modules/BasicImageProcessing/MiniApps/MultiResolutionPyramid.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkCommandLineParser.h" @@ -42,7 +38,7 @@ int main(int argc, char* argv[]) parser.setTitle("Multi-Resolution Pyramid"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/ResampleImage.cpp b/Modules/BasicImageProcessing/MiniApps/ResampleImage.cpp index 710147e5f5f..6ed74a0b341 100644 --- a/Modules/BasicImageProcessing/MiniApps/ResampleImage.cpp +++ b/Modules/BasicImageProcessing/MiniApps/ResampleImage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkCommandLineParser.h" @@ -42,7 +38,7 @@ int main(int argc, char* argv[]) parser.setTitle("Mask Outlier filtering"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/ResampleMask.cpp b/Modules/BasicImageProcessing/MiniApps/ResampleMask.cpp index 714c6f34760..4e6a5b7b40a 100644 --- a/Modules/BasicImageProcessing/MiniApps/ResampleMask.cpp +++ b/Modules/BasicImageProcessing/MiniApps/ResampleMask.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkCommandLineParser.h" @@ -27,7 +23,7 @@ int main(int argc, char* argv[]) parser.setTitle("Mask Outlier filtering"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/SingleImageArithmetic.cpp b/Modules/BasicImageProcessing/MiniApps/SingleImageArithmetic.cpp index 72a916b5c27..bb02c79f02c 100644 --- a/Modules/BasicImageProcessing/MiniApps/SingleImageArithmetic.cpp +++ b/Modules/BasicImageProcessing/MiniApps/SingleImageArithmetic.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -44,7 +40,7 @@ int main(int argc, char* argv[]) parser.setTitle("File Converter"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/MiniApps/TwoImageArithmetic.cpp b/Modules/BasicImageProcessing/MiniApps/TwoImageArithmetic.cpp index 80f9a8735f4..b89ab5309b9 100644 --- a/Modules/BasicImageProcessing/MiniApps/TwoImageArithmetic.cpp +++ b/Modules/BasicImageProcessing/MiniApps/TwoImageArithmetic.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -44,7 +40,7 @@ int main(int argc, char* argv[]) parser.setTitle("File Converter"); parser.setCategory("Basic Image Processing"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/BasicImageProcessing/include/mitkArithmeticOperation.h b/Modules/BasicImageProcessing/include/mitkArithmeticOperation.h index 7b75ebbd8a0..c8f93daadd3 100644 --- a/Modules/BasicImageProcessing/include/mitkArithmeticOperation.h +++ b/Modules/BasicImageProcessing/include/mitkArithmeticOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkArithmeticOperation_h #define mitkArithmeticOperation_h @@ -101,4 +97,4 @@ namespace mitk } -#endif // mitkArithmeticOperation_h \ No newline at end of file +#endif // mitkArithmeticOperation_h diff --git a/Modules/BasicImageProcessing/include/mitkMaskCleaningOperation.h b/Modules/BasicImageProcessing/include/mitkMaskCleaningOperation.h index caee9551840..a483146e705 100644 --- a/Modules/BasicImageProcessing/include/mitkMaskCleaningOperation.h +++ b/Modules/BasicImageProcessing/include/mitkMaskCleaningOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMaskClearningOperation_h #define mitkMaskClearningOperation_h @@ -59,4 +55,4 @@ namespace mitk } -#endif // mitkMaskClearningOperation_h \ No newline at end of file +#endif // mitkMaskClearningOperation_h diff --git a/Modules/BasicImageProcessing/include/mitkTransformationOperation.h b/Modules/BasicImageProcessing/include/mitkTransformationOperation.h index ffdf369bde2..bf445e93380 100644 --- a/Modules/BasicImageProcessing/include/mitkTransformationOperation.h +++ b/Modules/BasicImageProcessing/include/mitkTransformationOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkArithmeticOperation_h #define mitkArithmeticOperation_h @@ -64,4 +60,4 @@ namespace mitk } -#endif // mitkArithmeticOperation_h \ No newline at end of file +#endif // mitkArithmeticOperation_h diff --git a/Modules/BasicImageProcessing/src/mitkArithmeticOperation.cpp b/Modules/BasicImageProcessing/src/mitkArithmeticOperation.cpp index 95ce7d1bc8d..225ce572533 100644 --- a/Modules/BasicImageProcessing/src/mitkArithmeticOperation.cpp +++ b/Modules/BasicImageProcessing/src/mitkArithmeticOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkArithmeticOperation.h" @@ -558,4 +554,4 @@ void mitk::NonStaticArithmeticOperation::ExecuteTwoImageFilterWithFunctor(Image1 filter->Update(); CastToMitkImage(filter->GetOutput(), m_ResultImage); } -} \ No newline at end of file +} diff --git a/Modules/BasicImageProcessing/src/mitkMaskCleaningOperation.cpp b/Modules/BasicImageProcessing/src/mitkMaskCleaningOperation.cpp index ce6d2bb4b21..f5fa95fd279 100644 --- a/Modules/BasicImageProcessing/src/mitkMaskCleaningOperation.cpp +++ b/Modules/BasicImageProcessing/src/mitkMaskCleaningOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMaskCleaningOperation.h" @@ -138,4 +134,4 @@ mitk::Image::Pointer mitk::MaskCleaningOperation::MaskOutlierFiltering(Image::Po AccessByItk_n(image, CalculateMeanAndStd, (mask, mean, std)); return MaskCleaningOperation::RangeBasedMasking(image, mask, true, mean - 3 * std, true, mean + 3 * std); -} \ No newline at end of file +} diff --git a/Modules/BasicImageProcessing/src/mitkTransformationOperation.cpp b/Modules/BasicImageProcessing/src/mitkTransformationOperation.cpp index 0f0c3026346..323c74bc00c 100644 --- a/Modules/BasicImageProcessing/src/mitkTransformationOperation.cpp +++ b/Modules/BasicImageProcessing/src/mitkTransformationOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTransformationOperation.h" diff --git a/Modules/BiophotonicsHardware/SpectroCam/mitkSpectroCamController.cpp b/Modules/BiophotonicsHardware/SpectroCam/mitkSpectroCamController.cpp index f073d00fc64..96360e0b5f4 100644 --- a/Modules/BiophotonicsHardware/SpectroCam/mitkSpectroCamController.cpp +++ b/Modules/BiophotonicsHardware/SpectroCam/mitkSpectroCamController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSpectroCamController.h" #include "mitkLogMacros.h" #include @@ -424,7 +420,7 @@ static void DisplayCameraStream(SpectroCamImage image) // TODO SW: probably we can get around this memcopy by simply setting data pointer? Not sure. cv::Mat data = cv::Mat( image.m_pAcqImage->iSizeY, image.m_pAcqImage->iSizeX, CV_16U); - memcpy( data.datastart , image.m_pAcqImage->pImageBuffer , image.m_pAcqImage->iImageSize); //Copy Image from JAI-Format to OCV´s IplImage + memcpy( data.datastart , image.m_pAcqImage->pImageBuffer , image.m_pAcqImage->iImageSize); //Copy Image from JAI-Format to OCV´s IplImage //============= From opencv to mitk::Image (VectorImage) diff --git a/Modules/BiophotonicsHardware/SpectroCam/mitkSpectroCamController.h b/Modules/BiophotonicsHardware/SpectroCam/mitkSpectroCamController.h index 80198f6d3a1..3a755e08d4d 100644 --- a/Modules/BiophotonicsHardware/SpectroCam/mitkSpectroCamController.h +++ b/Modules/BiophotonicsHardware/SpectroCam/mitkSpectroCamController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSpectroCamController_h #define mitkSpectroCamController_h diff --git a/Modules/BoundingShape/include/mitkBoundingShapeCropper.h b/Modules/BoundingShape/include/mitkBoundingShapeCropper.h index f8b7d7ff24e..aea59e9b9f6 100644 --- a/Modules/BoundingShape/include/mitkBoundingShapeCropper.h +++ b/Modules/BoundingShape/include/mitkBoundingShapeCropper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BOUNDINGSHAPECROPPER_H #define BOUNDINGSHAPECROPPER_H diff --git a/Modules/BoundingShape/include/mitkBoundingShapeInteractor.h b/Modules/BoundingShape/include/mitkBoundingShapeInteractor.h index 2c5a01c6317..eababab05df 100644 --- a/Modules/BoundingShape/include/mitkBoundingShapeInteractor.h +++ b/Modules/BoundingShape/include/mitkBoundingShapeInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBoundingShapeInteractor_h #define mitkBoundingShapeInteractor_h diff --git a/Modules/BoundingShape/include/mitkBoundingShapeObjectFactory.h b/Modules/BoundingShape/include/mitkBoundingShapeObjectFactory.h index c746eb5a269..d9ed224c458 100644 --- a/Modules/BoundingShape/include/mitkBoundingShapeObjectFactory.h +++ b/Modules/BoundingShape/include/mitkBoundingShapeObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBoundingShapeObjectFactory_h #define mitkBoundingShapeObjectFactory_h diff --git a/Modules/BoundingShape/include/mitkBoundingShapeVtkMapper2D.h b/Modules/BoundingShape/include/mitkBoundingShapeVtkMapper2D.h index 9dfaa5f2369..fd4a687dfd7 100644 --- a/Modules/BoundingShape/include/mitkBoundingShapeVtkMapper2D.h +++ b/Modules/BoundingShape/include/mitkBoundingShapeVtkMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBoundingShapeVtkMapper2D_h #define mitkBoundingShapeVtkMapper2D_h diff --git a/Modules/BoundingShape/include/mitkBoundingShapeVtkMapper3D.h b/Modules/BoundingShape/include/mitkBoundingShapeVtkMapper3D.h index 7d5f98f0c43..955b4bd0f89 100644 --- a/Modules/BoundingShape/include/mitkBoundingShapeVtkMapper3D.h +++ b/Modules/BoundingShape/include/mitkBoundingShapeVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBoundingShapeVtkMapper3D_h #define mitkBoundingShapeVtkMapper3D_h diff --git a/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeCropper.cpp b/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeCropper.cpp index d99e2c3b336..9228f7f78a6 100644 --- a/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeCropper.cpp +++ b/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeCropper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBoundingShapeCropper.h" #include "mitkGeometry3D.h" diff --git a/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeObjectFactory.cpp b/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeObjectFactory.cpp index c0a71c80270..a1ddf7cb39d 100644 --- a/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeObjectFactory.cpp +++ b/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBoundingShapeObjectFactory.h" #include "mitkBoundingShapeVtkMapper2D.h" diff --git a/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeUtil.cpp b/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeUtil.cpp index e5aafa8cfd0..f3b18bb3c91 100644 --- a/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeUtil.cpp +++ b/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBoundingShapeUtil.h" #include "mitkGeometry3D.h" @@ -214,4 +210,4 @@ std::vector mitk::GetHandleIndices(int index) } return faceIndices; -} \ No newline at end of file +} diff --git a/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeUtil.h b/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeUtil.h index a6eae67618c..e0b04f2ce7c 100644 --- a/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeUtil.h +++ b/Modules/BoundingShape/src/DataManagement/mitkBoundingShapeUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBoundingShapeUtil_h #define mitkBoundingShapeUtil_h diff --git a/Modules/BoundingShape/src/Interactions/mitkBoundingShapeInteractor.cpp b/Modules/BoundingShape/src/Interactions/mitkBoundingShapeInteractor.cpp index bde8116d472..51bd761e0ac 100644 --- a/Modules/BoundingShape/src/Interactions/mitkBoundingShapeInteractor.cpp +++ b/Modules/BoundingShape/src/Interactions/mitkBoundingShapeInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "../DataManagement/mitkBoundingShapeUtil.h" #include diff --git a/Modules/BoundingShape/src/Rendering/mitkBoundingShapeVtkMapper2D.cpp b/Modules/BoundingShape/src/Rendering/mitkBoundingShapeVtkMapper2D.cpp index d90db09654d..4d6afbb5a33 100644 --- a/Modules/BoundingShape/src/Rendering/mitkBoundingShapeVtkMapper2D.cpp +++ b/Modules/BoundingShape/src/Rendering/mitkBoundingShapeVtkMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for detailocalStorage. - -===================================================================*/ +============================================================================*/ #include "../DataManagement/mitkBoundingShapeUtil.h" #include diff --git a/Modules/BoundingShape/src/Rendering/mitkBoundingShapeVtkMapper3D.cpp b/Modules/BoundingShape/src/Rendering/mitkBoundingShapeVtkMapper3D.cpp index a7c80e0e847..75d303f210a 100644 --- a/Modules/BoundingShape/src/Rendering/mitkBoundingShapeVtkMapper3D.cpp +++ b/Modules/BoundingShape/src/Rendering/mitkBoundingShapeVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBoundingShapeVtkMapper3D.h" #include "../DataManagement/mitkBoundingShapeUtil.h" diff --git a/Modules/CEST/autoload/IO/mitkCESTDICOMReaderService.cpp b/Modules/CEST/autoload/IO/mitkCESTDICOMReaderService.cpp index d4b4298683f..08dbbda1d57 100644 --- a/Modules/CEST/autoload/IO/mitkCESTDICOMReaderService.cpp +++ b/Modules/CEST/autoload/IO/mitkCESTDICOMReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCESTDICOMReaderService.h" diff --git a/Modules/CEST/autoload/IO/mitkCESTDICOMReaderService.h b/Modules/CEST/autoload/IO/mitkCESTDICOMReaderService.h index 76363b8bfb4..cdd4022a922 100644 --- a/Modules/CEST/autoload/IO/mitkCESTDICOMReaderService.h +++ b/Modules/CEST/autoload/IO/mitkCESTDICOMReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCESTDICOMReaderService_H #define MITKCESTDICOMReaderService_H diff --git a/Modules/CEST/autoload/IO/mitkCESTIOActivator.cpp b/Modules/CEST/autoload/IO/mitkCESTIOActivator.cpp index 64f4fb4a1cf..008c80bf88c 100644 --- a/Modules/CEST/autoload/IO/mitkCESTIOActivator.cpp +++ b/Modules/CEST/autoload/IO/mitkCESTIOActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCESTIOActivator.h" diff --git a/Modules/CEST/autoload/IO/mitkCESTIOActivator.h b/Modules/CEST/autoload/IO/mitkCESTIOActivator.h index 4a746242e04..87f2aca5ff8 100644 --- a/Modules/CEST/autoload/IO/mitkCESTIOActivator.h +++ b/Modules/CEST/autoload/IO/mitkCESTIOActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCESTIOActivator_H #define MITKCESTIOActivator_H diff --git a/Modules/CEST/autoload/IO/mitkCESTIOMimeTypes.cpp b/Modules/CEST/autoload/IO/mitkCESTIOMimeTypes.cpp index 440368d5b0c..28b696d7ea3 100644 --- a/Modules/CEST/autoload/IO/mitkCESTIOMimeTypes.cpp +++ b/Modules/CEST/autoload/IO/mitkCESTIOMimeTypes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCESTIOMimeTypes.h" #include "mitkIOMimeTypes.h" diff --git a/Modules/CEST/autoload/IO/mitkCESTIOMimeTypes.h b/Modules/CEST/autoload/IO/mitkCESTIOMimeTypes.h index c97c99aae1c..e94a72adf82 100644 --- a/Modules/CEST/autoload/IO/mitkCESTIOMimeTypes.h +++ b/Modules/CEST/autoload/IO/mitkCESTIOMimeTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCESTIOMIMETYPES_H #define MITKCESTIOMIMETYPES_H diff --git a/Modules/CEST/include/mitkCESTImageDetectionHelper.h b/Modules/CEST/include/mitkCESTImageDetectionHelper.h index c97d3b6815c..71c976fc1a0 100644 --- a/Modules/CEST/include/mitkCESTImageDetectionHelper.h +++ b/Modules/CEST/include/mitkCESTImageDetectionHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkCESTImageDetectionHelper_h #define __mitkCESTImageDetectionHelper_h diff --git a/Modules/CEST/include/mitkCESTImageNormalizationFilter.h b/Modules/CEST/include/mitkCESTImageNormalizationFilter.h index b681a6c08b4..3814a174f13 100644 --- a/Modules/CEST/include/mitkCESTImageNormalizationFilter.h +++ b/Modules/CEST/include/mitkCESTImageNormalizationFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkCESTImageNormalizationFilter_h #define __mitkCESTImageNormalizationFilter_h diff --git a/Modules/CEST/include/mitkCustomTagParser.h b/Modules/CEST/include/mitkCustomTagParser.h index 06911278540..9798b975d3c 100644 --- a/Modules/CEST/include/mitkCustomTagParser.h +++ b/Modules/CEST/include/mitkCustomTagParser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCUSTOMTAGPARSER_H #define MITKCUSTOMTAGPARSER_H @@ -107,7 +103,7 @@ namespace mitk std::string GetRevisionAppropriateJSONString(std::string revisionString); void GetClosestLowerRevision(std::string revisionString); std::string GetClosestLowerRevision(std::string revisionString, std::vector availableRevisionsVector); - + /// Decides whether or not the image is likely to be a T1Map, if not it is assumed to be a CEST sequence bool IsT1Sequence(std::string preparationType, std::string recoveryMode, std::string spoilingType, std::string revisionString); diff --git a/Modules/CEST/src/mitkCESTImageDetectionHelper.cpp b/Modules/CEST/src/mitkCESTImageDetectionHelper.cpp index 9df6530d8c5..b6530290974 100644 --- a/Modules/CEST/src/mitkCESTImageDetectionHelper.cpp +++ b/Modules/CEST/src/mitkCESTImageDetectionHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCESTImageDetectionHelper.h" @@ -26,7 +22,7 @@ bool mitk::IsAnyCESTImage(const Image* cestImage) if (!cestImage) return false; auto prop = cestImage->GetProperty(mitk::CEST_PROPERTY_NAME_TOTALSCANTIME().c_str()); - + return prop.IsNotNull(); }; diff --git a/Modules/CEST/src/mitkCESTImageNormalizationFilter.cpp b/Modules/CEST/src/mitkCESTImageNormalizationFilter.cpp index 7377fa61898..ac4f25cb882 100644 --- a/Modules/CEST/src/mitkCESTImageNormalizationFilter.cpp +++ b/Modules/CEST/src/mitkCESTImageNormalizationFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCESTImageNormalizationFilter.h" diff --git a/Modules/CEST/src/mitkCustomTagParser.cpp b/Modules/CEST/src/mitkCustomTagParser.cpp index dd927501c44..701dd425496 100644 --- a/Modules/CEST/src/mitkCustomTagParser.cpp +++ b/Modules/CEST/src/mitkCustomTagParser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCustomTagParser.h" diff --git a/Modules/CEST/test/mitkCESTDICOMReaderServiceTest.cpp b/Modules/CEST/test/mitkCESTDICOMReaderServiceTest.cpp index 74204eb069e..9f342f147f6 100644 --- a/Modules/CEST/test/mitkCESTDICOMReaderServiceTest.cpp +++ b/Modules/CEST/test/mitkCESTDICOMReaderServiceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Modules/CEST/test/mitkCustomTagParserTest.cpp b/Modules/CEST/test/mitkCustomTagParserTest.cpp index 947512821ec..9aa1a04dba2 100644 --- a/Modules/CEST/test/mitkCustomTagParserTest.cpp +++ b/Modules/CEST/test/mitkCustomTagParserTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" @@ -192,7 +188,7 @@ class mitkCustomTagParserTestSuite : public mitk::TestFixture // we assume the test library will be in the same location as the MitkCEST library on windows // on linux the test driver should have a relative path of ../bin/ #ifdef _WIN32 - std::string dirname = m_PathToModule + "/CESTRevisionMapping"; + std::string dirname = m_PathToModule + "/CESTRevisionMapping"; #else std::string dirname = m_PathToModule + "/../lib/CESTRevisionMapping"; #endif diff --git a/Modules/CameraCalibration/Testing/mitkCameraIntrinsicsTest.cpp b/Modules/CameraCalibration/Testing/mitkCameraIntrinsicsTest.cpp index 030e65e46b5..4dc509f85e9 100644 --- a/Modules/CameraCalibration/Testing/mitkCameraIntrinsicsTest.cpp +++ b/Modules/CameraCalibration/Testing/mitkCameraIntrinsicsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CameraCalibration/Testing/mitkTransformTest.cpp b/Modules/CameraCalibration/Testing/mitkTransformTest.cpp index ff5cbbd987d..2e264908771 100644 --- a/Modules/CameraCalibration/Testing/mitkTransformTest.cpp +++ b/Modules/CameraCalibration/Testing/mitkTransformTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CameraCalibration/mitkAlgorithm.h b/Modules/CameraCalibration/mitkAlgorithm.h index 901e0ef03f6..e4d047757c4 100644 --- a/Modules/CameraCalibration/mitkAlgorithm.h +++ b/Modules/CameraCalibration/mitkAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAlgorithm_h #define mitkAlgorithm_h diff --git a/Modules/CameraCalibration/mitkCameraIntrinsics.cpp b/Modules/CameraCalibration/mitkCameraIntrinsics.cpp index 24c8a0f63f3..cb81b0f60ba 100644 --- a/Modules/CameraCalibration/mitkCameraIntrinsics.cpp +++ b/Modules/CameraCalibration/mitkCameraIntrinsics.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCameraIntrinsics.h" #include diff --git a/Modules/CameraCalibration/mitkCameraIntrinsics.h b/Modules/CameraCalibration/mitkCameraIntrinsics.h index 45b96bfaa12..ea2eea8c55f 100644 --- a/Modules/CameraCalibration/mitkCameraIntrinsics.h +++ b/Modules/CameraCalibration/mitkCameraIntrinsics.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCameraIntrinsics_h diff --git a/Modules/CameraCalibration/mitkCameraIntrinsicsProperty.cpp b/Modules/CameraCalibration/mitkCameraIntrinsicsProperty.cpp index 2bb04c0df37..e6ac3712c07 100644 --- a/Modules/CameraCalibration/mitkCameraIntrinsicsProperty.cpp +++ b/Modules/CameraCalibration/mitkCameraIntrinsicsProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCameraIntrinsicsProperty.h" diff --git a/Modules/CameraCalibration/mitkCameraIntrinsicsProperty.h b/Modules/CameraCalibration/mitkCameraIntrinsicsProperty.h index fd92cff764f..955b31a5042 100644 --- a/Modules/CameraCalibration/mitkCameraIntrinsicsProperty.h +++ b/Modules/CameraCalibration/mitkCameraIntrinsicsProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCAMERAINTRINSICSPROPERTY_H #define MITKCAMERAINTRINSICSPROPERTY_H diff --git a/Modules/CameraCalibration/mitkCvMatCompare.h b/Modules/CameraCalibration/mitkCvMatCompare.h index 5cc89be3704..9259628397b 100644 --- a/Modules/CameraCalibration/mitkCvMatCompare.h +++ b/Modules/CameraCalibration/mitkCvMatCompare.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCvMatCompare_h #define mitkCvMatCompare_h diff --git a/Modules/CameraCalibration/mitkCvMatFromVnlMatrix.h b/Modules/CameraCalibration/mitkCvMatFromVnlMatrix.h index 758587915d3..b6c2688ec1f 100644 --- a/Modules/CameraCalibration/mitkCvMatFromVnlMatrix.h +++ b/Modules/CameraCalibration/mitkCvMatFromVnlMatrix.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCvMatFromVnlMatrix_h #define mitkCvMatFromVnlMatrix_h diff --git a/Modules/CameraCalibration/mitkCvMatFromVnlVector.h b/Modules/CameraCalibration/mitkCvMatFromVnlVector.h index 1d4c04a37fd..165ddb2bb2f 100644 --- a/Modules/CameraCalibration/mitkCvMatFromVnlVector.h +++ b/Modules/CameraCalibration/mitkCvMatFromVnlVector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCvMatFromVnlVector_h #define mitkCvMatFromVnlVector_h diff --git a/Modules/CameraCalibration/mitkEndoDebug.cpp b/Modules/CameraCalibration/mitkEndoDebug.cpp index 3971608c838..f86b018e706 100644 --- a/Modules/CameraCalibration/mitkEndoDebug.cpp +++ b/Modules/CameraCalibration/mitkEndoDebug.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkEndoDebug.h" #include #include diff --git a/Modules/CameraCalibration/mitkEndoDebug.h b/Modules/CameraCalibration/mitkEndoDebug.h index c15eff85da0..df5cfbfca14 100644 --- a/Modules/CameraCalibration/mitkEndoDebug.h +++ b/Modules/CameraCalibration/mitkEndoDebug.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkEndoDebug_h #define mitkEndoDebug_h diff --git a/Modules/CameraCalibration/mitkEndoDebugFromXmlFile.cpp b/Modules/CameraCalibration/mitkEndoDebugFromXmlFile.cpp index 3819725356f..a88a588b808 100644 --- a/Modules/CameraCalibration/mitkEndoDebugFromXmlFile.cpp +++ b/Modules/CameraCalibration/mitkEndoDebugFromXmlFile.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkEndoDebugFromXmlFile.h" #include diff --git a/Modules/CameraCalibration/mitkEndoDebugFromXmlFile.h b/Modules/CameraCalibration/mitkEndoDebugFromXmlFile.h index 57d398f31d8..3a1a79508b8 100644 --- a/Modules/CameraCalibration/mitkEndoDebugFromXmlFile.h +++ b/Modules/CameraCalibration/mitkEndoDebugFromXmlFile.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkEndoDebugFromXmlFile_h #define mitkEndoDebugFromXmlFile_h diff --git a/Modules/CameraCalibration/mitkEndoDebugToXmlFile.cpp b/Modules/CameraCalibration/mitkEndoDebugToXmlFile.cpp index d02aae85c26..8e0a52463c2 100644 --- a/Modules/CameraCalibration/mitkEndoDebugToXmlFile.cpp +++ b/Modules/CameraCalibration/mitkEndoDebugToXmlFile.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkEndoDebugToXmlFile.h" #include diff --git a/Modules/CameraCalibration/mitkEndoDebugToXmlFile.h b/Modules/CameraCalibration/mitkEndoDebugToXmlFile.h index 669311104d2..7cd64e9dd3a 100644 --- a/Modules/CameraCalibration/mitkEndoDebugToXmlFile.h +++ b/Modules/CameraCalibration/mitkEndoDebugToXmlFile.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkEndoDebugToXmlFile_h #define mitkEndoDebugToXmlFile_h diff --git a/Modules/CameraCalibration/mitkEndoMacros.h b/Modules/CameraCalibration/mitkEndoMacros.h index 707572b3e1d..a1e0dc5acf7 100644 --- a/Modules/CameraCalibration/mitkEndoMacros.h +++ b/Modules/CameraCalibration/mitkEndoMacros.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkEndoMacros_h #define mitkEndoMacros_h diff --git a/Modules/CameraCalibration/mitkEpsilon.h b/Modules/CameraCalibration/mitkEpsilon.h index 961f156b6c1..3cec73db8f4 100644 --- a/Modules/CameraCalibration/mitkEpsilon.h +++ b/Modules/CameraCalibration/mitkEpsilon.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkEpsilon_h #define mitkEpsilon_h diff --git a/Modules/CameraCalibration/mitkNavigationDataHandEyeCalibrationFilter.cpp b/Modules/CameraCalibration/mitkNavigationDataHandEyeCalibrationFilter.cpp index 700476882ec..9d12b1d38ba 100644 --- a/Modules/CameraCalibration/mitkNavigationDataHandEyeCalibrationFilter.cpp +++ b/Modules/CameraCalibration/mitkNavigationDataHandEyeCalibrationFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataHandEyeCalibrationFilter.h" #include "mitkDataStorage.h" diff --git a/Modules/CameraCalibration/mitkNavigationDataHandEyeCalibrationFilter.h b/Modules/CameraCalibration/mitkNavigationDataHandEyeCalibrationFilter.h index ba434b28303..0440f5ea298 100644 --- a/Modules/CameraCalibration/mitkNavigationDataHandEyeCalibrationFilter.h +++ b/Modules/CameraCalibration/mitkNavigationDataHandEyeCalibrationFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataHandEyeCalibrationFilter_H_HEADER_INCLUDED_ diff --git a/Modules/CameraCalibration/mitkObservable.h b/Modules/CameraCalibration/mitkObservable.h index 1bbb993df37..772561862c8 100644 --- a/Modules/CameraCalibration/mitkObservable.h +++ b/Modules/CameraCalibration/mitkObservable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkObservable_h #define mitkObservable_h diff --git a/Modules/CameraCalibration/mitkStringFromCvMat.h b/Modules/CameraCalibration/mitkStringFromCvMat.h index f0e0f132961..3a4b50fd06c 100644 --- a/Modules/CameraCalibration/mitkStringFromCvMat.h +++ b/Modules/CameraCalibration/mitkStringFromCvMat.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkStringFromCvMat_h #define mitkStringFromCvMat_h diff --git a/Modules/CameraCalibration/mitkTransform.cpp b/Modules/CameraCalibration/mitkTransform.cpp index ced605a2e97..d77d2d87fe3 100644 --- a/Modules/CameraCalibration/mitkTransform.cpp +++ b/Modules/CameraCalibration/mitkTransform.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTransform.h" #include #include diff --git a/Modules/CameraCalibration/mitkTransform.h b/Modules/CameraCalibration/mitkTransform.h index 9644e5a7182..233abbc5b2b 100644 --- a/Modules/CameraCalibration/mitkTransform.h +++ b/Modules/CameraCalibration/mitkTransform.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTRANSFORM_H #define MITKTRANSFORM_H diff --git a/Modules/CameraCalibration/mitkVnlMatrixFromCvMat.h b/Modules/CameraCalibration/mitkVnlMatrixFromCvMat.h index d8edca11caf..c668cc078e3 100644 --- a/Modules/CameraCalibration/mitkVnlMatrixFromCvMat.h +++ b/Modules/CameraCalibration/mitkVnlMatrixFromCvMat.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVnlMatrixFromCvMat_h #define mitkVnlMatrixFromCvMat_h diff --git a/Modules/CameraCalibration/mitkVnlVectorCaster.h b/Modules/CameraCalibration/mitkVnlVectorCaster.h index 2596dbc90cf..4ab3f4941cd 100644 --- a/Modules/CameraCalibration/mitkVnlVectorCaster.h +++ b/Modules/CameraCalibration/mitkVnlVectorCaster.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVnlVectorCaster_h #define mitkVnlVectorCaster_h diff --git a/Modules/CameraCalibration/mitkVnlVectorFixedCaster.h b/Modules/CameraCalibration/mitkVnlVectorFixedCaster.h index a56c3a728e0..455212ad333 100644 --- a/Modules/CameraCalibration/mitkVnlVectorFixedCaster.h +++ b/Modules/CameraCalibration/mitkVnlVectorFixedCaster.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVnlVectorFixedCaster_h #define mitkVnlVectorFixedCaster_h diff --git a/Modules/CameraCalibration/mitkVnlVectorFromCvMat.h b/Modules/CameraCalibration/mitkVnlVectorFromCvMat.h index d3dc42d464a..d894aa4e979 100644 --- a/Modules/CameraCalibration/mitkVnlVectorFromCvMat.h +++ b/Modules/CameraCalibration/mitkVnlVectorFromCvMat.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVnlVectorFromCvMat_h #define mitkVnlVectorFromCvMat_h diff --git a/Modules/CameraCalibration/mitkXMLSerializable.cpp b/Modules/CameraCalibration/mitkXMLSerializable.cpp index 5e2f57f2dcd..525f8456def 100644 --- a/Modules/CameraCalibration/mitkXMLSerializable.cpp +++ b/Modules/CameraCalibration/mitkXMLSerializable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkEndoDebug.h" #include "mitkEndoMacros.h" diff --git a/Modules/CameraCalibration/mitkXMLSerializable.h b/Modules/CameraCalibration/mitkXMLSerializable.h index dedff76027a..31dc61d3465 100644 --- a/Modules/CameraCalibration/mitkXMLSerializable.h +++ b/Modules/CameraCalibration/mitkXMLSerializable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKXMLSerializable_H #define MITKXMLSerializable_H diff --git a/Modules/Chart/Test/mitkChartExampleTest.cpp b/Modules/Chart/Test/mitkChartExampleTest.cpp index 7af602c786d..689362b0957 100644 --- a/Modules/Chart/Test/mitkChartExampleTest.cpp +++ b/Modules/Chart/Test/mitkChartExampleTest.cpp @@ -1,13 +1,14 @@ -/*=================================================================== +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. + +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. -See LICENSE.txt or http://www.mitk.org for details. -===================================================================*/ + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ // qt #include @@ -90,7 +91,7 @@ class mitkChartExampleTestSuite : public mitk::TestFixture void CheckData() { auto myDataOne = helper->GetDataOne(); - + auto xDataOne = myDataOne->GetXData(); auto yDataOne = myDataOne->GetYData(); auto labelOne = myDataOne->GetLabel(); diff --git a/Modules/Chart/include/QmitkChartData.h b/Modules/Chart/include/QmitkChartData.h index 726481bd859..ba2890b0563 100644 --- a/Modules/Chart/include/QmitkChartData.h +++ b/Modules/Chart/include/QmitkChartData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkC3Data_h #define QmitkC3Data_h diff --git a/Modules/Chart/include/QmitkChartWidget.h b/Modules/Chart/include/QmitkChartWidget.h index ed95e789e53..7d44a723b49 100644 --- a/Modules/Chart/include/QmitkChartWidget.h +++ b/Modules/Chart/include/QmitkChartWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkC3jsWidget_h #define QmitkC3jsWidget_h @@ -236,7 +232,7 @@ class MITKCHART_EXPORT QmitkChartWidget : public QWidget * \note If only error plus is provided, the error bars are symmetrical * \param label the name of the data that is also used as identifier. * \param errorPlus the error in positive direction - * \param errorMinus the error in negative direction. Same as error plus if omitted + * \param errorMinus the error in negative direction. Same as error plus if omitted */ void SetXErrorBars(const std::string &label, const std::vector &errorPlus, const std::vector& errorMinus = std::vector()); @@ -287,14 +283,14 @@ class MITKCHART_EXPORT QmitkChartWidget : public QWidget /*! * \brief Sets whether the subchart shall be shown. - * \details Changes the state of the current chart object. + * \details Changes the state of the current chart object. * \note Needs to be reloaded with Reload() to display changes. */ void SetShowSubchart(bool showSubChart); /*! * \brief Sets whether the error bars shall be shown. - * \details Changes the state of the current chart object. + * \details Changes the state of the current chart object. * \note Needs to be reloaded with Reload() to display changes. * \param showErrorBars if error bars are displayed or not. */ diff --git a/Modules/Chart/include/QmitkChartxyData.h b/Modules/Chart/include/QmitkChartxyData.h index ee19a2810b3..e934b9510aa 100644 --- a/Modules/Chart/include/QmitkChartxyData.h +++ b/Modules/Chart/include/QmitkChartxyData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkC3xyData_h #define QmitkC3xyData_h diff --git a/Modules/Chart/include/mitkChartExampleTestHelper.h b/Modules/Chart/include/mitkChartExampleTestHelper.h index faee3b5057c..aa11463aba2 100644 --- a/Modules/Chart/include/mitkChartExampleTestHelper.h +++ b/Modules/Chart/include/mitkChartExampleTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CHART_EXAMPLE_TEST_HELPER_H #define MITK_CHART_EXAMPLE_TEST_HELPER_H diff --git a/Modules/Chart/src/QmitkChartData.cpp b/Modules/Chart/src/QmitkChartData.cpp index 975a2cf157b..79206254e89 100644 --- a/Modules/Chart/src/QmitkChartData.cpp +++ b/Modules/Chart/src/QmitkChartData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -27,4 +23,4 @@ void QmitkChartData::SetAppearance(bool showSubChart, bool usePercentageInPieCha { m_ShowSubchart = showSubChart; m_UsePercentageInPieChart = usePercentageInPieChart; -} \ No newline at end of file +} diff --git a/Modules/Chart/src/QmitkChartWidget.cpp b/Modules/Chart/src/QmitkChartWidget.cpp index ef0c6ec19d9..6e18aa5e02b 100644 --- a/Modules/Chart/src/QmitkChartWidget.cpp +++ b/Modules/Chart/src/QmitkChartWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Chart/src/QmitkChartxyData.cpp b/Modules/Chart/src/QmitkChartxyData.cpp index 17d2755c389..3c2252d31f0 100644 --- a/Modules/Chart/src/QmitkChartxyData.cpp +++ b/Modules/Chart/src/QmitkChartxyData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Chart/src/mitkChartExampleTestHelper.cpp b/Modules/Chart/src/mitkChartExampleTestHelper.cpp index 8b8784e81b6..517766f712c 100644 --- a/Modules/Chart/src/mitkChartExampleTestHelper.cpp +++ b/Modules/Chart/src/mitkChartExampleTestHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkChartExampleTestHelper.h" diff --git a/Modules/Classification/CLCore/include/mitkAbstractClassifier.h b/Modules/Classification/CLCore/include/mitkAbstractClassifier.h index e61757fcb73..8233082aaa3 100644 --- a/Modules/Classification/CLCore/include/mitkAbstractClassifier.h +++ b/Modules/Classification/CLCore/include/mitkAbstractClassifier.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAbstractClassifier_h diff --git a/Modules/Classification/CLCore/include/mitkAbstractGlobalImageFeature.h b/Modules/Classification/CLCore/include/mitkAbstractGlobalImageFeature.h index 362dcd73bfc..6017dbba27b 100644 --- a/Modules/Classification/CLCore/include/mitkAbstractGlobalImageFeature.h +++ b/Modules/Classification/CLCore/include/mitkAbstractGlobalImageFeature.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAbstractGlobalImageFeature_h diff --git a/Modules/Classification/CLCore/include/mitkConfigFileReader.h b/Modules/Classification/CLCore/include/mitkConfigFileReader.h index eed237f4e08..3cad3a7b156 100644 --- a/Modules/Classification/CLCore/include/mitkConfigFileReader.h +++ b/Modules/Classification/CLCore/include/mitkConfigFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ConfigFileReader_h #define ConfigFileReader_h @@ -211,4 +207,4 @@ class ConfigFileReader } }; -#endif \ No newline at end of file +#endif diff --git a/Modules/Classification/CLCore/include/mitkConfigurationHolder.h b/Modules/Classification/CLCore/include/mitkConfigurationHolder.h index ab2126b6982..e53d5682b77 100644 --- a/Modules/Classification/CLCore/include/mitkConfigurationHolder.h +++ b/Modules/Classification/CLCore/include/mitkConfigurationHolder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkConfigurationHolder_h diff --git a/Modules/Classification/CLCore/include/mitkIntensityQuantifier.h b/Modules/Classification/CLCore/include/mitkIntensityQuantifier.h index ee7facfe7ce..d94494c598d 100644 --- a/Modules/Classification/CLCore/include/mitkIntensityQuantifier.h +++ b/Modules/Classification/CLCore/include/mitkIntensityQuantifier.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIntensityQuantifier_h diff --git a/Modules/Classification/CLCore/src/mitkAbstractClassifier.cpp b/Modules/Classification/CLCore/src/mitkAbstractClassifier.cpp index 94b4b0bce04..73214b7bd76 100644 --- a/Modules/Classification/CLCore/src/mitkAbstractClassifier.cpp +++ b/Modules/Classification/CLCore/src/mitkAbstractClassifier.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLCore/src/mitkAbstractGlobalImageFeature.cpp b/Modules/Classification/CLCore/src/mitkAbstractGlobalImageFeature.cpp index 5920b99ce2b..c689e7f6223 100644 --- a/Modules/Classification/CLCore/src/mitkAbstractGlobalImageFeature.cpp +++ b/Modules/Classification/CLCore/src/mitkAbstractGlobalImageFeature.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -403,4 +399,4 @@ mitk::AbstractGlobalImageFeature::FeatureListType mitk::AbstractGlobalImageFeatu std::copy(statMean.begin(), statMean.end(), std::back_inserter(result)); std::copy(statStd.begin(), statStd.end(), std::back_inserter(result)); return result; -} \ No newline at end of file +} diff --git a/Modules/Classification/CLCore/src/mitkConfigurationHolder.cpp b/Modules/Classification/CLCore/src/mitkConfigurationHolder.cpp index 01125855836..c7c0bcbadf9 100644 --- a/Modules/Classification/CLCore/src/mitkConfigurationHolder.cpp +++ b/Modules/Classification/CLCore/src/mitkConfigurationHolder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLCore/src/mitkIntensityQuantifier.cpp b/Modules/Classification/CLCore/src/mitkIntensityQuantifier.cpp index cbe0ec25360..194d3bf1755 100644 --- a/Modules/Classification/CLCore/src/mitkIntensityQuantifier.cpp +++ b/Modules/Classification/CLCore/src/mitkIntensityQuantifier.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLImportanceWeighting/include/mitkDistModels.h b/Modules/Classification/CLImportanceWeighting/include/mitkDistModels.h index 0d667fab673..60279d5a546 100644 --- a/Modules/Classification/CLImportanceWeighting/include/mitkDistModels.h +++ b/Modules/Classification/CLImportanceWeighting/include/mitkDistModels.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDistModels_h #define mitkDistModels_h @@ -38,4 +34,4 @@ namespace mitk }; } -#endif \ No newline at end of file +#endif diff --git a/Modules/Classification/CLImportanceWeighting/include/mitkGeneralizedLinearModel.h b/Modules/Classification/CLImportanceWeighting/include/mitkGeneralizedLinearModel.h index 57c153eed92..10c4b59fc56 100644 --- a/Modules/Classification/CLImportanceWeighting/include/mitkGeneralizedLinearModel.h +++ b/Modules/Classification/CLImportanceWeighting/include/mitkGeneralizedLinearModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGeneralizedLinearModel_h #define mitkGeneralizedLinearModel_h diff --git a/Modules/Classification/CLImportanceWeighting/include/mitkLRDensityEstimation.h b/Modules/Classification/CLImportanceWeighting/include/mitkLRDensityEstimation.h index 319ddf12c41..14e566bced9 100644 --- a/Modules/Classification/CLImportanceWeighting/include/mitkLRDensityEstimation.h +++ b/Modules/Classification/CLImportanceWeighting/include/mitkLRDensityEstimation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLRDensityEstimation_h #define mitkLRDensityEstimation_h diff --git a/Modules/Classification/CLImportanceWeighting/include/mitkLinkModels.h b/Modules/Classification/CLImportanceWeighting/include/mitkLinkModels.h index 96b3a36b3f1..036fb105ac4 100644 --- a/Modules/Classification/CLImportanceWeighting/include/mitkLinkModels.h +++ b/Modules/Classification/CLImportanceWeighting/include/mitkLinkModels.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLinkModels_h #define mitkLinkModels_h @@ -42,4 +38,4 @@ namespace mitk }; } -#endif \ No newline at end of file +#endif diff --git a/Modules/Classification/CLImportanceWeighting/src/mitkDistModels.cpp b/Modules/Classification/CLImportanceWeighting/src/mitkDistModels.cpp index 17c32d4fcd0..a6b0748a239 100644 --- a/Modules/Classification/CLImportanceWeighting/src/mitkDistModels.cpp +++ b/Modules/Classification/CLImportanceWeighting/src/mitkDistModels.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include @@ -14,4 +26,4 @@ double mitk::DistSimpleBinominal::Devariation(double mu, double y) double mitk::DistSimpleBinominal::SqrtVariance(double mu) { return std::sqrt(mu) * std::sqrt(1 - mu); -} \ No newline at end of file +} diff --git a/Modules/Classification/CLImportanceWeighting/src/mitkGeneralizedLinearModel.cpp b/Modules/Classification/CLImportanceWeighting/src/mitkGeneralizedLinearModel.cpp index d8f64013ad9..f97cd282647 100644 --- a/Modules/Classification/CLImportanceWeighting/src/mitkGeneralizedLinearModel.cpp +++ b/Modules/Classification/CLImportanceWeighting/src/mitkGeneralizedLinearModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLImportanceWeighting/src/mitkLRDensityEstimation.cpp b/Modules/Classification/CLImportanceWeighting/src/mitkLRDensityEstimation.cpp index d89a2caf867..d95416526ad 100644 --- a/Modules/Classification/CLImportanceWeighting/src/mitkLRDensityEstimation.cpp +++ b/Modules/Classification/CLImportanceWeighting/src/mitkLRDensityEstimation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLImportanceWeighting/src/mitkLinkModels.cpp b/Modules/Classification/CLImportanceWeighting/src/mitkLinkModels.cpp index 07328abfbec..2532f51e910 100644 --- a/Modules/Classification/CLImportanceWeighting/src/mitkLinkModels.cpp +++ b/Modules/Classification/CLImportanceWeighting/src/mitkLinkModels.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -53,4 +49,4 @@ double mitk::LogItLinking::InverseLink(double eta) if (result > 1) result = 1; return result; -} \ No newline at end of file +} diff --git a/Modules/Classification/CLLibSVM/include/mitkLibSVMClassifier.h b/Modules/Classification/CLLibSVM/include/mitkLibSVMClassifier.h index 4d477be1a63..67ca8c2343e 100644 --- a/Modules/Classification/CLLibSVM/include/mitkLibSVMClassifier.h +++ b/Modules/Classification/CLLibSVM/include/mitkLibSVMClassifier.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLibSVMClassifier_h #define mitkLibSVMClassifier_h diff --git a/Modules/Classification/CLLibSVM/include/svm.h b/Modules/Classification/CLLibSVM/include/svm.h index 41c697e1899..a5a0e0bfe50 100644 --- a/Modules/Classification/CLLibSVM/include/svm.h +++ b/Modules/Classification/CLLibSVM/include/svm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/Classification/CLLibSVM/src/mitkLibSVMClassifier.cpp b/Modules/Classification/CLLibSVM/src/mitkLibSVMClassifier.cpp index 6b1ef04c93f..0e251333f6a 100644 --- a/Modules/Classification/CLLibSVM/src/mitkLibSVMClassifier.cpp +++ b/Modules/Classification/CLLibSVM/src/mitkLibSVMClassifier.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -340,4 +336,4 @@ void mitk::LibSVMClassifier::ReadWValues(LibSVM::svm_problem * problem) problem->W[i] = 1; } } -} \ No newline at end of file +} diff --git a/Modules/Classification/CLLibSVM/src/svm-predict.c b/Modules/Classification/CLLibSVM/src/svm-predict.c index acb00c02cab..7b46f31e281 100644 --- a/Modules/Classification/CLLibSVM/src/svm-predict.c +++ b/Modules/Classification/CLLibSVM/src/svm-predict.c @@ -1,3 +1,40 @@ +/*============================================================================ + +libsvm + +Copyright (c) 2000-2019 Chih-Chung Chang and Chih-Jen Lin +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +3. Neither name of copyright holders nor the names of its contributors +may be used to endorse or promote products derived from this software +without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================*/ + #include #include #include diff --git a/Modules/Classification/CLLibSVM/src/svm-scale.c b/Modules/Classification/CLLibSVM/src/svm-scale.c index 2cade4edc13..6aab28a322f 100644 --- a/Modules/Classification/CLLibSVM/src/svm-scale.c +++ b/Modules/Classification/CLLibSVM/src/svm-scale.c @@ -1,3 +1,40 @@ +/*============================================================================ + +libsvm + +Copyright (c) 2000-2019 Chih-Chung Chang and Chih-Jen Lin +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +3. Neither name of copyright holders nor the names of its contributors +may be used to endorse or promote products derived from this software +without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================*/ + #include #include #include diff --git a/Modules/Classification/CLLibSVM/src/svm-train.c b/Modules/Classification/CLLibSVM/src/svm-train.c index 6e3d67d56c2..43c2c5a48c8 100644 --- a/Modules/Classification/CLLibSVM/src/svm-train.c +++ b/Modules/Classification/CLLibSVM/src/svm-train.c @@ -1,3 +1,40 @@ +/*============================================================================ + +libsvm + +Copyright (c) 2000-2019 Chih-Chung Chang and Chih-Jen Lin +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +3. Neither name of copyright holders nor the names of its contributors +may be used to endorse or promote products derived from this software +without specific prior written permission. + + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +============================================================================*/ + #include #include #include diff --git a/Modules/Classification/CLLibSVM/src/svm.cpp b/Modules/Classification/CLLibSVM/src/svm.cpp index c95f786160d..b40300d3895 100644 --- a/Modules/Classification/CLLibSVM/src/svm.cpp +++ b/Modules/Classification/CLLibSVM/src/svm.cpp @@ -1,22 +1,8 @@ -/*=================================================================== +/*============================================================================ -The Medical Imaging Interaction Toolkit (MITK) +libsvm -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. - -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ - -/*=================================================================== - -Copyright (c) 2000-2014 Chih-Chung Chang and Chih-Jen Lin +Copyright (c) 2000-2019 Chih-Chung Chang and Chih-Jen Lin All rights reserved. Redistribution and use in source and binary forms, with or without @@ -47,7 +33,7 @@ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Classification/CLLibSVM/test/mitkLibSVMClassifierTest.cpp b/Modules/Classification/CLLibSVM/test/mitkLibSVMClassifierTest.cpp index 83dc871db9f..25a7f021a92 100644 --- a/Modules/Classification/CLLibSVM/test/mitkLibSVMClassifierTest.cpp +++ b/Modules/Classification/CLLibSVM/test/mitkLibSVMClassifierTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -174,7 +170,7 @@ class mitkLibSVMClassifierTestSuite : public mitk::TestFixture /* Train the classifier with an exampledataset of mattlab. - Note: The included data are gaußan normaldistributed. + Note: The included data are gaußan normaldistributed. */ void TrainSVMClassifier_MatlabDataSet_shouldReturnTrue() { diff --git a/Modules/Classification/CLMRUtilities/include/mitkMRNormLinearStatisticBasedFilter.h b/Modules/Classification/CLMRUtilities/include/mitkMRNormLinearStatisticBasedFilter.h index dc4adf251ba..b93bae81361 100644 --- a/Modules/Classification/CLMRUtilities/include/mitkMRNormLinearStatisticBasedFilter.h +++ b/Modules/Classification/CLMRUtilities/include/mitkMRNormLinearStatisticBasedFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MRNORMLINEARSTATISTICBASEDFILTER_H #define MRNORMLINEARSTATISTICBASEDFILTER_H diff --git a/Modules/Classification/CLMRUtilities/include/mitkMRNormTwoRegionBasedFilter.h b/Modules/Classification/CLMRUtilities/include/mitkMRNormTwoRegionBasedFilter.h index 8e9852f8751..a41ed77913e 100644 --- a/Modules/Classification/CLMRUtilities/include/mitkMRNormTwoRegionBasedFilter.h +++ b/Modules/Classification/CLMRUtilities/include/mitkMRNormTwoRegionBasedFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMRNORMTWOREGIONBASEDFILTER_H #define MITKMRNORMTWOREGIONBASEDFILTER_H diff --git a/Modules/Classification/CLMRUtilities/src/MRNormalization/mitkMRNormLinearStatisticBasedFilter.cpp b/Modules/Classification/CLMRUtilities/src/MRNormalization/mitkMRNormLinearStatisticBasedFilter.cpp index b22445c8c9e..f418aa8041c 100644 --- a/Modules/Classification/CLMRUtilities/src/MRNormalization/mitkMRNormLinearStatisticBasedFilter.cpp +++ b/Modules/Classification/CLMRUtilities/src/MRNormalization/mitkMRNormLinearStatisticBasedFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMRNormLinearStatisticBasedFilter.h" @@ -170,4 +166,4 @@ void mitk::MRNormLinearStatisticBasedFilter::InternalComputeMask(itk::Image #include @@ -313,4 +309,4 @@ class mitkGlobalFeaturesTestSuite : public mitk::TestFixture } }; -MITK_TEST_SUITE_REGISTRATION(mitkGlobalFeatures) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGlobalFeatures) diff --git a/Modules/Classification/CLMRUtilities/test/mitkSmoothedClassProbabilitesTest.cpp b/Modules/Classification/CLMRUtilities/test/mitkSmoothedClassProbabilitesTest.cpp index f1e695cb663..a7b7e977fd5 100644 --- a/Modules/Classification/CLMRUtilities/test/mitkSmoothedClassProbabilitesTest.cpp +++ b/Modules/Classification/CLMRUtilities/test/mitkSmoothedClassProbabilitesTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Classification/CLMiniApps/CL2Dto3DImage.cpp b/Modules/Classification/CLMiniApps/CL2Dto3DImage.cpp index bbd9aa467e0..825465dc247 100644 --- a/Modules/Classification/CLMiniApps/CL2Dto3DImage.cpp +++ b/Modules/Classification/CLMiniApps/CL2Dto3DImage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommandLineParser.h" #include @@ -25,7 +21,7 @@ int main(int argc, char* argv[]) parser.setTitle("Dicom Loader"); parser.setCategory("Preprocessing Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLBrainMask.cpp b/Modules/Classification/CLMiniApps/CLBrainMask.cpp index 5b684d52106..933f276bb5e 100644 --- a/Modules/Classification/CLMiniApps/CLBrainMask.cpp +++ b/Modules/Classification/CLMiniApps/CLBrainMask.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -79,7 +75,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("MR Normalization Tool"); parser.setDescription("Normalizes a MR image. Sets the Median of the tissue covered by mask 0 to 0 and the median of the area covered by mask 1 to 1."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLDicom2Nrrd.cpp b/Modules/Classification/CLMiniApps/CLDicom2Nrrd.cpp index 1ac2cc7e6ad..1c2c2b82a72 100644 --- a/Modules/Classification/CLMiniApps/CLDicom2Nrrd.cpp +++ b/Modules/Classification/CLMiniApps/CLDicom2Nrrd.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -31,7 +27,7 @@ int main(int argc, char* argv[]) parser.setTitle("Dicom Loader"); parser.setCategory("Preprocessing Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLGlobalImageFeatures.cpp b/Modules/Classification/CLMiniApps/CLGlobalImageFeatures.cpp index 1ed5a6c78de..84a04d1522d 100644 --- a/Modules/Classification/CLMiniApps/CLGlobalImageFeatures.cpp +++ b/Modules/Classification/CLMiniApps/CLGlobalImageFeatures.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -423,7 +419,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Global Image Feature calculator"); parser.setDescription("Calculates different global statistics for a given segmentation / image combination"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); param.ParseParameter(parsedArgs); diff --git a/Modules/Classification/CLMiniApps/CLImageCropper.cpp b/Modules/Classification/CLMiniApps/CLImageCropper.cpp index 732fb2069f7..ca14b0b9530 100644 --- a/Modules/Classification/CLMiniApps/CLImageCropper.cpp +++ b/Modules/Classification/CLMiniApps/CLImageCropper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommandLineParser.h" #include "mitkIOUtil.h" @@ -26,7 +22,7 @@ int main(int argc, char* argv[]) parser.setTitle("Dicom Loader"); parser.setCategory("Preprocessing Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLLungSegmentation.cpp b/Modules/Classification/CLMiniApps/CLLungSegmentation.cpp index 48678c2bc4a..e4d668d7323 100644 --- a/Modules/Classification/CLMiniApps/CLLungSegmentation.cpp +++ b/Modules/Classification/CLMiniApps/CLLungSegmentation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -128,7 +124,7 @@ int main(int argc, char* argv[]) parser.setTitle("Dicom Loader"); parser.setCategory("Preprocessing Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLMRNormalization.cpp b/Modules/Classification/CLMiniApps/CLMRNormalization.cpp index 235f3c0a429..6d8dd19458c 100644 --- a/Modules/Classification/CLMiniApps/CLMRNormalization.cpp +++ b/Modules/Classification/CLMiniApps/CLMRNormalization.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -58,7 +54,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("MR Normalization Tool"); parser.setDescription("Normalizes a MR image. Sets the Median of the tissue covered by mask 0 to 0 and the median of the area covered by mask 1 to 1."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLMatchPointReg.cpp b/Modules/Classification/CLMiniApps/CLMatchPointReg.cpp index bdb804546d6..2cab1b91834 100644 --- a/Modules/Classification/CLMiniApps/CLMatchPointReg.cpp +++ b/Modules/Classification/CLMiniApps/CLMatchPointReg.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -54,7 +50,7 @@ int main(int argc, char* argv[]) parser.setTitle("Dicom Loader"); parser.setCategory("Preprocessing Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--","-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLMultiForestPrediction.cpp b/Modules/Classification/CLMiniApps/CLMultiForestPrediction.cpp index 5f3709a6f8e..f19a777b537 100644 --- a/Modules/Classification/CLMiniApps/CLMultiForestPrediction.cpp +++ b/Modules/Classification/CLMiniApps/CLMultiForestPrediction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkForest_cpp #define mitkForest_cpp diff --git a/Modules/Classification/CLMiniApps/CLN4.cpp b/Modules/Classification/CLMiniApps/CLN4.cpp index 94877c65c8b..ba778fed550 100644 --- a/Modules/Classification/CLMiniApps/CLN4.cpp +++ b/Modules/Classification/CLMiniApps/CLN4.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommandLineParser.h" #include "mitkIOUtil.h" @@ -32,7 +28,7 @@ int main(int argc, char* argv[]) parser.setTitle("N4 Bias Field Correction"); parser.setCategory("Classification Command Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLNrrdToPoly.cpp b/Modules/Classification/CLMiniApps/CLNrrdToPoly.cpp index 8b45b0239ff..4b6625af5a1 100644 --- a/Modules/Classification/CLMiniApps/CLNrrdToPoly.cpp +++ b/Modules/Classification/CLMiniApps/CLNrrdToPoly.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -44,7 +40,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Segmentation to Mask"); parser.setDescription("Estimates a Mesh from a segmentation"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLOverlayRoiCenterOfMass.cpp b/Modules/Classification/CLMiniApps/CLOverlayRoiCenterOfMass.cpp index 38ecc8fee81..f7ef90d476c 100644 --- a/Modules/Classification/CLMiniApps/CLOverlayRoiCenterOfMass.cpp +++ b/Modules/Classification/CLMiniApps/CLOverlayRoiCenterOfMass.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -138,7 +134,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Image with Overlay Plotter"); parser.setDescription("Plots "); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLPlanarFigureToNrrd.cpp b/Modules/Classification/CLMiniApps/CLPlanarFigureToNrrd.cpp index 6c8dbfde68a..488d45e5813 100644 --- a/Modules/Classification/CLMiniApps/CLPlanarFigureToNrrd.cpp +++ b/Modules/Classification/CLMiniApps/CLPlanarFigureToNrrd.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -91,7 +87,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Planar Data to Nrrd Segmentation"); parser.setDescription("Creates a Nrrd segmentation based on a 2d-vtk polydata."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLPointSetToSegmentation.cpp b/Modules/Classification/CLMiniApps/CLPointSetToSegmentation.cpp index 9a8558e1c0b..ecfb94790f3 100644 --- a/Modules/Classification/CLMiniApps/CLPointSetToSegmentation.cpp +++ b/Modules/Classification/CLMiniApps/CLPointSetToSegmentation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -44,7 +40,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("2D-Polydata to Nrrd Segmentation"); parser.setDescription("Creates a Nrrd segmentation based on a 2d-vtk polydata."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLPolyToNrrd.cpp b/Modules/Classification/CLMiniApps/CLPolyToNrrd.cpp index 5a30c99484a..80dc07b5d79 100644 --- a/Modules/Classification/CLMiniApps/CLPolyToNrrd.cpp +++ b/Modules/Classification/CLMiniApps/CLPolyToNrrd.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -49,7 +45,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("2D-Polydata to Nrrd Segmentation"); parser.setDescription("Creates a Nrrd segmentation based on a 2d-vtk polydata."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLPurfVoxelClassification.cpp b/Modules/Classification/CLMiniApps/CLPurfVoxelClassification.cpp index 89d359991f2..54e9951314a 100644 --- a/Modules/Classification/CLMiniApps/CLPurfVoxelClassification.cpp +++ b/Modules/Classification/CLMiniApps/CLPurfVoxelClassification.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkForest_cpp #define mitkForest_cpp @@ -444,4 +440,4 @@ int main(int argc, char* argv[]) return 0; } -#endif \ No newline at end of file +#endif diff --git a/Modules/Classification/CLMiniApps/CLRandomSampling.cpp b/Modules/Classification/CLMiniApps/CLRandomSampling.cpp index 730cab9c02a..7dab031c697 100644 --- a/Modules/Classification/CLMiniApps/CLRandomSampling.cpp +++ b/Modules/Classification/CLMiniApps/CLRandomSampling.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommandLineParser.h" #include "mitkIOUtil.h" @@ -53,7 +49,7 @@ int main(int argc, char* argv[]) parser.setTitle("Random Sampling"); parser.setCategory("Classification Command Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLRemoveEmptyVoxels.cpp b/Modules/Classification/CLMiniApps/CLRemoveEmptyVoxels.cpp index 44b62fb14a2..653058d6065 100644 --- a/Modules/Classification/CLMiniApps/CLRemoveEmptyVoxels.cpp +++ b/Modules/Classification/CLMiniApps/CLRemoveEmptyVoxels.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommandLineParser.h" #include "mitkIOUtil.h" @@ -38,7 +34,7 @@ int main(int argc, char* argv[]) parser.setTitle("Remove empty voxels Sampling"); parser.setCategory("Classification Command Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLResampleImageToReference.cpp b/Modules/Classification/CLMiniApps/CLResampleImageToReference.cpp index 3606e1abb4f..5f6be211686 100644 --- a/Modules/Classification/CLMiniApps/CLResampleImageToReference.cpp +++ b/Modules/Classification/CLMiniApps/CLResampleImageToReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLResampleImageToReference_cpp #define mitkCLResampleImageToReference_cpp @@ -90,7 +86,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Resample Image To Reference"); parser.setDescription("Resamples an image (moving) to an given image (fix) without additional registration."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLScreenshot.cpp b/Modules/Classification/CLMiniApps/CLScreenshot.cpp index c6e69f7d5a8..439d62b1c53 100644 --- a/Modules/Classification/CLMiniApps/CLScreenshot.cpp +++ b/Modules/Classification/CLMiniApps/CLScreenshot.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -132,7 +128,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Screenshot of a single image"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLSimpleVoxelClassification.cpp b/Modules/Classification/CLMiniApps/CLSimpleVoxelClassification.cpp index 998d0db8317..4254e0f7fd9 100644 --- a/Modules/Classification/CLMiniApps/CLSimpleVoxelClassification.cpp +++ b/Modules/Classification/CLMiniApps/CLSimpleVoxelClassification.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -43,7 +39,7 @@ int main(int argc, char* argv[]) parser.setTitle("Simple Random Forest Classifier"); parser.setCategory("Classification"); parser.setDescription("Learns and predicts classes"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/Classification/CLMiniApps/CLSkullMask.cpp b/Modules/Classification/CLMiniApps/CLSkullMask.cpp index 792afa5432e..cd532d77ec9 100644 --- a/Modules/Classification/CLMiniApps/CLSkullMask.cpp +++ b/Modules/Classification/CLMiniApps/CLSkullMask.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLPolyToNrrd_cpp #define mitkCLPolyToNrrd_cpp @@ -81,7 +77,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("MR Normalization Tool"); parser.setDescription("Normalizes a MR image. Sets the Median of the tissue covered by mask 0 to 0 and the median of the area covered by mask 1 to 1."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLStaple.cpp b/Modules/Classification/CLMiniApps/CLStaple.cpp index 49e17ac4713..ad4a5dea1df 100644 --- a/Modules/Classification/CLMiniApps/CLStaple.cpp +++ b/Modules/Classification/CLMiniApps/CLStaple.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommandLineParser.h" #include "mitkIOUtil.h" @@ -43,4 +39,4 @@ int main(int argc, char* argv[]) mitk::IOUtil::Save(outImg, argv[1]); return EXIT_SUCCESS; -} \ No newline at end of file +} diff --git a/Modules/Classification/CLMiniApps/CLSurWeighting.cpp b/Modules/Classification/CLMiniApps/CLSurWeighting.cpp index 6e8ad725ab8..df0ddf1b8c2 100644 --- a/Modules/Classification/CLMiniApps/CLSurWeighting.cpp +++ b/Modules/Classification/CLMiniApps/CLSurWeighting.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkForest_cpp #define mitkForest_cpp diff --git a/Modules/Classification/CLMiniApps/CLVoxelClassification.cpp b/Modules/Classification/CLMiniApps/CLVoxelClassification.cpp index ab6d52024bd..6d8aef5230c 100644 --- a/Modules/Classification/CLMiniApps/CLVoxelClassification.cpp +++ b/Modules/Classification/CLMiniApps/CLVoxelClassification.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkForest_cpp #define mitkForest_cpp diff --git a/Modules/Classification/CLMiniApps/CLVoxelFeatures.cpp b/Modules/Classification/CLMiniApps/CLVoxelFeatures.cpp index 307a0e71ec2..d568d6a9fd1 100644 --- a/Modules/Classification/CLMiniApps/CLVoxelFeatures.cpp +++ b/Modules/Classification/CLMiniApps/CLVoxelFeatures.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLVoxeFeatures_cpp #define mitkCLVoxeFeatures_cpp @@ -251,7 +247,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Global Image Feature calculator"); parser.setDescription("Calculates different global statistics for a given segmentation / image combination"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/CLWeighting.cpp b/Modules/Classification/CLMiniApps/CLWeighting.cpp index 6b0f041c7a6..c55b10a0618 100644 --- a/Modules/Classification/CLMiniApps/CLWeighting.cpp +++ b/Modules/Classification/CLMiniApps/CLWeighting.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkForest_cpp #define mitkForest_cpp @@ -147,7 +143,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Importance weighting algorithm"); parser.setDescription("Calculates the importance weighting of two input matrixes. "); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); MITK_INFO << "Extracting Parameters...."; std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/ManualSegmentationEvaluation.cpp b/Modules/Classification/CLMiniApps/ManualSegmentationEvaluation.cpp index 8bf2b14bc9f..4339aa228f7 100644 --- a/Modules/Classification/CLMiniApps/ManualSegmentationEvaluation.cpp +++ b/Modules/Classification/CLMiniApps/ManualSegmentationEvaluation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkImage.h" @@ -189,7 +185,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Evaluationtool for Manual-Segmentation"); parser.setDescription("Uses Datacollection to calculate DICE scores for CSF LES BRA"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); // Params parsing std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/NativeHeadCTSegmentation.cpp b/Modules/Classification/CLMiniApps/NativeHeadCTSegmentation.cpp index 472cf252455..1a24f9157a7 100644 --- a/Modules/Classification/CLMiniApps/NativeHeadCTSegmentation.cpp +++ b/Modules/Classification/CLMiniApps/NativeHeadCTSegmentation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkImage.h" diff --git a/Modules/Classification/CLMiniApps/RandomForestTraining.cpp b/Modules/Classification/CLMiniApps/RandomForestTraining.cpp index 5cc8b4e6db2..9b4c9683b93 100644 --- a/Modules/Classification/CLMiniApps/RandomForestTraining.cpp +++ b/Modules/Classification/CLMiniApps/RandomForestTraining.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkImage.h" @@ -67,7 +63,7 @@ int main(int argc, char* argv[]) parser.setCategory("Classification Tools"); parser.setTitle("Random Forest Training"); parser.setDescription("Vigra RF impl."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); // Params parsing std::map parsedArgs = parser.parseArguments(argc, argv); diff --git a/Modules/Classification/CLMiniApps/XRaxSimulationFromCT.cpp b/Modules/Classification/CLMiniApps/XRaxSimulationFromCT.cpp index f71390782e7..6bc9e2e689a 100644 --- a/Modules/Classification/CLMiniApps/XRaxSimulationFromCT.cpp +++ b/Modules/Classification/CLMiniApps/XRaxSimulationFromCT.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" @@ -170,7 +166,7 @@ int main(int argc, char* argv[]) parser.setTitle("Dicom Loader"); parser.setCategory("Preprocessing Tools"); parser.setDescription(""); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("-","-"); // Add command line argument names diff --git a/Modules/Classification/CLUtilities/include/itkCoocurenceMatrixFeatureFunctor.h b/Modules/Classification/CLUtilities/include/itkCoocurenceMatrixFeatureFunctor.h index 9c14f3d96fe..ab99b4415f3 100644 --- a/Modules/Classification/CLUtilities/include/itkCoocurenceMatrixFeatureFunctor.h +++ b/Modules/Classification/CLUtilities/include/itkCoocurenceMatrixFeatureFunctor.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef itkCooccurenceMatrixFeatureFunctor_h #define itkCooccurenceMatrixFeatureFunctor_h diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToNeighbourhoodGreyLevelDifferenceFeaturesFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToNeighbourhoodGreyLevelDifferenceFeaturesFilter.h index 2393b74a2f2..528fd0ebf49 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToNeighbourhoodGreyLevelDifferenceFeaturesFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToNeighbourhoodGreyLevelDifferenceFeaturesFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToNeighbourhoodGreyLevelDifferenceFeaturesFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToNeighbourhoodGreyLevelDifferenceFeaturesFilter.hxx index a60da12f625..d4d195f2c4f 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToNeighbourhoodGreyLevelDifferenceFeaturesFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToNeighbourhoodGreyLevelDifferenceFeaturesFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToRunLengthFeaturesFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToRunLengthFeaturesFilter.h index 7bc4856883f..9bd7524ec51 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToRunLengthFeaturesFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToRunLengthFeaturesFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToRunLengthFeaturesFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToRunLengthFeaturesFilter.hxx index f4a702d76bc..488404b32c6 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToRunLengthFeaturesFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToRunLengthFeaturesFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToSizeZoneFeaturesFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToSizeZoneFeaturesFilter.h index 211ec6b4069..6e86fee66f0 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToSizeZoneFeaturesFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToSizeZoneFeaturesFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToSizeZoneFeaturesFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToSizeZoneFeaturesFilter.hxx index 878f09bcd55..5effb5f15ff 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToSizeZoneFeaturesFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedHistogramToSizeZoneFeaturesFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceFeaturesFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceFeaturesFilter.h index a9c824e30fe..fcb9705d488 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceFeaturesFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceFeaturesFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceFeaturesFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceFeaturesFilter.hxx index eaf309549ca..9d1a67c7022 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceFeaturesFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceFeaturesFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceMatrixFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceMatrixFilter.h index 2b44f4e41bc..3b55f16b9e6 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceMatrixFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceMatrixFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceMatrixFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceMatrixFilter.hxx index 8b3a423693c..05f7bd24b20 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceMatrixFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToNeighbourhoodGreyLevelDifferenceMatrixFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthFeaturesFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthFeaturesFilter.h index 013e000773d..4081be5c3a9 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthFeaturesFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthFeaturesFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthFeaturesFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthFeaturesFilter.hxx index c4d2029663a..38f6cdb7721 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthFeaturesFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthFeaturesFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthMatrixFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthMatrixFilter.h index 26c7457dde4..9a9030fb930 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthMatrixFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthMatrixFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthMatrixFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthMatrixFilter.hxx index fc3d130ce44..7057b026972 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthMatrixFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToRunLengthMatrixFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * @@ -426,4 +422,4 @@ namespace itk } // end of namespace Statistics } // end of namespace itk -#endif \ No newline at end of file +#endif diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneFeaturesFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneFeaturesFilter.h index cdb4bd42354..c96a9d4f91b 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneFeaturesFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneFeaturesFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneFeaturesFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneFeaturesFilter.hxx index 13a0a2e58fa..351002f7ecc 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneFeaturesFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneFeaturesFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneMatrixFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneMatrixFilter.h index c0cf3f65f5e..b160e4a9e8f 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneMatrixFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneMatrixFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneMatrixFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneMatrixFilter.hxx index 1dcd78b09fd..71138893820 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneMatrixFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToSizeZoneMatrixFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToTextureFeaturesFilter.h b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToTextureFeaturesFilter.h index 550d75b37a6..f42ddf4fa79 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToTextureFeaturesFilter.h +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToTextureFeaturesFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * diff --git a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToTextureFeaturesFilter.hxx b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToTextureFeaturesFilter.hxx index 1ec0507683a..889a55ebdfd 100644 --- a/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToTextureFeaturesFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkEnhancedScalarImageToTextureFeaturesFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * @@ -342,4 +338,4 @@ namespace itk } // end of namespace Statistics } // end of namespace itk -#endif \ No newline at end of file +#endif diff --git a/Modules/Classification/CLUtilities/include/itkFirstOrderStatisticsFeatureFunctor.h b/Modules/Classification/CLUtilities/include/itkFirstOrderStatisticsFeatureFunctor.h index 194cfaf5211..547c4ba75cc 100644 --- a/Modules/Classification/CLUtilities/include/itkFirstOrderStatisticsFeatureFunctor.h +++ b/Modules/Classification/CLUtilities/include/itkFirstOrderStatisticsFeatureFunctor.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef itkNeighborhoodFirstOrderStatistics_h #define itkNeighborhoodFirstOrderStatistics_h diff --git a/Modules/Classification/CLUtilities/include/itkLabelSampler.h b/Modules/Classification/CLUtilities/include/itkLabelSampler.h index 5d32d970574..becc49b0164 100644 --- a/Modules/Classification/CLUtilities/include/itkLabelSampler.h +++ b/Modules/Classification/CLUtilities/include/itkLabelSampler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef itLabelSampler_h #define itLabelSampler_h diff --git a/Modules/Classification/CLUtilities/include/itkLineHistogramBasedMassImageFilter.h b/Modules/Classification/CLUtilities/include/itkLineHistogramBasedMassImageFilter.h index e95514b138d..6e791f274c2 100644 --- a/Modules/Classification/CLUtilities/include/itkLineHistogramBasedMassImageFilter.h +++ b/Modules/Classification/CLUtilities/include/itkLineHistogramBasedMassImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ITKLINEHISTOGRAMBASEDMASSIMAGEFILTER_H #define ITKLINEHISTOGRAMBASEDMASSIMAGEFILTER_H diff --git a/Modules/Classification/CLUtilities/include/itkLocalIntensityFilter.h b/Modules/Classification/CLUtilities/include/itkLocalIntensityFilter.h index 624357222da..1df796eaab7 100644 --- a/Modules/Classification/CLUtilities/include/itkLocalIntensityFilter.h +++ b/Modules/Classification/CLUtilities/include/itkLocalIntensityFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef itkLocalIntensityFilter_h #define itkLocalIntensityFilter_h diff --git a/Modules/Classification/CLUtilities/include/itkLocalIntensityFilter.hxx b/Modules/Classification/CLUtilities/include/itkLocalIntensityFilter.hxx index 2a6cd768573..a5f14bd8c30 100644 --- a/Modules/Classification/CLUtilities/include/itkLocalIntensityFilter.hxx +++ b/Modules/Classification/CLUtilities/include/itkLocalIntensityFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef itkLocalIntensityFilter_cpp #define itkLocalIntensityFilter_cpp @@ -315,4 +311,4 @@ namespace itk os << indent << "Local Maximum: " << this->GetLocalMaximum() << std::endl; } } // end namespace itk -#endif \ No newline at end of file +#endif diff --git a/Modules/Classification/CLUtilities/include/itkLocalStatisticFilter.h b/Modules/Classification/CLUtilities/include/itkLocalStatisticFilter.h index 34425463151..a01b0752ba2 100644 --- a/Modules/Classification/CLUtilities/include/itkLocalStatisticFilter.h +++ b/Modules/Classification/CLUtilities/include/itkLocalStatisticFilter.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef itkLocalStatisticFilter_h #define itkLocalStatisticFilter_h diff --git a/Modules/Classification/CLUtilities/include/itkMultiHistogramFilter.cpp b/Modules/Classification/CLUtilities/include/itkMultiHistogramFilter.cpp index a51d6253c50..b18a65904ce 100644 --- a/Modules/Classification/CLUtilities/include/itkMultiHistogramFilter.cpp +++ b/Modules/Classification/CLUtilities/include/itkMultiHistogramFilter.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef itkMultiHistogramFilter_cpp #define itkMultiHistogramFilter_cpp diff --git a/Modules/Classification/CLUtilities/include/itkMultiHistogramFilter.h b/Modules/Classification/CLUtilities/include/itkMultiHistogramFilter.h index 744868a2741..bad035737a8 100644 --- a/Modules/Classification/CLUtilities/include/itkMultiHistogramFilter.h +++ b/Modules/Classification/CLUtilities/include/itkMultiHistogramFilter.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef itkMultiHistogramFilter_h #define itkMultiHistogramFilter_h diff --git a/Modules/Classification/CLUtilities/include/itkNeighborhoodFunctorImageFilter.h b/Modules/Classification/CLUtilities/include/itkNeighborhoodFunctorImageFilter.h index 9637f980923..6942ce74c40 100644 --- a/Modules/Classification/CLUtilities/include/itkNeighborhoodFunctorImageFilter.h +++ b/Modules/Classification/CLUtilities/include/itkNeighborhoodFunctorImageFilter.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef itkNeighborhoodFunctorImageFilter_h #define itkNeighborhoodFunctorImageFilter_h diff --git a/Modules/Classification/CLUtilities/include/itkSmoothedClassProbabilites.h b/Modules/Classification/CLUtilities/include/itkSmoothedClassProbabilites.h index 07ed8514bb9..a34ac291dcc 100644 --- a/Modules/Classification/CLUtilities/include/itkSmoothedClassProbabilites.h +++ b/Modules/Classification/CLUtilities/include/itkSmoothedClassProbabilites.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef itSmoothedClassProbabilites_h #define itSmoothedClassProbabilites_h diff --git a/Modules/Classification/CLUtilities/include/mitkCLResultWritter.h b/Modules/Classification/CLUtilities/include/mitkCLResultWritter.h index 4d813247c63..abb5a76cb3a 100644 --- a/Modules/Classification/CLUtilities/include/mitkCLResultWritter.h +++ b/Modules/Classification/CLUtilities/include/mitkCLResultWritter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCLResultWritter_h #define mitkCLResultWritter_h @@ -60,4 +56,4 @@ namespace mitk } } -#endif //mitkCLResultWritter_h \ No newline at end of file +#endif //mitkCLResultWritter_h diff --git a/Modules/Classification/CLUtilities/include/mitkCLUtil.h b/Modules/Classification/CLUtilities/include/mitkCLUtil.h index 6396455675b..7db22c89d16 100644 --- a/Modules/Classification/CLUtilities/include/mitkCLUtil.h +++ b/Modules/Classification/CLUtilities/include/mitkCLUtil.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkCLUtil_h #define mitkCLUtil_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFCooccurenceMatrix.h b/Modules/Classification/CLUtilities/include/mitkGIFCooccurenceMatrix.h index ab8f9d9daf2..22b4562701e 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFCooccurenceMatrix.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFCooccurenceMatrix.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkGIFCooccurenceMatrix_h #define mitkGIFCooccurenceMatrix_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFCooccurenceMatrix2.h b/Modules/Classification/CLUtilities/include/mitkGIFCooccurenceMatrix2.h index 466539abeb0..deee5936a0b 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFCooccurenceMatrix2.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFCooccurenceMatrix2.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkGIFCooccurenceMatrix2_h #define mitkGIFCooccurenceMatrix2_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFCurvatureStatistic.h b/Modules/Classification/CLUtilities/include/mitkGIFCurvatureStatistic.h index 555dad228aa..ef67ea062c1 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFCurvatureStatistic.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFCurvatureStatistic.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFCurvatureStatistic_h #define mitkGIFCurvatureStatistic_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderHistogramStatistics.h b/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderHistogramStatistics.h index 1fc11dceb2b..318ff1bf6ef 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderHistogramStatistics.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderHistogramStatistics.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFFirstOrderHistogramStatistics_h #define mitkGIFFirstOrderHistogramStatistics_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderNumericStatistics.h b/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderNumericStatistics.h index 4025d3ad895..d0b671a0cbe 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderNumericStatistics.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderNumericStatistics.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFFirstNumericOrderStatistics_h #define mitkGIFFirstNumericOrderStatistics_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderStatistics.h b/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderStatistics.h index c9d2cf9312a..6802dbf0267 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderStatistics.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFFirstOrderStatistics.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFFirstOrderStatistics_h #define mitkGIFFirstOrderStatistics_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelDistanceZone.h b/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelDistanceZone.h index ffc43e624ba..6b30c3b84ce 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelDistanceZone.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelDistanceZone.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkGIFGreyLevelDistanceZone_h #define mitkGIFGreyLevelDistanceZone_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelRunLength.h b/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelRunLength.h index b48adb9dce2..f2f7efd85ec 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelRunLength.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelRunLength.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkGIFGreyLevelRunLength_h #define mitkGIFGreyLevelRunLength_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelSizeZone.h b/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelSizeZone.h index 3ee2a236352..9359425da49 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelSizeZone.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFGreyLevelSizeZone.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkGIFGreyLevelSizeZone_h #define mitkGIFGreyLevelSizeZone_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFImageDescriptionFeatures.h b/Modules/Classification/CLUtilities/include/mitkGIFImageDescriptionFeatures.h index 0301c83455d..68656016dc0 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFImageDescriptionFeatures.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFImageDescriptionFeatures.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFImageDescriptionFeatures_h #define mitkGIFImageDescriptionFeatures_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFIntensityVolumeHistogramFeatures.h b/Modules/Classification/CLUtilities/include/mitkGIFIntensityVolumeHistogramFeatures.h index db266c951db..0727f3db549 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFIntensityVolumeHistogramFeatures.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFIntensityVolumeHistogramFeatures.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFIntensityVolumeHistogramFeatures_h #define mitkGIFIntensityVolumeHistogramFeatures_h @@ -28,7 +24,7 @@ namespace mitk * * This class can be used to calculate the volume histogram and features that are calculated from * it. It is based on the intensity-volume histogram (IVH) which describes the relation between the - * grey level index i (and the corresponding intensity \f§x_i\f$) and the volume fraction \f$f\f$ that + * grey level index i (and the corresponding intensity \f§x_i\f$) and the volume fraction \f$f\f$ that * with an intensity that is equal or greater than \f$x_i\f$. This feature is original proposed in * El Naqa et al. Exploring feature-based approaches in PET images for prediciting cancer treatment outcomes. * Pattern recognition 2009. diff --git a/Modules/Classification/CLUtilities/include/mitkGIFLocalIntensity.h b/Modules/Classification/CLUtilities/include/mitkGIFLocalIntensity.h index a295391a1fb..d93788ccd06 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFLocalIntensity.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFLocalIntensity.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFLocalIntensity_h #define mitkGIFLocalIntensity_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFNeighbourhoodGreyLevelDifference.h b/Modules/Classification/CLUtilities/include/mitkGIFNeighbourhoodGreyLevelDifference.h index cc10b5b7c38..5e7c3a22ec3 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFNeighbourhoodGreyLevelDifference.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFNeighbourhoodGreyLevelDifference.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkGIFNeighbourhoodGreyLevelDifference_h #define mitkGIFNeighbourhoodGreyLevelDifference_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFNeighbourhoodGreyToneDifferenceFeatures.h b/Modules/Classification/CLUtilities/include/mitkGIFNeighbourhoodGreyToneDifferenceFeatures.h index bc230042d2b..a7980483a1e 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFNeighbourhoodGreyToneDifferenceFeatures.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFNeighbourhoodGreyToneDifferenceFeatures.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFNeighbourhoodGreyToneDifferenceFeatures_h #define mitkGIFNeighbourhoodGreyToneDifferenceFeatures_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFNeighbouringGreyLevelDependenceFeatures.h b/Modules/Classification/CLUtilities/include/mitkGIFNeighbouringGreyLevelDependenceFeatures.h index 25bfb28d6d0..fa2fe13988a 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFNeighbouringGreyLevelDependenceFeatures.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFNeighbouringGreyLevelDependenceFeatures.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkGIFNeighbouringGreyLevelDependenceFeatures_h #define mitkGIFNeighbouringGreyLevelDependenceFeatures_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFVolumetricDensityStatistics.h b/Modules/Classification/CLUtilities/include/mitkGIFVolumetricDensityStatistics.h index 6e914da84c8..fa7fe1bab88 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFVolumetricDensityStatistics.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFVolumetricDensityStatistics.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFVolumetricDensityStatistics_h #define mitkGIFVolumetricDensityStatistics_h diff --git a/Modules/Classification/CLUtilities/include/mitkGIFVolumetricStatistics.h b/Modules/Classification/CLUtilities/include/mitkGIFVolumetricStatistics.h index 89a713e5881..8f18867bca2 100644 --- a/Modules/Classification/CLUtilities/include/mitkGIFVolumetricStatistics.h +++ b/Modules/Classification/CLUtilities/include/mitkGIFVolumetricStatistics.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGIFVolumetricStatistics_h #define mitkGIFVolumetricStatistics_h diff --git a/Modules/Classification/CLUtilities/include/mitkGlobalImageFeaturesParameter.h b/Modules/Classification/CLUtilities/include/mitkGlobalImageFeaturesParameter.h index bb9da19e517..4f56d5886ed 100644 --- a/Modules/Classification/CLUtilities/include/mitkGlobalImageFeaturesParameter.h +++ b/Modules/Classification/CLUtilities/include/mitkGlobalImageFeaturesParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGlobalImageFeaturesParameter_h #define mitkGlobalImageFeaturesParameter_h @@ -85,4 +81,4 @@ namespace mitk -#endif //mitkGlobalImageFeaturesParameter_h \ No newline at end of file +#endif //mitkGlobalImageFeaturesParameter_h diff --git a/Modules/Classification/CLUtilities/include/mitkRandomImageSampler.h b/Modules/Classification/CLUtilities/include/mitkRandomImageSampler.h index a94785eb020..f060f3aef39 100644 --- a/Modules/Classification/CLUtilities/include/mitkRandomImageSampler.h +++ b/Modules/Classification/CLUtilities/include/mitkRandomImageSampler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkRandomImageSampler_h #define __mitkRandomImageSampler_h diff --git a/Modules/Classification/CLUtilities/include/mitkSplitParameterToVector.h b/Modules/Classification/CLUtilities/include/mitkSplitParameterToVector.h index a8903539ae0..4d5b8fae772 100644 --- a/Modules/Classification/CLUtilities/include/mitkSplitParameterToVector.h +++ b/Modules/Classification/CLUtilities/include/mitkSplitParameterToVector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSplitParameterToVector_h #define mitkSplitParameterToVector_h @@ -32,4 +28,4 @@ namespace mitk } -#endif //mitkSplitParameterToVector_h \ No newline at end of file +#endif //mitkSplitParameterToVector_h diff --git a/Modules/Classification/CLUtilities/src/Algorithms/itkLabelSampler.cpp b/Modules/Classification/CLUtilities/src/Algorithms/itkLabelSampler.cpp index bdbd86d7d1c..14311d07fd7 100644 --- a/Modules/Classification/CLUtilities/src/Algorithms/itkLabelSampler.cpp +++ b/Modules/Classification/CLUtilities/src/Algorithms/itkLabelSampler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef itkLabelSampler_cpp #define itkLabelSampler_cpp diff --git a/Modules/Classification/CLUtilities/src/Algorithms/itkSmoothedClassProbabilites.cpp b/Modules/Classification/CLUtilities/src/Algorithms/itkSmoothedClassProbabilites.cpp index a199c89fc54..cb3e8088be3 100644 --- a/Modules/Classification/CLUtilities/src/Algorithms/itkSmoothedClassProbabilites.cpp +++ b/Modules/Classification/CLUtilities/src/Algorithms/itkSmoothedClassProbabilites.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef itSmoothedClassProbabilites_cpp #define itSmoothedClassProbabilites_cpp diff --git a/Modules/Classification/CLUtilities/src/Algorithms/mitkRandomImageSampler.cpp b/Modules/Classification/CLUtilities/src/Algorithms/mitkRandomImageSampler.cpp index feedad12b94..423232eb527 100644 --- a/Modules/Classification/CLUtilities/src/Algorithms/mitkRandomImageSampler.cpp +++ b/Modules/Classification/CLUtilities/src/Algorithms/mitkRandomImageSampler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRandomImageSampler.h" #include diff --git a/Modules/Classification/CLUtilities/src/Features/itkLineHistogramBasedMassImageFilter.cpp b/Modules/Classification/CLUtilities/src/Features/itkLineHistogramBasedMassImageFilter.cpp index bd09b151f6a..ad2cb43f2ce 100644 --- a/Modules/Classification/CLUtilities/src/Features/itkLineHistogramBasedMassImageFilter.cpp +++ b/Modules/Classification/CLUtilities/src/Features/itkLineHistogramBasedMassImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ITKLINEHISTOGRAMBASEDMASSIMAGEFILTER_CPP #define ITKLINEHISTOGRAMBASEDMASSIMAGEFILTER_CPP diff --git a/Modules/Classification/CLUtilities/src/Features/itkNeighborhoodFunctorImageFilter.cpp b/Modules/Classification/CLUtilities/src/Features/itkNeighborhoodFunctorImageFilter.cpp index e47761609c2..cdd1c266a9c 100644 --- a/Modules/Classification/CLUtilities/src/Features/itkNeighborhoodFunctorImageFilter.cpp +++ b/Modules/Classification/CLUtilities/src/Features/itkNeighborhoodFunctorImageFilter.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef itkNeighborhoodFunctorImageFilter_cpp #define itkNeighborhoodFunctorImageFilter_cpp diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCooccurenceMatrix.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCooccurenceMatrix.cpp index 36991186323..ce15e9af7f0 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCooccurenceMatrix.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCooccurenceMatrix.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include // MITK diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCooccurenceMatrix2.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCooccurenceMatrix2.cpp index db1ca60ac65..fba1f5f467a 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCooccurenceMatrix2.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCooccurenceMatrix2.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include // MITK diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCurvatureStatistic.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCurvatureStatistic.cpp index 7ab99630614..1c1582f862f 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCurvatureStatistic.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFCurvatureStatistic.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderHistogramStatistics.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderHistogramStatistics.cpp index 171f1b1cf12..ac4f3bb0b6f 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderHistogramStatistics.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderHistogramStatistics.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderNumericStatistics.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderNumericStatistics.cpp index e7489a5c087..9e451fae225 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderNumericStatistics.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderNumericStatistics.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -356,4 +352,4 @@ mitk::GIFFirstOrderNumericStatistics::CalculateFeaturesUsingParameters(const Ima std::string mitk::GIFFirstOrderNumericStatistics::GetCurrentFeatureEncoding() { return QuantifierParameterString(); -} \ No newline at end of file +} diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderStatistics.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderStatistics.cpp index 448375d362a..4352de4a663 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderStatistics.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFFirstOrderStatistics.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -324,4 +320,4 @@ mitk::GIFFirstOrderStatistics::CalculateFeaturesUsingParameters(const Image::Poi std::string mitk::GIFFirstOrderStatistics::GetCurrentFeatureEncoding() { return QuantifierParameterString(); -} \ No newline at end of file +} diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelDistanceZone.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelDistanceZone.cpp index 74e875ab26c..c09ea25cfd6 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelDistanceZone.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelDistanceZone.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include // MITK diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelRunLength.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelRunLength.cpp index 42ac98184fd..35d3ebf7ebb 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelRunLength.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelRunLength.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -286,4 +282,4 @@ mitk::GIFGreyLevelRunLength::CalculateFeaturesUsingParameters(const Image::Point std::string mitk::GIFGreyLevelRunLength::GetCurrentFeatureEncoding() { return QuantifierParameterString(); -} \ No newline at end of file +} diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelSizeZone.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelSizeZone.cpp index 02299797921..56e1f0220ec 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelSizeZone.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFGreyLevelSizeZone.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include // MITK diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFImageDescriptionFeatures.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFImageDescriptionFeatures.cpp index 29cf8088104..186e059624a 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFImageDescriptionFeatures.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFImageDescriptionFeatures.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFIntensityVolumeHistogramFeatures.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFIntensityVolumeHistogramFeatures.cpp index a531a1043d7..d2ecb1f42d4 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFIntensityVolumeHistogramFeatures.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFIntensityVolumeHistogramFeatures.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFLocalIntensity.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFLocalIntensity.cpp index 706e45890e8..14a4e3b5174 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFLocalIntensity.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFLocalIntensity.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbourhoodGreyLevelDifference.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbourhoodGreyLevelDifference.cpp index 47fe2d6e2a3..50bcb5b7315 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbourhoodGreyLevelDifference.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbourhoodGreyLevelDifference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbourhoodGreyToneDifferenceFeatures.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbourhoodGreyToneDifferenceFeatures.cpp index 70a6837f275..dddeca2a39c 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbourhoodGreyToneDifferenceFeatures.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbourhoodGreyToneDifferenceFeatures.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbouringGreyLevelDependenceFeatures.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbouringGreyLevelDependenceFeatures.cpp index a606c15c04b..8efb80b3ef4 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbouringGreyLevelDependenceFeatures.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFNeighbouringGreyLevelDependenceFeatures.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include // MITK diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFVolumetricDensityStatistics.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFVolumetricDensityStatistics.cpp index 9e184ae7dbd..82523f06bb6 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFVolumetricDensityStatistics.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFVolumetricDensityStatistics.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFVolumetricStatistics.cpp b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFVolumetricStatistics.cpp index 4520ff559f1..e46cbc49d19 100644 --- a/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFVolumetricStatistics.cpp +++ b/Modules/Classification/CLUtilities/src/GlobalImageFeatures/mitkGIFVolumetricStatistics.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/MiniAppUtils/mitkGlobalImageFeaturesParameter.cpp b/Modules/Classification/CLUtilities/src/MiniAppUtils/mitkGlobalImageFeaturesParameter.cpp index 15a426e23ec..22297ab79e3 100644 --- a/Modules/Classification/CLUtilities/src/MiniAppUtils/mitkGlobalImageFeaturesParameter.cpp +++ b/Modules/Classification/CLUtilities/src/MiniAppUtils/mitkGlobalImageFeaturesParameter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/CLUtilities/src/MiniAppUtils/mitkSplitParameterToVector.cpp b/Modules/Classification/CLUtilities/src/MiniAppUtils/mitkSplitParameterToVector.cpp index f1051a92857..5d17cbe7119 100644 --- a/Modules/Classification/CLUtilities/src/MiniAppUtils/mitkSplitParameterToVector.cpp +++ b/Modules/Classification/CLUtilities/src/MiniAppUtils/mitkSplitParameterToVector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -58,4 +54,4 @@ std::vector mitk::cl::splitString(std::string str, char delimiter) } return internal; -} \ No newline at end of file +} diff --git a/Modules/Classification/CLUtilities/src/mitkCLResultWritter.cpp b/Modules/Classification/CLUtilities/src/mitkCLResultWritter.cpp index ff3f0d92b96..91e5308d46e 100644 --- a/Modules/Classification/CLUtilities/src/mitkCLResultWritter.cpp +++ b/Modules/Classification/CLUtilities/src/mitkCLResultWritter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -185,4 +181,4 @@ void mitk::cl::FeatureResultWritter::AddHeader(std::string, int slice, mitk::Abs } NewRow("EndOfMeasurement"); } -} \ No newline at end of file +} diff --git a/Modules/Classification/CLUtilities/src/mitkCLUtil.cpp b/Modules/Classification/CLUtilities/src/mitkCLUtil.cpp index 8a254b1df84..115d7c86303 100644 --- a/Modules/Classification/CLUtilities/src/mitkCLUtil.cpp +++ b/Modules/Classification/CLUtilities/src/mitkCLUtil.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef _mitkCLUtil_HXX #define _mitkCLUtil_HXX diff --git a/Modules/Classification/CLUtilities/test/mitkGIFCooc2Test.cpp b/Modules/Classification/CLUtilities/test/mitkGIFCooc2Test.cpp index ef4dcd42549..8ad8cbc4cd2 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFCooc2Test.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFCooc2Test.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -248,4 +244,4 @@ class mitkGIFCooc2TestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFCooc2 ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFCooc2 ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFCurvatureStatisticTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFCurvatureStatisticTest.cpp index e9c908dabc0..633b9954b32 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFCurvatureStatisticTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFCurvatureStatisticTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -119,4 +115,4 @@ class mitkGIFCurvatureStatisticTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFCurvatureStatistic ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFCurvatureStatistic ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderHistogramStatisticsTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderHistogramStatisticsTest.cpp index ddbb9318c42..ee9d7c90d62 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderHistogramStatisticsTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderHistogramStatisticsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -124,4 +120,4 @@ class mitkGIFFirstOrderHistogramStatisticsTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFFirstOrderHistogramStatistics ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFFirstOrderHistogramStatistics ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderNumericStatisticsTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderNumericStatisticsTest.cpp index 31bac390391..4e224d73306 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderNumericStatisticsTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderNumericStatisticsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -110,4 +106,4 @@ class mitkGIFFirstOrderNumericStatisticsTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFFirstOrderNumericStatistics ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFFirstOrderNumericStatistics ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderStatisticsTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderStatisticsTest.cpp index d6af72b9a88..0378a5d88dd 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderStatisticsTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFFirstOrderStatisticsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -109,4 +105,4 @@ class mitkGIFFirstOrderStatisticsTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFFirstOrderStatistics ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFFirstOrderStatistics ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFGreyLevelDistanceZoneTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFGreyLevelDistanceZoneTest.cpp index 6df2796c381..682a7cbdabc 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFGreyLevelDistanceZoneTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFGreyLevelDistanceZoneTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -144,4 +140,4 @@ class mitkGIFGreyLevelDistanceZoneTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFGreyLevelDistanceZone ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFGreyLevelDistanceZone ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFGreyLevelSizeZoneTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFGreyLevelSizeZoneTest.cpp index 8adcba8d934..9d1b60874e6 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFGreyLevelSizeZoneTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFGreyLevelSizeZoneTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -142,4 +138,4 @@ class mitkGIFGreyLevelSizeZoneTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFGreyLevelSizeZone ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFGreyLevelSizeZone ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFImageDescriptionFeaturesTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFImageDescriptionFeaturesTest.cpp index 4aadb069fb7..5b74aaa12bc 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFImageDescriptionFeaturesTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFImageDescriptionFeaturesTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -92,4 +88,4 @@ class mitkGIFImageDescriptionFeaturesTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFImageDescriptionFeatures ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFImageDescriptionFeatures ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFIntensityVolumeHistogramTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFIntensityVolumeHistogramTest.cpp index b0a0eebfa0f..90c7d655b68 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFIntensityVolumeHistogramTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFIntensityVolumeHistogramTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -156,4 +152,4 @@ class mitkGIFIntensityVolumeHistogramTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFIntensityVolumeHistogram) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFIntensityVolumeHistogram) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFLocalIntensityTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFLocalIntensityTest.cpp index 9cb05dc56b5..4a6305526ad 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFLocalIntensityTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFLocalIntensityTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -111,4 +107,4 @@ class mitkGIFLocalIntensityTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFLocalIntensity ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFLocalIntensity ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFNeighbourhoodGreyToneDifferenceFeaturesTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFNeighbourhoodGreyToneDifferenceFeaturesTest.cpp index e70b3aa357a..5de9f83d0fb 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFNeighbourhoodGreyToneDifferenceFeaturesTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFNeighbourhoodGreyToneDifferenceFeaturesTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -108,4 +104,4 @@ class mitkGIFNeighbourhoodGreyToneDifferenceFeaturesTestSuite : public mitk::Tes }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFNeighbourhoodGreyToneDifferenceFeatures ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFNeighbourhoodGreyToneDifferenceFeatures ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFNeighbouringGreyLevelDependenceFeatureTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFNeighbouringGreyLevelDependenceFeatureTest.cpp index 65449509c35..83041674646 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFNeighbouringGreyLevelDependenceFeatureTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFNeighbouringGreyLevelDependenceFeatureTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -152,4 +148,4 @@ class mitkGIFNeighbouringGreyLevelDependenceFeatureTestSuite : public mitk::Test }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFNeighbouringGreyLevelDependenceFeature ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFNeighbouringGreyLevelDependenceFeature ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFVolumetricDensityStatisticsTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFVolumetricDensityStatisticsTest.cpp index d29ae3f58bf..7c2fbe8f64f 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFVolumetricDensityStatisticsTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFVolumetricDensityStatisticsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -89,4 +85,4 @@ class mitkGIFVolumetricDensityStatisticsTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFVolumetricDensityStatistics ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFVolumetricDensityStatistics ) diff --git a/Modules/Classification/CLUtilities/test/mitkGIFVolumetricStatisticsTest.cpp b/Modules/Classification/CLUtilities/test/mitkGIFVolumetricStatisticsTest.cpp index 8a8e50a5e56..2c5afa46dda 100644 --- a/Modules/Classification/CLUtilities/test/mitkGIFVolumetricStatisticsTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGIFVolumetricStatisticsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -107,4 +103,4 @@ class mitkGIFVolumetricStatisticsTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkGIFVolumetricStatistics ) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGIFVolumetricStatistics ) diff --git a/Modules/Classification/CLUtilities/test/mitkGlobalFeaturesTest.cpp b/Modules/Classification/CLUtilities/test/mitkGlobalFeaturesTest.cpp index 23a91b5afb1..aca52a5499c 100644 --- a/Modules/Classification/CLUtilities/test/mitkGlobalFeaturesTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkGlobalFeaturesTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -313,4 +309,4 @@ class mitkGlobalFeaturesTestSuite : public mitk::TestFixture } }; -MITK_TEST_SUITE_REGISTRATION(mitkGlobalFeatures) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkGlobalFeatures) diff --git a/Modules/Classification/CLUtilities/test/mitkSmoothedClassProbabilitesTest.cpp b/Modules/Classification/CLUtilities/test/mitkSmoothedClassProbabilitesTest.cpp index f1e695cb663..a7b7e977fd5 100644 --- a/Modules/Classification/CLUtilities/test/mitkSmoothedClassProbabilitesTest.cpp +++ b/Modules/Classification/CLUtilities/test/mitkSmoothedClassProbabilitesTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Classification/CLVigraRandomForest/include/itkHessianMatrixEigenvalueImageFilter.h b/Modules/Classification/CLVigraRandomForest/include/itkHessianMatrixEigenvalueImageFilter.h index bcdf7ba013d..6e0c39e8146 100644 --- a/Modules/Classification/CLVigraRandomForest/include/itkHessianMatrixEigenvalueImageFilter.h +++ b/Modules/Classification/CLVigraRandomForest/include/itkHessianMatrixEigenvalueImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ITKHESSIANMATRIXEIGENVALUEIMAGEFILTER_H #define ITKHESSIANMATRIXEIGENVALUEIMAGEFILTER_H diff --git a/Modules/Classification/CLVigraRandomForest/include/itkStructureTensorEigenvalueImageFilter.h b/Modules/Classification/CLVigraRandomForest/include/itkStructureTensorEigenvalueImageFilter.h index 6a7d609c807..8eb29af6a96 100644 --- a/Modules/Classification/CLVigraRandomForest/include/itkStructureTensorEigenvalueImageFilter.h +++ b/Modules/Classification/CLVigraRandomForest/include/itkStructureTensorEigenvalueImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ITKSTRUCTURETENSOREIGENVALUEIMAGEFILTER_H #define ITKSTRUCTURETENSOREIGENVALUEIMAGEFILTER_H diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkAdditionalRFData.h b/Modules/Classification/CLVigraRandomForest/include/mitkAdditionalRFData.h index fedfea13de5..2b63706a622 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkAdditionalRFData.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkAdditionalRFData.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkAdditionalRFData_h #define mitkAdditionalRFData_h diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkDummyLsetReader.h b/Modules/Classification/CLVigraRandomForest/include/mitkDummyLsetReader.h index 5b43ae97eaf..b840cf141d5 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkDummyLsetReader.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkDummyLsetReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_DummyLsetFileReader__H_ #define _MITK_DummyLsetFileReader__H_ diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkImpurityLoss.h b/Modules/Classification/CLVigraRandomForest/include/mitkImpurityLoss.h index f36e5438aa5..6d332402cca 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkImpurityLoss.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkImpurityLoss.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkImpurityLoss_h #define mitkImpurityLoss_h diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkLinearSplitting.h b/Modules/Classification/CLVigraRandomForest/include/mitkLinearSplitting.h index 46dbb31299a..002c58eb208 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkLinearSplitting.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkLinearSplitting.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkLinearSplitting_h #define mitkLinearSplitting_h diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkPUImpurityLoss.h b/Modules/Classification/CLVigraRandomForest/include/mitkPUImpurityLoss.h index 5088e7b0d44..f7944735d41 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkPUImpurityLoss.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkPUImpurityLoss.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkPUImpurityLoss_h #define mitkPUImpurityLoss_h diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkPURFClassifier.h b/Modules/Classification/CLVigraRandomForest/include/mitkPURFClassifier.h index 5af8f408bbe..a7ef6a2da49 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkPURFClassifier.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkPURFClassifier.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPURFClassifier_h #define mitkPURFClassifier_h diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkRandomForestIO.h b/Modules/Classification/CLVigraRandomForest/include/mitkRandomForestIO.h index 845868bebe0..1bcb652b7f7 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkRandomForestIO.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkRandomForestIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_DecisionForestFileIO__H_ #define _MITK_DecisionForestFileIO__H_ diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkThresholdSplit.h b/Modules/Classification/CLVigraRandomForest/include/mitkThresholdSplit.h index ff341533880..46d8ec02b2f 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkThresholdSplit.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkThresholdSplit.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkThresholdSplit_h #define mitkThresholdSplit_h diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkVigraRandomForestClassifier.h b/Modules/Classification/CLVigraRandomForest/include/mitkVigraRandomForestClassifier.h index 6878db61f0f..ed0f459f72a 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkVigraRandomForestClassifier.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkVigraRandomForestClassifier.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVigraRandomForestClassifier_h #define mitkVigraRandomForestClassifier_h diff --git a/Modules/Classification/CLVigraRandomForest/include/mitkVigraRandomForestClassifierSerializer.h b/Modules/Classification/CLVigraRandomForest/include/mitkVigraRandomForestClassifierSerializer.h index d8aee22372f..72321b015f3 100644 --- a/Modules/Classification/CLVigraRandomForest/include/mitkVigraRandomForestClassifierSerializer.h +++ b/Modules/Classification/CLVigraRandomForest/include/mitkVigraRandomForestClassifierSerializer.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKVIGRARANDOMFORESTCLASSIFIERSERIALIZER_H #define MITKVIGRARANDOMFORESTCLASSIFIERSERIALIZER_H diff --git a/Modules/Classification/CLVigraRandomForest/src/Algorithm/itkHessianMatrixEigenvalueImageFilter.cpp b/Modules/Classification/CLVigraRandomForest/src/Algorithm/itkHessianMatrixEigenvalueImageFilter.cpp index 720f35f31b9..d5aa41ace32 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Algorithm/itkHessianMatrixEigenvalueImageFilter.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Algorithm/itkHessianMatrixEigenvalueImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ITKHESSIANMATRIXEIGENVALUEIMAGEFILTER_CPP #define ITKHESSIANMATRIXEIGENVALUEIMAGEFILTER_CPP diff --git a/Modules/Classification/CLVigraRandomForest/src/Algorithm/itkStructureTensorEigenvalueImageFilter.cpp b/Modules/Classification/CLVigraRandomForest/src/Algorithm/itkStructureTensorEigenvalueImageFilter.cpp index cc37bf14d2c..f9fed96cba3 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Algorithm/itkStructureTensorEigenvalueImageFilter.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Algorithm/itkStructureTensorEigenvalueImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ITKSTRUCTURETENSOREIGENVALUEIMAGEFILTER_CPP #define ITKSTRUCTURETENSOREIGENVALUEIMAGEFILTER_CPP diff --git a/Modules/Classification/CLVigraRandomForest/src/Classifier/mitkPURFClassifier.cpp b/Modules/Classification/CLVigraRandomForest/src/Classifier/mitkPURFClassifier.cpp index 79a51ceb597..f686e14da46 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Classifier/mitkPURFClassifier.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Classifier/mitkPURFClassifier.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK includes #include diff --git a/Modules/Classification/CLVigraRandomForest/src/Classifier/mitkVigraRandomForestClassifier.cpp b/Modules/Classification/CLVigraRandomForest/src/Classifier/mitkVigraRandomForestClassifier.cpp index 47c4cabe323..95d0295d2ea 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Classifier/mitkVigraRandomForestClassifier.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Classifier/mitkVigraRandomForestClassifier.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK includes #include diff --git a/Modules/Classification/CLVigraRandomForest/src/IO/mitkDummyLsetReader.cpp b/Modules/Classification/CLVigraRandomForest/src/IO/mitkDummyLsetReader.cpp index 30338961a45..a4e6256ba07 100644 --- a/Modules/Classification/CLVigraRandomForest/src/IO/mitkDummyLsetReader.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/IO/mitkDummyLsetReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/Classification/CLVigraRandomForest/src/IO/mitkRandomForestIO.cpp b/Modules/Classification/CLVigraRandomForest/src/IO/mitkRandomForestIO.cpp index 27963db69e4..4dedf92d429 100644 --- a/Modules/Classification/CLVigraRandomForest/src/IO/mitkRandomForestIO.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/IO/mitkRandomForestIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkDecisionForestIO__cpp #define __mitkDecisionForestIO__cpp diff --git a/Modules/Classification/CLVigraRandomForest/src/IO/mitkVigraRandomForestClassifierSerializer.cpp b/Modules/Classification/CLVigraRandomForest/src/IO/mitkVigraRandomForestClassifierSerializer.cpp index c4014cc5687..1c1e5c8cdaf 100644 --- a/Modules/Classification/CLVigraRandomForest/src/IO/mitkVigraRandomForestClassifierSerializer.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/IO/mitkVigraRandomForestClassifierSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVigraRandomForestClassifierSerializer.h" #include "mitkIOUtil.h" diff --git a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkAdditionalRFData.cpp b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkAdditionalRFData.cpp index 913b6e41d8b..e09b9ad06f9 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkAdditionalRFData.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkAdditionalRFData.cpp @@ -1,6 +1,18 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include void mitk::PURFData::NoFunction() { return; -} \ No newline at end of file +} diff --git a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkImpurityLoss.cpp b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkImpurityLoss.cpp index add5f035ccc..01beaf11449 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkImpurityLoss.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkImpurityLoss.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkImpurityLoss_cpp #define mitkImpurityLoss_cpp diff --git a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkLinearSplitting.cpp b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkLinearSplitting.cpp index b3b3de2d14d..55fdb7ebb06 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkLinearSplitting.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkLinearSplitting.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkLinearSplitting_cpp #define mitkLinearSplitting_cpp diff --git a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkPUImpurityLoss.cpp b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkPUImpurityLoss.cpp index 3259b742b58..e47cbd96f78 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkPUImpurityLoss.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkPUImpurityLoss.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkPUImpurityLoss_cpp #define mitkPUImpurityLoss_cpp diff --git a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkThresholdSplit.cpp b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkThresholdSplit.cpp index 388b3c27cb2..dc5ee0e46d0 100644 --- a/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkThresholdSplit.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/Splitter/mitkThresholdSplit.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkThresholdSplit_cpp #define mitkThresholdSplit_cpp diff --git a/Modules/Classification/CLVigraRandomForest/src/mitkModuleActivator.cpp b/Modules/Classification/CLVigraRandomForest/src/mitkModuleActivator.cpp index b523bac27e5..2374e7e8232 100644 --- a/Modules/Classification/CLVigraRandomForest/src/mitkModuleActivator.cpp +++ b/Modules/Classification/CLVigraRandomForest/src/mitkModuleActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/Classification/CLVigraRandomForest/test/mitkVigraRandomForestTest.cpp b/Modules/Classification/CLVigraRandomForest/test/mitkVigraRandomForestTest.cpp index 53d3414929a..b0e3a370580 100644 --- a/Modules/Classification/CLVigraRandomForest/test/mitkVigraRandomForestTest.cpp +++ b/Modules/Classification/CLVigraRandomForest/test/mitkVigraRandomForestTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Classification/DataCollection/DataHolder/mitkDataCollection.cpp b/Modules/Classification/DataCollection/DataHolder/mitkDataCollection.cpp index b8ffcb670d8..0402e93a554 100644 --- a/Modules/Classification/DataCollection/DataHolder/mitkDataCollection.cpp +++ b/Modules/Classification/DataCollection/DataHolder/mitkDataCollection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/DataCollection/DataHolder/mitkDataCollection.h b/Modules/Classification/DataCollection/DataHolder/mitkDataCollection.h index 48275a58c0d..495bca62e2b 100644 --- a/Modules/Classification/DataCollection/DataHolder/mitkDataCollection.h +++ b/Modules/Classification/DataCollection/DataHolder/mitkDataCollection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifdef _MSC_VER # pragma warning (disable : 4996) #endif diff --git a/Modules/Classification/DataCollection/DataHolder/mitkDataCollectionUtility.cpp b/Modules/Classification/DataCollection/DataHolder/mitkDataCollectionUtility.cpp index c2fe86724ea..d25299af36a 100644 --- a/Modules/Classification/DataCollection/DataHolder/mitkDataCollectionUtility.cpp +++ b/Modules/Classification/DataCollection/DataHolder/mitkDataCollectionUtility.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ diff --git a/Modules/Classification/DataCollection/DataHolder/mitkDataCollectionUtility.h b/Modules/Classification/DataCollection/DataHolder/mitkDataCollectionUtility.h index ab488fb841d..f37349505db 100644 --- a/Modules/Classification/DataCollection/DataHolder/mitkDataCollectionUtility.h +++ b/Modules/Classification/DataCollection/DataHolder/mitkDataCollectionUtility.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataCollectionUtilit_h diff --git a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionImageIterator.cxx b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionImageIterator.cxx index c07b4afebc8..feac5a2bdba 100644 --- a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionImageIterator.cxx +++ b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionImageIterator.cxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataCollectionImageIterator_CXX #define mitkDataCollectionImageIterator_CXX @@ -231,4 +227,4 @@ typename mitk::DataCollectionImageIterator::ImageIte return m_CurrentIterator; }; -#endif // mitkDataCollectionImageIterator_CXX \ No newline at end of file +#endif // mitkDataCollectionImageIterator_CXX diff --git a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionImageIterator.h b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionImageIterator.h index a1c7e42ba0f..d8300074088 100644 --- a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionImageIterator.h +++ b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionImageIterator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataCollectionImageIterator_H diff --git a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionSingleImageIterator.cxx b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionSingleImageIterator.cxx index 777e06180a9..eb482ebb677 100644 --- a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionSingleImageIterator.cxx +++ b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionSingleImageIterator.cxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataCollectionSingleImageIterator_CXX #define mitkDataCollectionSingleImageIterator_CXX @@ -218,4 +214,4 @@ GetNextDataCollectionIterator(size_t start) } // mitkDataCollectionSingleImageIterator_CXX -#endif +#endif diff --git a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionSingleImageIterator.h b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionSingleImageIterator.h index 38d4bef948d..8d3fb3402a5 100644 --- a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionSingleImageIterator.h +++ b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionSingleImageIterator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataCollectionSingleImageIterator_H diff --git a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionVectorImageIterator.cxx b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionVectorImageIterator.cxx index 3a29aef7030..c17bda3c5f3 100644 --- a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionVectorImageIterator.cxx +++ b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionVectorImageIterator.cxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkDataCollectionVectorImageIterator.h" @@ -106,4 +102,4 @@ mitk::DataCollectionVectorImageIterator::AddImage( typename itk::Image::Pointer image, std::string name) { m_FeatureIterators.at(m_FeatureIterators.size()-1).AddImage(image, name); - } \ No newline at end of file + } diff --git a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionVectorImageIterator.h b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionVectorImageIterator.h index 914240fbe8b..15bf0c42893 100644 --- a/Modules/Classification/DataCollection/Iterators/mitkDataCollectionVectorImageIterator.h +++ b/Modules/Classification/DataCollection/Iterators/mitkDataCollectionVectorImageIterator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef DATACOLLECTIONFEATUREVECTORIMAGEITERATOR_H_ #define DATACOLLECTIONFEATUREVECTORIMAGEITERATOR_H_ @@ -73,4 +69,4 @@ namespace mitk #include -#endif /* DATACOLLECTIONFEATUREVECTORIMAGEITERATOR_H_ */ \ No newline at end of file +#endif /* DATACOLLECTIONFEATUREVECTORIMAGEITERATOR_H_ */ diff --git a/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionReader.cpp b/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionReader.cpp index 3c387944ba3..6bfa0fb6c79 100644 --- a/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionReader.cpp +++ b/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifdef _MSC_VER # pragma warning (disable : 4996) #endif diff --git a/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionReader.h b/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionReader.h index 1d05e73b086..48af9901f32 100644 --- a/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionReader.h +++ b/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_COLLECTION_READER_H #define MITK_COLLECTION_READER_H diff --git a/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionWriter.cpp b/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionWriter.cpp index 4536f08c742..076dcb9e82e 100755 --- a/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionWriter.cpp +++ b/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifdef _MSC_VER # pragma warning (disable : 4996) #endif diff --git a/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionWriter.h b/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionWriter.h index 046320df27e..5fdf9917b28 100755 --- a/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionWriter.h +++ b/Modules/Classification/DataCollection/ReaderWriter/mitkCollectionWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_COLLECTION_WRITER_H #define MITK_COLLECTION_WRITER_H diff --git a/Modules/Classification/DataCollection/Testing/mitKnnClassificationTest.cpp b/Modules/Classification/DataCollection/Testing/mitKnnClassificationTest.cpp index a95a6ce70e6..fd4963531a7 100644 --- a/Modules/Classification/DataCollection/Testing/mitKnnClassificationTest.cpp +++ b/Modules/Classification/DataCollection/Testing/mitKnnClassificationTest.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include #include @@ -265,4 +277,4 @@ int mitKnnClassificationTest(int argc, char* argv[] ) } return 0; -} \ No newline at end of file +} diff --git a/Modules/Classification/DataCollection/Testing/mitkDataCollectionBySuffix.cpp b/Modules/Classification/DataCollection/Testing/mitkDataCollectionBySuffix.cpp index 7db2f747685..0ee3c4f088a 100644 --- a/Modules/Classification/DataCollection/Testing/mitkDataCollectionBySuffix.cpp +++ b/Modules/Classification/DataCollection/Testing/mitkDataCollectionBySuffix.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #pragma warning (disable : 4996) #include "mitkTestingMacros.h" @@ -49,4 +45,4 @@ int mitkDataCollectionBySuffix(int argc, char* argv[]) MITK_TEST_END(); -} \ No newline at end of file +} diff --git a/Modules/Classification/DataCollection/Testing/mitkDataCollectionFromXMLTest.cpp b/Modules/Classification/DataCollection/Testing/mitkDataCollectionFromXMLTest.cpp index 8c3631b1b79..81e6f1b19c6 100644 --- a/Modules/Classification/DataCollection/Testing/mitkDataCollectionFromXMLTest.cpp +++ b/Modules/Classification/DataCollection/Testing/mitkDataCollectionFromXMLTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #pragma warning (disable : 4996) #include "mitkTestingMacros.h" diff --git a/Modules/Classification/DataCollection/Testing/mitkDataCollectionImageIteratorTest.cpp b/Modules/Classification/DataCollection/Testing/mitkDataCollectionImageIteratorTest.cpp index f534c8e8fbf..b599a143838 100644 --- a/Modules/Classification/DataCollection/Testing/mitkDataCollectionImageIteratorTest.cpp +++ b/Modules/Classification/DataCollection/Testing/mitkDataCollectionImageIteratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Classification/DataCollection/Testing/mitkDataCollectionReaderWriterTest.cpp b/Modules/Classification/DataCollection/Testing/mitkDataCollectionReaderWriterTest.cpp index 8e88e50671f..a5249d67ad3 100644 --- a/Modules/Classification/DataCollection/Testing/mitkDataCollectionReaderWriterTest.cpp +++ b/Modules/Classification/DataCollection/Testing/mitkDataCollectionReaderWriterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include int mitkDataCollectionReaderWriterTest(int argc, char* argv[]) @@ -20,4 +16,4 @@ int mitkDataCollectionReaderWriterTest(int argc, char* argv[]) MITK_TEST_BEGIN("mitkDataCollectionReaderWriterTest"); MITK_TEST_CONDITION_REQUIRED(true,"Here we test our condition"); MITK_TEST_END(); -} \ No newline at end of file +} diff --git a/Modules/Classification/DataCollection/Testing/mitkDataCollectionTest.cpp b/Modules/Classification/DataCollection/Testing/mitkDataCollectionTest.cpp index 345a4576ca0..f61220aafdf 100644 --- a/Modules/Classification/DataCollection/Testing/mitkDataCollectionTest.cpp +++ b/Modules/Classification/DataCollection/Testing/mitkDataCollectionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Classification/DataCollection/Testing/mitkGenerateFeatureVectFromImageTest.cpp b/Modules/Classification/DataCollection/Testing/mitkGenerateFeatureVectFromImageTest.cpp index 44077d826c5..e152cac64d0 100644 --- a/Modules/Classification/DataCollection/Testing/mitkGenerateFeatureVectFromImageTest.cpp +++ b/Modules/Classification/DataCollection/Testing/mitkGenerateFeatureVectFromImageTest.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include #include @@ -136,4 +148,4 @@ int mitkGenerateFeatureVectFromImageTest(int argc, char* argv[]) // } return 0; -} \ No newline at end of file +} diff --git a/Modules/Classification/DataCollection/Testing/mitkSherwoodTest.cpp b/Modules/Classification/DataCollection/Testing/mitkSherwoodTest.cpp index 7cf9dbc374d..f587133fd1f 100644 --- a/Modules/Classification/DataCollection/Testing/mitkSherwoodTest.cpp +++ b/Modules/Classification/DataCollection/Testing/mitkSherwoodTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -266,4 +262,4 @@ int mitkSherwoodTest(int argc, char* argv[]) MITK_INFO << "Press Key and Enter to leave test"; char ch; std::cin >> ch; -} \ No newline at end of file +} diff --git a/Modules/Classification/DataCollection/Utilities/mitkCollectionStatistic.cpp b/Modules/Classification/DataCollection/Utilities/mitkCollectionStatistic.cpp index e60d36159ca..d283baa433c 100644 --- a/Modules/Classification/DataCollection/Utilities/mitkCollectionStatistic.cpp +++ b/Modules/Classification/DataCollection/Utilities/mitkCollectionStatistic.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include diff --git a/Modules/Classification/DataCollection/Utilities/mitkCollectionStatistic.h b/Modules/Classification/DataCollection/Utilities/mitkCollectionStatistic.h index 0c63915ad02..5ba3e91f16b 100644 --- a/Modules/Classification/DataCollection/Utilities/mitkCollectionStatistic.h +++ b/Modules/Classification/DataCollection/Utilities/mitkCollectionStatistic.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkCollectionStatistic_h #define mitkCollectionStatistic_h diff --git a/Modules/Classification/DataCollection/Utilities/mitkCostingStatistic.cpp b/Modules/Classification/DataCollection/Utilities/mitkCostingStatistic.cpp index 335ec77cea5..754db798c36 100644 --- a/Modules/Classification/DataCollection/Utilities/mitkCostingStatistic.cpp +++ b/Modules/Classification/DataCollection/Utilities/mitkCostingStatistic.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include diff --git a/Modules/Classification/DataCollection/Utilities/mitkCostingStatistic.h b/Modules/Classification/DataCollection/Utilities/mitkCostingStatistic.h index 8bdf6571b27..3e4fb8e1ec4 100644 --- a/Modules/Classification/DataCollection/Utilities/mitkCostingStatistic.h +++ b/Modules/Classification/DataCollection/Utilities/mitkCostingStatistic.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkCostingStatistic_h #define mitkCostingStatistic_h diff --git a/Modules/Classification/DataCollection/Utilities/mitkDataCollectionUtilities.cpp b/Modules/Classification/DataCollection/Utilities/mitkDataCollectionUtilities.cpp index 9cdb0c6b08e..d6e9d94585e 100644 --- a/Modules/Classification/DataCollection/Utilities/mitkDataCollectionUtilities.cpp +++ b/Modules/Classification/DataCollection/Utilities/mitkDataCollectionUtilities.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -280,4 +276,4 @@ void mitk::DCUtilities::EnsureDoubleImageInDC(mitk::DataCollection::Pointer dc, EnsureDoubleImageInDC(newCol, name, origin); } } -} \ No newline at end of file +} diff --git a/Modules/Classification/DataCollection/Utilities/mitkDataCollectionUtilities.h b/Modules/Classification/DataCollection/Utilities/mitkDataCollectionUtilities.h index eb74be0d906..5ed55fb8e0d 100644 --- a/Modules/Classification/DataCollection/Utilities/mitkDataCollectionUtilities.h +++ b/Modules/Classification/DataCollection/Utilities/mitkDataCollectionUtilities.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataCollectionUtilities_h #define mitkDataCollectionUtilities_h @@ -44,4 +40,4 @@ namespace mitk }; } -#endif \ No newline at end of file +#endif diff --git a/Modules/Classification/DataCollection/testcase.cpp b/Modules/Classification/DataCollection/testcase.cpp index f3d7c60d4f6..4e7753f58c9 100644 --- a/Modules/Classification/DataCollection/testcase.cpp +++ b/Modules/Classification/DataCollection/testcase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Classification/DataCollection/testcase.h b/Modules/Classification/DataCollection/testcase.h index 971156dadf3..f88d903984d 100644 --- a/Modules/Classification/DataCollection/testcase.h +++ b/Modules/Classification/DataCollection/testcase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef testcase_h diff --git a/Modules/CommandLine/include/mitkCommandLineParser.h b/Modules/CommandLine/include/mitkCommandLineParser.h index 07557ca89f3..f5c1418d5eb 100644 --- a/Modules/CommandLine/include/mitkCommandLineParser.h +++ b/Modules/CommandLine/include/mitkCommandLineParser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= Library: CTK diff --git a/Modules/CommandLine/src/mitkCommandLineParser.cpp b/Modules/CommandLine/src/mitkCommandLineParser.cpp index a5b2f1075ce..a331d793261 100644 --- a/Modules/CommandLine/src/mitkCommandLineParser.cpp +++ b/Modules/CommandLine/src/mitkCommandLineParser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= Library: CTK diff --git a/Modules/ContourModel/Algorithms/mitkContourModelSetSource.cpp b/Modules/ContourModel/Algorithms/mitkContourModelSetSource.cpp index af86d7fa38e..ba4cd0cdf3a 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelSetSource.cpp +++ b/Modules/ContourModel/Algorithms/mitkContourModelSetSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSetSource.h" diff --git a/Modules/ContourModel/Algorithms/mitkContourModelSetSource.h b/Modules/ContourModel/Algorithms/mitkContourModelSetSource.h index 7069a64e85b..63b55e24465 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelSetSource.h +++ b/Modules/ContourModel/Algorithms/mitkContourModelSetSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_ContourModelSetSource_H #define _MITK_ContourModelSetSource_H diff --git a/Modules/ContourModel/Algorithms/mitkContourModelSource.cpp b/Modules/ContourModel/Algorithms/mitkContourModelSource.cpp index 6d02f2ed975..152db631e42 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelSource.cpp +++ b/Modules/ContourModel/Algorithms/mitkContourModelSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSource.h" diff --git a/Modules/ContourModel/Algorithms/mitkContourModelSource.h b/Modules/ContourModel/Algorithms/mitkContourModelSource.h index e942216f889..25a4f1044c5 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelSource.h +++ b/Modules/ContourModel/Algorithms/mitkContourModelSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODEL_SOURCE_H #define _MITK_CONTOURMODEL_SOURCE_H diff --git a/Modules/ContourModel/Algorithms/mitkContourModelSubDivisionFilter.cpp b/Modules/ContourModel/Algorithms/mitkContourModelSubDivisionFilter.cpp index 470c1dd2f7c..dec4e7d7080 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelSubDivisionFilter.cpp +++ b/Modules/ContourModel/Algorithms/mitkContourModelSubDivisionFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSubDivisionFilter.h" #include diff --git a/Modules/ContourModel/Algorithms/mitkContourModelSubDivisionFilter.h b/Modules/ContourModel/Algorithms/mitkContourModelSubDivisionFilter.h index 1f706566de3..99b55df34f7 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelSubDivisionFilter.h +++ b/Modules/ContourModel/Algorithms/mitkContourModelSubDivisionFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkContourModelSubDivisionFilter_h__ #define _mitkContourModelSubDivisionFilter_h__ diff --git a/Modules/ContourModel/Algorithms/mitkContourModelToPointSetFilter.cpp b/Modules/ContourModel/Algorithms/mitkContourModelToPointSetFilter.cpp index cfcf6a15548..d68cc8bc154 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelToPointSetFilter.cpp +++ b/Modules/ContourModel/Algorithms/mitkContourModelToPointSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelToPointSetFilter.h" #include diff --git a/Modules/ContourModel/Algorithms/mitkContourModelToPointSetFilter.h b/Modules/ContourModel/Algorithms/mitkContourModelToPointSetFilter.h index ac200470768..2826f963b8c 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelToPointSetFilter.h +++ b/Modules/ContourModel/Algorithms/mitkContourModelToPointSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkContourModelToPointSetFilter_h__ #define _mitkContourModelToPointSetFilter_h__ diff --git a/Modules/ContourModel/Algorithms/mitkContourModelToSurfaceFilter.cpp b/Modules/ContourModel/Algorithms/mitkContourModelToSurfaceFilter.cpp index 6d80ebece3b..93dde7008c7 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelToSurfaceFilter.cpp +++ b/Modules/ContourModel/Algorithms/mitkContourModelToSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/ContourModel/Algorithms/mitkContourModelToSurfaceFilter.h b/Modules/ContourModel/Algorithms/mitkContourModelToSurfaceFilter.h index d59c819e14b..14d61561e68 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelToSurfaceFilter.h +++ b/Modules/ContourModel/Algorithms/mitkContourModelToSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODEL_TO_Surface_FILTER_H_ #define _MITK_CONTOURMODEL_TO_Surface_FILTER_H_ diff --git a/Modules/ContourModel/Algorithms/mitkContourModelUtils.cpp b/Modules/ContourModel/Algorithms/mitkContourModelUtils.cpp index 21e92caee98..a27d5607b40 100755 --- a/Modules/ContourModel/Algorithms/mitkContourModelUtils.cpp +++ b/Modules/ContourModel/Algorithms/mitkContourModelUtils.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ContourModel/Algorithms/mitkContourModelUtils.h b/Modules/ContourModel/Algorithms/mitkContourModelUtils.h index 2862b37525c..aa3553da6db 100644 --- a/Modules/ContourModel/Algorithms/mitkContourModelUtils.h +++ b/Modules/ContourModel/Algorithms/mitkContourModelUtils.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkContourModelUtils_h #define mitkContourModelUtils_h diff --git a/Modules/ContourModel/Algorithms/mitkContourObjectFactory.cpp b/Modules/ContourModel/Algorithms/mitkContourObjectFactory.cpp index 96823615461..0dc7d5256ee 100644 --- a/Modules/ContourModel/Algorithms/mitkContourObjectFactory.cpp +++ b/Modules/ContourModel/Algorithms/mitkContourObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourObjectFactory.h" diff --git a/Modules/ContourModel/Algorithms/mitkContourObjectFactory.h b/Modules/ContourModel/Algorithms/mitkContourObjectFactory.h index ff274152b1a..a30e99d3cf1 100644 --- a/Modules/ContourModel/Algorithms/mitkContourObjectFactory.h +++ b/Modules/ContourModel/Algorithms/mitkContourObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SEGMENTATIONOBJECTFACTORY_H_INCLUDED #define SEGMENTATIONOBJECTFACTORY_H_INCLUDED diff --git a/Modules/ContourModel/Algorithms/mitkImageToContourModelFilter.cpp b/Modules/ContourModel/Algorithms/mitkImageToContourModelFilter.cpp index 5597fc3954f..d243fd0cc73 100644 --- a/Modules/ContourModel/Algorithms/mitkImageToContourModelFilter.cpp +++ b/Modules/ContourModel/Algorithms/mitkImageToContourModelFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageToContourModelFilter.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/ContourModel/Algorithms/mitkImageToContourModelFilter.h b/Modules/ContourModel/Algorithms/mitkImageToContourModelFilter.h index eef6a32b2b7..25ab1ca25a9 100644 --- a/Modules/ContourModel/Algorithms/mitkImageToContourModelFilter.h +++ b/Modules/ContourModel/Algorithms/mitkImageToContourModelFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkImageToContourModelFilter_h__ #define _mitkImageToContourModelFilter_h__ diff --git a/Modules/ContourModel/DataManagement/mitkContourElement.cpp b/Modules/ContourModel/DataManagement/mitkContourElement.cpp index 77115f038b6..fd14eacedb1 100644 --- a/Modules/ContourModel/DataManagement/mitkContourElement.cpp +++ b/Modules/ContourModel/DataManagement/mitkContourElement.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/ContourModel/DataManagement/mitkContourElement.h b/Modules/ContourModel/DataManagement/mitkContourElement.h index 1a882741c1a..f2e8562df03 100644 --- a/Modules/ContourModel/DataManagement/mitkContourElement.h +++ b/Modules/ContourModel/DataManagement/mitkContourElement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkContourElement_H_ #define _mitkContourElement_H_ diff --git a/Modules/ContourModel/DataManagement/mitkContourModel.cpp b/Modules/ContourModel/DataManagement/mitkContourModel.cpp index 22365d346c6..6d88174b43b 100644 --- a/Modules/ContourModel/DataManagement/mitkContourModel.cpp +++ b/Modules/ContourModel/DataManagement/mitkContourModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ContourModel/DataManagement/mitkContourModel.h b/Modules/ContourModel/DataManagement/mitkContourModel.h index 194e709f627..3055adb48f1 100644 --- a/Modules/ContourModel/DataManagement/mitkContourModel.h +++ b/Modules/ContourModel/DataManagement/mitkContourModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODEL_H_ #define _MITK_CONTOURMODEL_H_ diff --git a/Modules/ContourModel/DataManagement/mitkContourModelSet.cpp b/Modules/ContourModel/DataManagement/mitkContourModelSet.cpp index 7e1b381dd4c..d7983758a67 100644 --- a/Modules/ContourModel/DataManagement/mitkContourModelSet.cpp +++ b/Modules/ContourModel/DataManagement/mitkContourModelSet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/ContourModel/DataManagement/mitkContourModelSet.h b/Modules/ContourModel/DataManagement/mitkContourModelSet.h index bbaecf86ad2..fcfaaf0a2f1 100644 --- a/Modules/ContourModel/DataManagement/mitkContourModelSet.h +++ b/Modules/ContourModel/DataManagement/mitkContourModelSet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkContourModelSet_H_ #define _mitkContourModelSet_H_ diff --git a/Modules/ContourModel/IO/mitkContourModelReader.cpp b/Modules/ContourModel/IO/mitkContourModelReader.cpp index 80ce037d780..a7864602f21 100644 --- a/Modules/ContourModel/IO/mitkContourModelReader.cpp +++ b/Modules/ContourModel/IO/mitkContourModelReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelReader.h" #include diff --git a/Modules/ContourModel/IO/mitkContourModelReader.h b/Modules/ContourModel/IO/mitkContourModelReader.h index db048d69385..d84bfdc3aaa 100644 --- a/Modules/ContourModel/IO/mitkContourModelReader.h +++ b/Modules/ContourModel/IO/mitkContourModelReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODEL_READER__H_ #define _MITK_CONTOURMODEL_READER__H_ diff --git a/Modules/ContourModel/IO/mitkContourModelSerializer.cpp b/Modules/ContourModel/IO/mitkContourModelSerializer.cpp index ee2d5863249..e6bab526910 100644 --- a/Modules/ContourModel/IO/mitkContourModelSerializer.cpp +++ b/Modules/ContourModel/IO/mitkContourModelSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSerializer.h" #include "mitkContourModelWriter.h" diff --git a/Modules/ContourModel/IO/mitkContourModelSerializer.h b/Modules/ContourModel/IO/mitkContourModelSerializer.h index d29944729fe..ebfe755dd73 100644 --- a/Modules/ContourModel/IO/mitkContourModelSerializer.h +++ b/Modules/ContourModel/IO/mitkContourModelSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCONTOURMODELSERIALIZER_H #define MITKCONTOURMODELSERIALIZER_H diff --git a/Modules/ContourModel/IO/mitkContourModelSetReader.cpp b/Modules/ContourModel/IO/mitkContourModelSetReader.cpp index 33dca23a2f7..615a802fc1e 100644 --- a/Modules/ContourModel/IO/mitkContourModelSetReader.cpp +++ b/Modules/ContourModel/IO/mitkContourModelSetReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSetReader.h" #include "mitkContourModelReader.h" diff --git a/Modules/ContourModel/IO/mitkContourModelSetReader.h b/Modules/ContourModel/IO/mitkContourModelSetReader.h index 62475409c3b..1434ab76eae 100644 --- a/Modules/ContourModel/IO/mitkContourModelSetReader.h +++ b/Modules/ContourModel/IO/mitkContourModelSetReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_ContourModelSetReader__H_ #define _MITK_ContourModelSetReader__H_ diff --git a/Modules/ContourModel/IO/mitkContourModelSetSerializer.cpp b/Modules/ContourModel/IO/mitkContourModelSetSerializer.cpp index 57494d5ea66..f9afa7787bd 100644 --- a/Modules/ContourModel/IO/mitkContourModelSetSerializer.cpp +++ b/Modules/ContourModel/IO/mitkContourModelSetSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSetSerializer.h" #include "mitkContourModelSetWriter.h" diff --git a/Modules/ContourModel/IO/mitkContourModelSetSerializer.h b/Modules/ContourModel/IO/mitkContourModelSetSerializer.h index c02d5b53ccc..2e08342128e 100644 --- a/Modules/ContourModel/IO/mitkContourModelSetSerializer.h +++ b/Modules/ContourModel/IO/mitkContourModelSetSerializer.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKCONTOURMODELSETSERIALIZER_H #define MITKCONTOURMODELSETSERIALIZER_H diff --git a/Modules/ContourModel/IO/mitkContourModelSetWriter.cpp b/Modules/ContourModel/IO/mitkContourModelSetWriter.cpp index dd5e3470f2a..c437dd022bc 100644 --- a/Modules/ContourModel/IO/mitkContourModelSetWriter.cpp +++ b/Modules/ContourModel/IO/mitkContourModelSetWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSetWriter.h" #include "mitkContourModelWriter.h" diff --git a/Modules/ContourModel/IO/mitkContourModelSetWriter.h b/Modules/ContourModel/IO/mitkContourModelSetWriter.h index a4dfad3afe9..36fb01aa8d2 100644 --- a/Modules/ContourModel/IO/mitkContourModelSetWriter.h +++ b/Modules/ContourModel/IO/mitkContourModelSetWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODELSET_WRITER__H_ #define _MITK_CONTOURMODELSET_WRITER__H_ diff --git a/Modules/ContourModel/IO/mitkContourModelWriter.cpp b/Modules/ContourModel/IO/mitkContourModelWriter.cpp index 44198e80c06..f41a1d83f4a 100644 --- a/Modules/ContourModel/IO/mitkContourModelWriter.cpp +++ b/Modules/ContourModel/IO/mitkContourModelWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelWriter.h" #include "mitkIOMimeTypes.h" diff --git a/Modules/ContourModel/IO/mitkContourModelWriter.h b/Modules/ContourModel/IO/mitkContourModelWriter.h index 6e86fc28521..aa0190b3956 100644 --- a/Modules/ContourModel/IO/mitkContourModelWriter.h +++ b/Modules/ContourModel/IO/mitkContourModelWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODEL_WRITER__H_ #define _MITK_CONTOURMODEL_WRITER__H_ diff --git a/Modules/ContourModel/Rendering/mitkContourModelGLMapper2D.cpp b/Modules/ContourModel/Rendering/mitkContourModelGLMapper2D.cpp index 5c900ccca72..78ca1d51436 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelGLMapper2D.cpp +++ b/Modules/ContourModel/Rendering/mitkContourModelGLMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelGLMapper2D.h" #include "mitkBaseRenderer.h" diff --git a/Modules/ContourModel/Rendering/mitkContourModelGLMapper2D.h b/Modules/ContourModel/Rendering/mitkContourModelGLMapper2D.h index 1f438df88aa..eaefdbf00eb 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelGLMapper2D.h +++ b/Modules/ContourModel/Rendering/mitkContourModelGLMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_ContourModelGLMapper2D_H_ #define MITK_ContourModelGLMapper2D_H_ diff --git a/Modules/ContourModel/Rendering/mitkContourModelGLMapper2DBase.cpp b/Modules/ContourModel/Rendering/mitkContourModelGLMapper2DBase.cpp index 3219e55b300..675fa1b921b 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelGLMapper2DBase.cpp +++ b/Modules/ContourModel/Rendering/mitkContourModelGLMapper2DBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSetGLMapper2D.h" diff --git a/Modules/ContourModel/Rendering/mitkContourModelGLMapper2DBase.h b/Modules/ContourModel/Rendering/mitkContourModelGLMapper2DBase.h index bbc9e6747d4..0ed3d77bf2c 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelGLMapper2DBase.h +++ b/Modules/ContourModel/Rendering/mitkContourModelGLMapper2DBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_ContourModelGLMapper2DBase_H_ #define MITK_ContourModelGLMapper2DBase_H_ diff --git a/Modules/ContourModel/Rendering/mitkContourModelMapper2D.cpp b/Modules/ContourModel/Rendering/mitkContourModelMapper2D.cpp index 165e6d469d1..3e2df04f9d6 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelMapper2D.cpp +++ b/Modules/ContourModel/Rendering/mitkContourModelMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ContourModel/Rendering/mitkContourModelMapper2D.h b/Modules/ContourModel/Rendering/mitkContourModelMapper2D.h index fcfd421a098..ea4b0e2f2fc 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelMapper2D.h +++ b/Modules/ContourModel/Rendering/mitkContourModelMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODEL_MAPPER_H_ #define _MITK_CONTOURMODEL_MAPPER_H_ diff --git a/Modules/ContourModel/Rendering/mitkContourModelMapper3D.cpp b/Modules/ContourModel/Rendering/mitkContourModelMapper3D.cpp index 88103a6feb7..402a93d674b 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelMapper3D.cpp +++ b/Modules/ContourModel/Rendering/mitkContourModelMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ContourModel/Rendering/mitkContourModelMapper3D.h b/Modules/ContourModel/Rendering/mitkContourModelMapper3D.h index 13293b77f5f..03ae5176cbd 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelMapper3D.h +++ b/Modules/ContourModel/Rendering/mitkContourModelMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODEL_MAPPER_3D_H_ #define _MITK_CONTOURMODEL_MAPPER_3D_H_ diff --git a/Modules/ContourModel/Rendering/mitkContourModelSetGLMapper2D.cpp b/Modules/ContourModel/Rendering/mitkContourModelSetGLMapper2D.cpp index ec87eef6f6e..98f41ba35ed 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelSetGLMapper2D.cpp +++ b/Modules/ContourModel/Rendering/mitkContourModelSetGLMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSetGLMapper2D.h" diff --git a/Modules/ContourModel/Rendering/mitkContourModelSetGLMapper2D.h b/Modules/ContourModel/Rendering/mitkContourModelSetGLMapper2D.h index b9cf2c58f2d..fbe0edb10ea 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelSetGLMapper2D.h +++ b/Modules/ContourModel/Rendering/mitkContourModelSetGLMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_ContourModelSetGLMapper2D_H_ #define MITK_ContourModelSetGLMapper2D_H_ diff --git a/Modules/ContourModel/Rendering/mitkContourModelSetMapper3D.cpp b/Modules/ContourModel/Rendering/mitkContourModelSetMapper3D.cpp index e970fdf2f60..0cd56a24a1e 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelSetMapper3D.cpp +++ b/Modules/ContourModel/Rendering/mitkContourModelSetMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkSurface.h" diff --git a/Modules/ContourModel/Rendering/mitkContourModelSetMapper3D.h b/Modules/ContourModel/Rendering/mitkContourModelSetMapper3D.h index 066b0162dc8..23332c6ba34 100644 --- a/Modules/ContourModel/Rendering/mitkContourModelSetMapper3D.h +++ b/Modules/ContourModel/Rendering/mitkContourModelSetMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODELSET_MAPPER_3D_H_ #define _MITK_CONTOURMODELSET_MAPPER_3D_H_ diff --git a/Modules/ContourModel/Testing/mitkCompareImageSliceTestHelper.h b/Modules/ContourModel/Testing/mitkCompareImageSliceTestHelper.h index 78021d9a375..8810256118a 100644 --- a/Modules/ContourModel/Testing/mitkCompareImageSliceTestHelper.h +++ b/Modules/ContourModel/Testing/mitkCompareImageSliceTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCompareImageSliceTestHelperhincluded #define mitkCompareImageSliceTestHelperhincluded diff --git a/Modules/ContourModel/Testing/mitkContourModelElementTest.cpp b/Modules/ContourModel/Testing/mitkContourModelElementTest.cpp index c06fa091302..414a72eaa19 100644 --- a/Modules/ContourModel/Testing/mitkContourModelElementTest.cpp +++ b/Modules/ContourModel/Testing/mitkContourModelElementTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingConfig.h" #include #include diff --git a/Modules/ContourModel/Testing/mitkContourModelIOTest.cpp b/Modules/ContourModel/Testing/mitkContourModelIOTest.cpp index b863bc91a0b..ddc16d2f0d3 100644 --- a/Modules/ContourModel/Testing/mitkContourModelIOTest.cpp +++ b/Modules/ContourModel/Testing/mitkContourModelIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingConfig.h" #include diff --git a/Modules/ContourModel/Testing/mitkContourModelSetTest.cpp b/Modules/ContourModel/Testing/mitkContourModelSetTest.cpp index 9c4a79068ac..fc0e5c17f27 100644 --- a/Modules/ContourModel/Testing/mitkContourModelSetTest.cpp +++ b/Modules/ContourModel/Testing/mitkContourModelSetTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ContourModel/Testing/mitkContourModelTest.cpp b/Modules/ContourModel/Testing/mitkContourModelTest.cpp index a425cadf2b1..7f2e6437762 100644 --- a/Modules/ContourModel/Testing/mitkContourModelTest.cpp +++ b/Modules/ContourModel/Testing/mitkContourModelTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ContourModel/mitkContourModelActivator.cpp b/Modules/ContourModel/mitkContourModelActivator.cpp index 41f876ecd71..af585fa392b 100644 --- a/Modules/ContourModel/mitkContourModelActivator.cpp +++ b/Modules/ContourModel/mitkContourModelActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelReader.h" #include "mitkContourModelSetReader.h" diff --git a/Modules/Core/TestingHelper/include/mitkInteractionTestHelper.h b/Modules/Core/TestingHelper/include/mitkInteractionTestHelper.h index 56628530cc7..71d54b482ac 100644 --- a/Modules/Core/TestingHelper/include/mitkInteractionTestHelper.h +++ b/Modules/Core/TestingHelper/include/mitkInteractionTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkInteractionTestHelper_h #define mitkInteractionTestHelper_h diff --git a/Modules/Core/TestingHelper/include/mitkRenderingTestHelper.h b/Modules/Core/TestingHelper/include/mitkRenderingTestHelper.h index 5b59101b074..b21e660f896 100644 --- a/Modules/Core/TestingHelper/include/mitkRenderingTestHelper.h +++ b/Modules/Core/TestingHelper/include/mitkRenderingTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRenderingTestHelper_h #define mitkRenderingTestHelper_h diff --git a/Modules/Core/TestingHelper/include/mitkTestCaller.h b/Modules/Core/TestingHelper/include/mitkTestCaller.h index 08f424f5cef..b329f7cc5c8 100644 --- a/Modules/Core/TestingHelper/include/mitkTestCaller.h +++ b/Modules/Core/TestingHelper/include/mitkTestCaller.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTESTCALLER_H #define MITKTESTCALLER_H diff --git a/Modules/Core/TestingHelper/include/mitkTestDynamicImageGenerator.h b/Modules/Core/TestingHelper/include/mitkTestDynamicImageGenerator.h index 67bc9f782ef..659d357d0da 100644 --- a/Modules/Core/TestingHelper/include/mitkTestDynamicImageGenerator.h +++ b/Modules/Core/TestingHelper/include/mitkTestDynamicImageGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __TEST_ARTIFACT_GENERATOR_H #define __TEST_ARTIFACT_GENERATOR_H diff --git a/Modules/Core/TestingHelper/include/mitkTestFixture.h b/Modules/Core/TestingHelper/include/mitkTestFixture.h index de97168b4b9..f0c881fae88 100644 --- a/Modules/Core/TestingHelper/include/mitkTestFixture.h +++ b/Modules/Core/TestingHelper/include/mitkTestFixture.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTESTFIXTURE_H #define MITKTESTFIXTURE_H diff --git a/Modules/Core/TestingHelper/include/mitkTestNotRunException.h b/Modules/Core/TestingHelper/include/mitkTestNotRunException.h index 542ca473482..c85bd0d769b 100644 --- a/Modules/Core/TestingHelper/include/mitkTestNotRunException.h +++ b/Modules/Core/TestingHelper/include/mitkTestNotRunException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTESTNOTRUNEXCEPTION_H #define MITKTESTNOTRUNEXCEPTION_H diff --git a/Modules/Core/TestingHelper/include/mitkTestingMacros.h b/Modules/Core/TestingHelper/include/mitkTestingMacros.h index add4e7e5578..8607ec89062 100644 --- a/Modules/Core/TestingHelper/include/mitkTestingMacros.h +++ b/Modules/Core/TestingHelper/include/mitkTestingMacros.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkTestingMacros_h #define mitkTestingMacros_h diff --git a/Modules/Core/TestingHelper/src/mitkInteractionTestHelper.cpp b/Modules/Core/TestingHelper/src/mitkInteractionTestHelper.cpp index 931e84b4495..dea87c3ef75 100644 --- a/Modules/Core/TestingHelper/src/mitkInteractionTestHelper.cpp +++ b/Modules/Core/TestingHelper/src/mitkInteractionTestHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Core/TestingHelper/src/mitkRenderingTestHelper.cpp b/Modules/Core/TestingHelper/src/mitkRenderingTestHelper.cpp index 0045414a448..4991a2d86eb 100644 --- a/Modules/Core/TestingHelper/src/mitkRenderingTestHelper.cpp +++ b/Modules/Core/TestingHelper/src/mitkRenderingTestHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // VTK #include diff --git a/Modules/Core/TestingHelper/src/mitkTestDynamicImageGenerator.cpp b/Modules/Core/TestingHelper/src/mitkTestDynamicImageGenerator.cpp index ccbc0097732..73a8af779d5 100644 --- a/Modules/Core/TestingHelper/src/mitkTestDynamicImageGenerator.cpp +++ b/Modules/Core/TestingHelper/src/mitkTestDynamicImageGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestDynamicImageGenerator.h" #include "mitkArbitraryTimeGeometry.h" diff --git a/Modules/Core/include/Colortables/HotIron.h b/Modules/Core/include/Colortables/HotIron.h index 6c597ddc399..b5e0829e165 100644 --- a/Modules/Core/include/Colortables/HotIron.h +++ b/Modules/Core/include/Colortables/HotIron.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _lut_HotIron_h_ #define _lut_HotIron_h_ diff --git a/Modules/Core/include/Colortables/Inferno.h b/Modules/Core/include/Colortables/Inferno.h index 2c3035af4de..2f1f149a153 100644 --- a/Modules/Core/include/Colortables/Inferno.h +++ b/Modules/Core/include/Colortables/Inferno.h @@ -1,26 +1,27 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. +============================================================================*/ -Raw data from new mathplolib colormaps see: +/*============================================================================ + +Raw data from matplotlib colormaps: https://github.com/BIDS/colormap/blob/master/colormaps.py -===================================================================*/ + +============================================================================*/ #ifndef _lut_Inferno_h_ #define _lut_Inferno_h_ static const int Inferno[256][3] = -{ +{ { 0, 0, 4 },{ 1, 0, 5 },{ 1, 1, 6 },{ 1, 1, 8 },{ 2, 1, 10 },{ 2, 2, 12 },{ 2, 2, 14 },{ 3, 2, 16 },{ 4, 3, 18 },{ 4, 3, 20 }, { 5, 4, 23 },{ 6, 4, 25 },{ 7, 5, 27 },{ 8, 5, 29 },{ 9, 6, 31 },{ 10, 7, 34 },{ 11, 7, 36 },{ 12, 8, 38 },{ 13, 8, 41 },{ 14, 9, 43 }, { 16, 9, 45 },{ 17, 10, 48 },{ 18, 10, 50 },{ 20, 11, 52 },{ 21, 11, 55 },{ 22, 11, 57 },{ 24, 12, 60 },{ 25, 12, 62 },{ 27, 12, 65 }, @@ -52,7 +53,7 @@ static const int Inferno[256][3] = { 245, 217, 73 },{ 245, 219, 76 },{ 244, 221, 79 },{ 244, 223, 83 },{ 244, 225, 86 },{ 243, 227, 90 },{ 243, 229, 93 },{ 242, 230, 97 }, { 242, 232, 101 },{ 242, 234, 105 },{ 241, 236, 109 },{ 241, 237, 113 },{ 241, 239, 117 },{ 241, 241, 121 },{ 242, 242, 125 }, { 242, 244, 130 },{ 243, 245, 134 },{ 243, 246, 138 },{ 244, 248, 142 },{ 245, 249, 146 },{ 246, 250, 150 },{ 248, 251, 154 }, - { 249, 252, 157 },{ 250, 253, 161 },{ 252, 255, 164 } + { 249, 252, 157 },{ 250, 253, 161 },{ 252, 255, 164 } }; #endif diff --git a/Modules/Core/include/Colortables/Jet.h b/Modules/Core/include/Colortables/Jet.h index ff0f8ffaa07..a2934ee00fd 100644 --- a/Modules/Core/include/Colortables/Jet.h +++ b/Modules/Core/include/Colortables/Jet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _lut_Jet_h_ #define _lut_Jet_h_ diff --git a/Modules/Core/include/Colortables/Magma.h b/Modules/Core/include/Colortables/Magma.h index ec7a639ee5e..5acd19fa46a 100644 --- a/Modules/Core/include/Colortables/Magma.h +++ b/Modules/Core/include/Colortables/Magma.h @@ -1,21 +1,21 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. +============================================================================*/ +/*============================================================================ -Raw data from new mathplolib colormaps see: +Raw data from matplotlib colormaps: https://github.com/BIDS/colormap/blob/master/colormaps.py -===================================================================*/ + +============================================================================*/ #ifndef _lut_Magma_h_ #define _lut_Magma_h_ @@ -54,7 +54,7 @@ static const int Magma[256][3] = { 254, 215, 153 },{ 254, 216, 154 },{ 253, 218, 156 },{ 253, 220, 158 },{ 253, 222, 160 },{ 253, 224, 161 },{ 253, 226, 163 }, { 253, 227, 165 },{ 253, 229, 167 },{ 253, 231, 169 },{ 253, 233, 170 },{ 253, 235, 172 },{ 252, 236, 174 },{ 252, 238, 176 }, { 252, 240, 178 },{ 252, 242, 180 },{ 252, 244, 182 },{ 252, 246, 184 },{ 252, 247, 185 },{ 252, 249, 187 },{ 252, 251, 189 }, - { 252, 253, 191 } + { 252, 253, 191 } }; #endif diff --git a/Modules/Core/include/Colortables/Multilabel.h b/Modules/Core/include/Colortables/Multilabel.h index 9575c688aa7..a80245c1f06 100644 --- a/Modules/Core/include/Colortables/Multilabel.h +++ b/Modules/Core/include/Colortables/Multilabel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _lut_Multilabel_h_ #define _lut_Multilabel_h_ diff --git a/Modules/Core/include/Colortables/PET20.h b/Modules/Core/include/Colortables/PET20.h index 9c5eda057b9..2a4d006e16b 100644 --- a/Modules/Core/include/Colortables/PET20.h +++ b/Modules/Core/include/Colortables/PET20.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _lut_PET20_h_ #define _lut_PET20_h_ diff --git a/Modules/Core/include/Colortables/PETColor.h b/Modules/Core/include/Colortables/PETColor.h index 82fa26bb07c..f3a1ca7ff6f 100644 --- a/Modules/Core/include/Colortables/PETColor.h +++ b/Modules/Core/include/Colortables/PETColor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _lut_PETColor_h_ #define _lut_PETColor_h_ diff --git a/Modules/Core/include/Colortables/Plasma.h b/Modules/Core/include/Colortables/Plasma.h index 9145406e97b..9f3ba333f36 100644 --- a/Modules/Core/include/Colortables/Plasma.h +++ b/Modules/Core/include/Colortables/Plasma.h @@ -1,20 +1,21 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. +============================================================================*/ -Raw data from new mathplolib colormaps see: +/*============================================================================ + +Raw data from matplotlib colormaps: https://github.com/BIDS/colormap/blob/master/colormaps.py -===================================================================*/ + +============================================================================*/ #ifndef _lut_Plasma_h_ #define _lut_Plasma_h_ @@ -54,6 +55,6 @@ static const int Plasma[256][3] = { 253, 202, 38 },{ 253, 203, 38 },{ 252, 205, 37 },{ 252, 206, 37 },{ 252, 208, 37 },{ 252, 210, 37 },{ 251, 211, 36 }, { 251, 213, 36 },{ 251, 215, 36 },{ 250, 216, 36 },{ 250, 218, 36 },{ 249, 220, 36 },{ 249, 221, 37 },{ 248, 223, 37 }, { 248, 225, 37 },{ 247, 226, 37 },{ 247, 228, 37 },{ 246, 230, 38 },{ 246, 232, 38 },{ 245, 233, 38 },{ 245, 235, 39 }, - { 244, 237, 39 },{ 243, 238, 39 },{ 243, 240, 39 },{ 242, 242, 39 },{ 241, 244, 38 },{ 241, 245, 37 },{ 240, 247, 36 },{ 240, 249, 33 } + { 244, 237, 39 },{ 243, 238, 39 },{ 243, 240, 39 },{ 242, 242, 39 },{ 241, 244, 38 },{ 241, 245, 37 },{ 240, 247, 36 },{ 240, 249, 33 } }; #endif diff --git a/Modules/Core/include/Colortables/Viridis.h b/Modules/Core/include/Colortables/Viridis.h index bcc968ff9e5..27c34b7ce8b 100644 --- a/Modules/Core/include/Colortables/Viridis.h +++ b/Modules/Core/include/Colortables/Viridis.h @@ -1,20 +1,21 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. +============================================================================*/ -Raw data from new mathplolib colormaps see: +/*============================================================================ + +Raw data from matplotlib colormaps: https://github.com/BIDS/colormap/blob/master/colormaps.py -===================================================================*/ + +============================================================================*/ #ifndef _lut_Viridis_h_ #define _lut_Viridis_h_ diff --git a/Modules/Core/include/itkImportMitkImageContainer.h b/Modules/Core/include/itkImportMitkImageContainer.h index 0c9bfcd31bb..9104e3dc084 100644 --- a/Modules/Core/include/itkImportMitkImageContainer.h +++ b/Modules/Core/include/itkImportMitkImageContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkImportMitkImageContainer_h #define __itkImportMitkImageContainer_h diff --git a/Modules/Core/include/itkImportMitkImageContainer.txx b/Modules/Core/include/itkImportMitkImageContainer.txx index 0602b9d9adc..ffd0d217863 100644 --- a/Modules/Core/include/itkImportMitkImageContainer.txx +++ b/Modules/Core/include/itkImportMitkImageContainer.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _itkImportMitkImageContainer_txx #define _itkImportMitkImageContainer_txx diff --git a/Modules/Core/include/itkMITKScalarImageToHistogramGenerator.h b/Modules/Core/include/itkMITKScalarImageToHistogramGenerator.h index 43859f88384..e211d7ab736 100644 --- a/Modules/Core/include/itkMITKScalarImageToHistogramGenerator.h +++ b/Modules/Core/include/itkMITKScalarImageToHistogramGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkMITKScalarImageToHistogramGenerator_h #define __itkMITKScalarImageToHistogramGenerator_h diff --git a/Modules/Core/include/itkMITKScalarImageToHistogramGenerator.txx b/Modules/Core/include/itkMITKScalarImageToHistogramGenerator.txx index c63b0b360cb..48202436c62 100644 --- a/Modules/Core/include/itkMITKScalarImageToHistogramGenerator.txx +++ b/Modules/Core/include/itkMITKScalarImageToHistogramGenerator.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/Core/include/itkVtkAbstractTransform.h b/Modules/Core/include/itkVtkAbstractTransform.h index 83f6ffd5c58..57c50301258 100644 --- a/Modules/Core/include/itkVtkAbstractTransform.h +++ b/Modules/Core/include/itkVtkAbstractTransform.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVTKABSTRACTTRANSFORM_H_HEADER_INCLUDED_C1C68A2C #define MITKVTKABSTRACTTRANSFORM_H_HEADER_INCLUDED_C1C68A2C diff --git a/Modules/Core/include/itkVtkAbstractTransform.txx b/Modules/Core/include/itkVtkAbstractTransform.txx index 565e0286d24..f00836fc515 100644 --- a/Modules/Core/include/itkVtkAbstractTransform.txx +++ b/Modules/Core/include/itkVtkAbstractTransform.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkVtkAbstractTransform.h" #include diff --git a/Modules/Core/include/mitkAbstractAnnotationRenderer.h b/Modules/Core/include/mitkAbstractAnnotationRenderer.h index 84170c9cc83..8ed17a15737 100644 --- a/Modules/Core/include/mitkAbstractAnnotationRenderer.h +++ b/Modules/Core/include/mitkAbstractAnnotationRenderer.h @@ -1,18 +1,14 @@ -/*=================================================================== - * +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef ABSTRACTANNOTATIONRENDERER_H #define ABSTRACTANNOTATIONRENDERER_H diff --git a/Modules/Core/include/mitkAbstractFileIO.h b/Modules/Core/include/mitkAbstractFileIO.h index f9bfa214ca1..b7885996221 100644 --- a/Modules/Core/include/mitkAbstractFileIO.h +++ b/Modules/Core/include/mitkAbstractFileIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKABSTRACTFILEIO_H #define MITKABSTRACTFILEIO_H diff --git a/Modules/Core/include/mitkAbstractFileReader.h b/Modules/Core/include/mitkAbstractFileReader.h index 66e6b69bf34..8b21bbde6b1 100644 --- a/Modules/Core/include/mitkAbstractFileReader.h +++ b/Modules/Core/include/mitkAbstractFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef AbstractFileReader_H_HEADER_INCLUDED_C1E7E521 #define AbstractFileReader_H_HEADER_INCLUDED_C1E7E521 diff --git a/Modules/Core/include/mitkAbstractFileWriter.h b/Modules/Core/include/mitkAbstractFileWriter.h index b276ba47deb..e8a64a25721 100644 --- a/Modules/Core/include/mitkAbstractFileWriter.h +++ b/Modules/Core/include/mitkAbstractFileWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef AbstractFileWriter_H_HEADER_INCLUDED_C1E7E521 #define AbstractFileWriter_H_HEADER_INCLUDED_C1E7E521 diff --git a/Modules/Core/include/mitkAbstractTransformGeometry.h b/Modules/Core/include/mitkAbstractTransformGeometry.h index c29cd01faca..30ffb262a11 100644 --- a/Modules/Core/include/mitkAbstractTransformGeometry.h +++ b/Modules/Core/include/mitkAbstractTransformGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVTKABSTRACTTRANSFORMPLANEGEOMETRY_H_HEADER_INCLUDED_C1C68A2C #define MITKVTKABSTRACTTRANSFORMPLANEGEOMETRY_H_HEADER_INCLUDED_C1C68A2C diff --git a/Modules/Core/include/mitkAction.h b/Modules/Core/include/mitkAction.h index 1cc99f503ab..fa1fb91a5d8 100644 --- a/Modules/Core/include/mitkAction.h +++ b/Modules/Core/include/mitkAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ACTION_H_HEADER_INCLUDED_C19AE06B #define ACTION_H_HEADER_INCLUDED_C19AE06B diff --git a/Modules/Core/include/mitkAffineTransform3D.h b/Modules/Core/include/mitkAffineTransform3D.h index f4745279023..8a12d47dd89 100644 --- a/Modules/Core/include/mitkAffineTransform3D.h +++ b/Modules/Core/include/mitkAffineTransform3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKAFFINETRANSFORM3D_H_ #define MITKAFFINETRANSFORM3D_H_ diff --git a/Modules/Core/include/mitkAnatomicalStructureColorPresets.h b/Modules/Core/include/mitkAnatomicalStructureColorPresets.h index cfa0404da90..f01da4a08ca 100644 --- a/Modules/Core/include/mitkAnatomicalStructureColorPresets.h +++ b/Modules/Core/include/mitkAnatomicalStructureColorPresets.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ANATOMICALSTRUCTURECOLORPRESETS_H_HEADER #define ANATOMICALSTRUCTURECOLORPRESETS_H_HEADER diff --git a/Modules/Core/include/mitkAnnotation.h b/Modules/Core/include/mitkAnnotation.h index 7e3530e0dbd..2dffee3c913 100644 --- a/Modules/Core/include/mitkAnnotation.h +++ b/Modules/Core/include/mitkAnnotation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef Annotation_H #define Annotation_H diff --git a/Modules/Core/include/mitkAnnotationProperty.h b/Modules/Core/include/mitkAnnotationProperty.h index 5169764732a..b8fcb0eb8a9 100644 --- a/Modules/Core/include/mitkAnnotationProperty.h +++ b/Modules/Core/include/mitkAnnotationProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKANNOTATIONPROPERTY_H_HEADER_INCLUDED #define MITKANNOTATIONPROPERTY_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkAnnotationUtils.h b/Modules/Core/include/mitkAnnotationUtils.h index 6502fa70b82..35657a0027c 100644 --- a/Modules/Core/include/mitkAnnotationUtils.h +++ b/Modules/Core/include/mitkAnnotationUtils.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAnnotationUtils_h #define mitkAnnotationUtils_h diff --git a/Modules/Core/include/mitkAntiAliasing.h b/Modules/Core/include/mitkAntiAliasing.h index 7eae9828a20..d8900b06fbb 100644 --- a/Modules/Core/include/mitkAntiAliasing.h +++ b/Modules/Core/include/mitkAntiAliasing.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAntiAliasing_h #define mitkAntiAliasing_h diff --git a/Modules/Core/include/mitkApplicationCursor.h b/Modules/Core/include/mitkApplicationCursor.h index cdbe15f7ffc..349c24cce2d 100644 --- a/Modules/Core/include/mitkApplicationCursor.h +++ b/Modules/Core/include/mitkApplicationCursor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_APPLICATION_CURSOR_H_DEFINED_AND_ALL_IS_GOOD #define MITK_APPLICATION_CURSOR_H_DEFINED_AND_ALL_IS_GOOD diff --git a/Modules/Core/include/mitkApplyTransformMatrixOperation.h b/Modules/Core/include/mitkApplyTransformMatrixOperation.h index d99cd06b327..472e147166a 100644 --- a/Modules/Core/include/mitkApplyTransformMatrixOperation.h +++ b/Modules/Core/include/mitkApplyTransformMatrixOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkApplyTransformMatrixOperation_h_Included #define mitkApplyTransformMatrixOperation_h_Included diff --git a/Modules/Core/include/mitkArbitraryTimeGeometry.h b/Modules/Core/include/mitkArbitraryTimeGeometry.h index 1b2657cbcab..fd63631f6d6 100644 --- a/Modules/Core/include/mitkArbitraryTimeGeometry.h +++ b/Modules/Core/include/mitkArbitraryTimeGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ArbitraryTimeGeometry_h #define ArbitraryTimeGeometry_h diff --git a/Modules/Core/include/mitkArray.h b/Modules/Core/include/mitkArray.h index cb19f36d472..73d6b34d26d 100644 --- a/Modules/Core/include/mitkArray.h +++ b/Modules/Core/include/mitkArray.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKARRAY_H_ #define MITKARRAY_H_ diff --git a/Modules/Core/include/mitkBaseController.h b/Modules/Core/include/mitkBaseController.h index 3c987ba04c0..111a514b362 100644 --- a/Modules/Core/include/mitkBaseController.h +++ b/Modules/Core/include/mitkBaseController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BASECONTROLLER_H_HEADER_INCLUDED_C1E745A3 #define BASECONTROLLER_H_HEADER_INCLUDED_C1E745A3 diff --git a/Modules/Core/include/mitkBaseData.h b/Modules/Core/include/mitkBaseData.h index f16340341e8..fa2c6534b19 100644 --- a/Modules/Core/include/mitkBaseData.h +++ b/Modules/Core/include/mitkBaseData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BASEDATA_H_HEADER_INCLUDED_C1EBB6FA #define BASEDATA_H_HEADER_INCLUDED_C1EBB6FA diff --git a/Modules/Core/include/mitkBaseDataSource.h b/Modules/Core/include/mitkBaseDataSource.h index eb8d0b3da5c..1e8b6efbc77 100644 --- a/Modules/Core/include/mitkBaseDataSource.h +++ b/Modules/Core/include/mitkBaseDataSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_BASE_DATA_SOURCE_H #define MITK_BASE_DATA_SOURCE_H diff --git a/Modules/Core/include/mitkBaseDataTestImplementation.h b/Modules/Core/include/mitkBaseDataTestImplementation.h index 3c2742e629b..d22649a5dbe 100644 --- a/Modules/Core/include/mitkBaseDataTestImplementation.h +++ b/Modules/Core/include/mitkBaseDataTestImplementation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BASEDATAIMPLEMENTATION_H_HEADER_INCLUDED #define BASEDATAIMPLEMENTATION_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkBaseGeometry.h b/Modules/Core/include/mitkBaseGeometry.h index e4accbf7159..59ce90af9b4 100644 --- a/Modules/Core/include/mitkBaseGeometry.h +++ b/Modules/Core/include/mitkBaseGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BaseGeometry_H_HEADER_INCLUDED #define BaseGeometry_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkBaseProcess.h b/Modules/Core/include/mitkBaseProcess.h index de74ec979ee..522478270fb 100644 --- a/Modules/Core/include/mitkBaseProcess.h +++ b/Modules/Core/include/mitkBaseProcess.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BASEPROCESS_H_HEADER_INCLUDED_C19BE6FC #define BASEPROCESS_H_HEADER_INCLUDED_C19BE6FC diff --git a/Modules/Core/include/mitkBaseProperty.h b/Modules/Core/include/mitkBaseProperty.h index 8d68a4da908..34a69994f7f 100644 --- a/Modules/Core/include/mitkBaseProperty.h +++ b/Modules/Core/include/mitkBaseProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BASEPROPERTY_H_HEADER_INCLUDED_C1F4DF54 #define BASEPROPERTY_H_HEADER_INCLUDED_C1F4DF54 diff --git a/Modules/Core/include/mitkBaseRenderer.h b/Modules/Core/include/mitkBaseRenderer.h index f830b018af6..60e88027d0f 100644 --- a/Modules/Core/include/mitkBaseRenderer.h +++ b/Modules/Core/include/mitkBaseRenderer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BASERENDERER_H_HEADER_INCLUDED_C1CCA0F4 #define BASERENDERER_H_HEADER_INCLUDED_C1CCA0F4 diff --git a/Modules/Core/include/mitkBindDispatcherInteractor.h b/Modules/Core/include/mitkBindDispatcherInteractor.h index 65c5e7d02fe..2d2cb8c510b 100644 --- a/Modules/Core/include/mitkBindDispatcherInteractor.h +++ b/Modules/Core/include/mitkBindDispatcherInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkBindDispatcherInteractor_h #define mitkBindDispatcherInteractor_h diff --git a/Modules/Core/include/mitkCallbackFromGUIThread.h b/Modules/Core/include/mitkCallbackFromGUIThread.h index 8e875600127..fe0d5c6d0bd 100644 --- a/Modules/Core/include/mitkCallbackFromGUIThread.h +++ b/Modules/Core/include/mitkCallbackFromGUIThread.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CALLBACK_WITHIN_GUI_TREAD_H_INCLUDGEWQ #define MITK_CALLBACK_WITHIN_GUI_TREAD_H_INCLUDGEWQ diff --git a/Modules/Core/include/mitkCameraController.h b/Modules/Core/include/mitkCameraController.h index 97bf7cabb7d..52536da2ca6 100644 --- a/Modules/Core/include/mitkCameraController.h +++ b/Modules/Core/include/mitkCameraController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CAMERACONTROLLER_H_HEADER_INCLUDED_C1C53722 #define CAMERACONTROLLER_H_HEADER_INCLUDED_C1C53722 diff --git a/Modules/Core/include/mitkCameraRotationController.h b/Modules/Core/include/mitkCameraRotationController.h index 94910dfd38d..7906c4b5d38 100644 --- a/Modules/Core/include/mitkCameraRotationController.h +++ b/Modules/Core/include/mitkCameraRotationController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CAMERAROTATIONCONTROLLER_H_HEADER_INCLUDED_NXYCBIU #define CAMERAROTATIONCONTROLLER_H_HEADER_INCLUDED_NXYCBIU diff --git a/Modules/Core/include/mitkChannelDescriptor.h b/Modules/Core/include/mitkChannelDescriptor.h index 9189efe1cd5..0480b64b603 100644 --- a/Modules/Core/include/mitkChannelDescriptor.h +++ b/Modules/Core/include/mitkChannelDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCHANNELDESCRIPTOR_H #define MITKCHANNELDESCRIPTOR_H diff --git a/Modules/Core/include/mitkClippedSurfaceBoundsCalculator.h b/Modules/Core/include/mitkClippedSurfaceBoundsCalculator.h index 0d06b38fd0e..611e3c7cddd 100644 --- a/Modules/Core/include/mitkClippedSurfaceBoundsCalculator.h +++ b/Modules/Core/include/mitkClippedSurfaceBoundsCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ClippedSurfaceBoundsCalculator_h_included #define ClippedSurfaceBoundsCalculator_h_included diff --git a/Modules/Core/include/mitkClippingProperty.h b/Modules/Core/include/mitkClippingProperty.h index d174910b492..563bf84584e 100644 --- a/Modules/Core/include/mitkClippingProperty.h +++ b/Modules/Core/include/mitkClippingProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCLIPPINGPROPERTY_H_HEADER_INCLUDED #define MITKCLIPPINGPROPERTY_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkColorProperty.h b/Modules/Core/include/mitkColorProperty.h index 2ee33b91d61..c25ce0ef156 100644 --- a/Modules/Core/include/mitkColorProperty.h +++ b/Modules/Core/include/mitkColorProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOLORPROPERTY_H_HEADER_INCLUDED_C17953D1 #define MITKCOLORPROPERTY_H_HEADER_INCLUDED_C17953D1 diff --git a/Modules/Core/include/mitkCommon.h b/Modules/Core/include/mitkCommon.h index 01a00f725ec..1670f75c079 100644 --- a/Modules/Core/include/mitkCommon.h +++ b/Modules/Core/include/mitkCommon.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_COMMON_H_DEFINED #define MITK_COMMON_H_DEFINED diff --git a/Modules/Core/include/mitkCompareImageDataFilter.h b/Modules/Core/include/mitkCompareImageDataFilter.h index af5a5908391..69ba9a993ce 100644 --- a/Modules/Core/include/mitkCompareImageDataFilter.h +++ b/Modules/Core/include/mitkCompareImageDataFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOMPAREIMAGEDATAFILTER_H #define MITKCOMPAREIMAGEDATAFILTER_H diff --git a/Modules/Core/include/mitkCompositePixelValueToString.h b/Modules/Core/include/mitkCompositePixelValueToString.h index 7c0ac6736cc..f7a0966e2d0 100644 --- a/Modules/Core/include/mitkCompositePixelValueToString.h +++ b/Modules/Core/include/mitkCompositePixelValueToString.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCompositePixelValueToString_h #define mitkCompositePixelValueToString_h diff --git a/Modules/Core/include/mitkConvert2Dto3DImageFilter.h b/Modules/Core/include/mitkConvert2Dto3DImageFilter.h index a2867ffab01..596b52d6473 100644 --- a/Modules/Core/include/mitkConvert2Dto3DImageFilter.h +++ b/Modules/Core/include/mitkConvert2Dto3DImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkConvert2Dto3DImageFilter_h #define __mitkConvert2Dto3DImageFilter_h diff --git a/Modules/Core/include/mitkCoreObjectFactory.h b/Modules/Core/include/mitkCoreObjectFactory.h index 444a70d99b9..f433966fae1 100644 --- a/Modules/Core/include/mitkCoreObjectFactory.h +++ b/Modules/Core/include/mitkCoreObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef COREOBJECTFACTORY_H_INCLUDED #define COREOBJECTFACTORY_H_INCLUDED diff --git a/Modules/Core/include/mitkCoreObjectFactoryBase.h b/Modules/Core/include/mitkCoreObjectFactoryBase.h index bc9b858d842..47b10587702 100644 --- a/Modules/Core/include/mitkCoreObjectFactoryBase.h +++ b/Modules/Core/include/mitkCoreObjectFactoryBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef COREOBJECTFACTORYBASE_H_INCLUDED #define COREOBJECTFACTORYBASE_H_INCLUDED diff --git a/Modules/Core/include/mitkCoreServices.h b/Modules/Core/include/mitkCoreServices.h index 2e6dffd073c..f32ec04b613 100644 --- a/Modules/Core/include/mitkCoreServices.h +++ b/Modules/Core/include/mitkCoreServices.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCORESERVICES_H #define MITKCORESERVICES_H diff --git a/Modules/Core/include/mitkCrosshairPositionEvent.h b/Modules/Core/include/mitkCrosshairPositionEvent.h index 29c1ad9b17e..0d22b2969f3 100644 --- a/Modules/Core/include/mitkCrosshairPositionEvent.h +++ b/Modules/Core/include/mitkCrosshairPositionEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCrosshairPositionEvent_h #define mitkCrosshairPositionEvent_h diff --git a/Modules/Core/include/mitkCustomMimeType.h b/Modules/Core/include/mitkCustomMimeType.h index 3ca43dab621..5e609a81aa8 100644 --- a/Modules/Core/include/mitkCustomMimeType.h +++ b/Modules/Core/include/mitkCustomMimeType.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCUSTOMMIMETYPE_H #define MITKCUSTOMMIMETYPE_H diff --git a/Modules/Core/include/mitkDataInteractor.h b/Modules/Core/include/mitkDataInteractor.h index 664c3fbeb4d..2bd7163aef3 100644 --- a/Modules/Core/include/mitkDataInteractor.h +++ b/Modules/Core/include/mitkDataInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKDATAINTERACTOR_H_ #define MITKDATAINTERACTOR_H_ diff --git a/Modules/Core/include/mitkDataNode.h b/Modules/Core/include/mitkDataNode.h index ad0f5200315..b32e06ac08b 100644 --- a/Modules/Core/include/mitkDataNode.h +++ b/Modules/Core/include/mitkDataNode.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef DATATREENODE_H_HEADER_INCLUDED_C1E14338 #define DATATREENODE_H_HEADER_INCLUDED_C1E14338 diff --git a/Modules/Core/include/mitkDataNodeSource.h b/Modules/Core/include/mitkDataNodeSource.h index a7b2a909339..25307fd6bf5 100644 --- a/Modules/Core/include/mitkDataNodeSource.h +++ b/Modules/Core/include/mitkDataNodeSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_DATA_TREE_NODE_SOURCE_H #define _MITK_DATA_TREE_NODE_SOURCE_H diff --git a/Modules/Core/include/mitkDataStorage.h b/Modules/Core/include/mitkDataStorage.h index b382752c63e..b4f451a46c1 100644 --- a/Modules/Core/include/mitkDataStorage.h +++ b/Modules/Core/include/mitkDataStorage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDATASTORAGE_H #define MITKDATASTORAGE_H diff --git a/Modules/Core/include/mitkDispatcher.h b/Modules/Core/include/mitkDispatcher.h index cbf588875f5..4aa680f8361 100644 --- a/Modules/Core/include/mitkDispatcher.h +++ b/Modules/Core/include/mitkDispatcher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkDispatcher_h #define mitkDispatcher_h diff --git a/Modules/Core/include/mitkDisplayActionEventBroadcast.h b/Modules/Core/include/mitkDisplayActionEventBroadcast.h index 2de13c15586..d374408426e 100644 --- a/Modules/Core/include/mitkDisplayActionEventBroadcast.h +++ b/Modules/Core/include/mitkDisplayActionEventBroadcast.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical Image Computing. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKDISPLAYACTIONEVENTBROADCAST_H #define MITKDISPLAYACTIONEVENTBROADCAST_H diff --git a/Modules/Core/include/mitkDisplayActionEventFunctions.h b/Modules/Core/include/mitkDisplayActionEventFunctions.h index 519d022c6ec..a2ca0f03512 100644 --- a/Modules/Core/include/mitkDisplayActionEventFunctions.h +++ b/Modules/Core/include/mitkDisplayActionEventFunctions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDISPLAYACTIONEVENTFUNCTIONS_H #define MITKDISPLAYACTIONEVENTFUNCTIONS_H diff --git a/Modules/Core/include/mitkDisplayActionEventHandler.h b/Modules/Core/include/mitkDisplayActionEventHandler.h index f9356ebae2c..331844e45fe 100644 --- a/Modules/Core/include/mitkDisplayActionEventHandler.h +++ b/Modules/Core/include/mitkDisplayActionEventHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDISPLAYACTIONEVENTHANDLER_H #define MITKDISPLAYACTIONEVENTHANDLER_H diff --git a/Modules/Core/include/mitkDisplayActionEventHandlerDesynchronized.h b/Modules/Core/include/mitkDisplayActionEventHandlerDesynchronized.h index fcb947d18e7..dd2362b42b0 100644 --- a/Modules/Core/include/mitkDisplayActionEventHandlerDesynchronized.h +++ b/Modules/Core/include/mitkDisplayActionEventHandlerDesynchronized.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDISPLAYACTIONEVENTHANDLERDESYNCHRONIZED_H #define MITKDISPLAYACTIONEVENTHANDLERDESYNCHRONIZED_H diff --git a/Modules/Core/include/mitkDisplayActionEventHandlerStd.h b/Modules/Core/include/mitkDisplayActionEventHandlerStd.h index 0d351ff03fd..f8fa52201a5 100644 --- a/Modules/Core/include/mitkDisplayActionEventHandlerStd.h +++ b/Modules/Core/include/mitkDisplayActionEventHandlerStd.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDISPLAYACTIONEVENTHANDLERSTD_H #define MITKDISPLAYACTIONEVENTHANDLERSTD_H diff --git a/Modules/Core/include/mitkDisplayActionEventHandlerSynchronized.h b/Modules/Core/include/mitkDisplayActionEventHandlerSynchronized.h index 98943994979..a45bbb4a47f 100644 --- a/Modules/Core/include/mitkDisplayActionEventHandlerSynchronized.h +++ b/Modules/Core/include/mitkDisplayActionEventHandlerSynchronized.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDISPLAYACTIONEVENTHANDLERSYNCHRONIZED_H #define MITKDISPLAYACTIONEVENTHANDLERSYNCHRONIZED_H diff --git a/Modules/Core/include/mitkDisplayActionEvents.h b/Modules/Core/include/mitkDisplayActionEvents.h index ba1c89775cb..ba069e72137 100644 --- a/Modules/Core/include/mitkDisplayActionEvents.h +++ b/Modules/Core/include/mitkDisplayActionEvents.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDISPLAYACTIONEVENTS_H #define MITKDISPLAYACTIONEVENTS_H diff --git a/Modules/Core/include/mitkDisplayCoordinateOperation.h b/Modules/Core/include/mitkDisplayCoordinateOperation.h index e24cfb75505..b37a864f4a0 100644 --- a/Modules/Core/include/mitkDisplayCoordinateOperation.h +++ b/Modules/Core/include/mitkDisplayCoordinateOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDISPLAYCOORDINATEOPERATION_H_HEADER_INCLUDED_C10E33D0 #define MITKDISPLAYCOORDINATEOPERATION_H_HEADER_INCLUDED_C10E33D0 diff --git a/Modules/Core/include/mitkDisplayInteractor.h b/Modules/Core/include/mitkDisplayInteractor.h index 9b1aa18389d..b4023c88294 100644 --- a/Modules/Core/include/mitkDisplayInteractor.h +++ b/Modules/Core/include/mitkDisplayInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkDisplayInteractor_h #define mitkDisplayInteractor_h diff --git a/Modules/Core/include/mitkEnumerationProperty.h b/Modules/Core/include/mitkEnumerationProperty.h index 6da1aa891b0..40c8975f6ee 100644 --- a/Modules/Core/include/mitkEnumerationProperty.h +++ b/Modules/Core/include/mitkEnumerationProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkEnumerationProperty_h #define mitkEnumerationProperty_h diff --git a/Modules/Core/include/mitkEqual.h b/Modules/Core/include/mitkEqual.h index 664a7823a1c..89539d640fc 100644 --- a/Modules/Core/include/mitkEqual.h +++ b/Modules/Core/include/mitkEqual.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + /* * mitkEqual.h * diff --git a/Modules/Core/include/mitkEventConfig.h b/Modules/Core/include/mitkEventConfig.h index 4e98e8192cd..afcbe5524ce 100755 --- a/Modules/Core/include/mitkEventConfig.h +++ b/Modules/Core/include/mitkEventConfig.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkStateMachineConfig_h #define mitkStateMachineConfig_h diff --git a/Modules/Core/include/mitkEventFactory.h b/Modules/Core/include/mitkEventFactory.h index 5e59cd71480..dbdd8fc9489 100755 --- a/Modules/Core/include/mitkEventFactory.h +++ b/Modules/Core/include/mitkEventFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkEventFactory_h #define mitkEventFactory_h diff --git a/Modules/Core/include/mitkEventInformer.h b/Modules/Core/include/mitkEventInformer.h index 7a26dbf59b2..53897deaecd 100644 --- a/Modules/Core/include/mitkEventInformer.h +++ b/Modules/Core/include/mitkEventInformer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkEventInformer_h #define mitkEventInformer_h diff --git a/Modules/Core/include/mitkEventRecorder.h b/Modules/Core/include/mitkEventRecorder.h index 1a36c653c8d..e5b8d57721d 100644 --- a/Modules/Core/include/mitkEventRecorder.h +++ b/Modules/Core/include/mitkEventRecorder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkEventRecorder_h #define mitkEventRecorder_h diff --git a/Modules/Core/include/mitkEventStateMachine.h b/Modules/Core/include/mitkEventStateMachine.h index ff32657ec8a..feea8c476f0 100644 --- a/Modules/Core/include/mitkEventStateMachine.h +++ b/Modules/Core/include/mitkEventStateMachine.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKEVENTSTATEMACHINE_H_ #define MITKEVENTSTATEMACHINE_H_ diff --git a/Modules/Core/include/mitkException.h b/Modules/Core/include/mitkException.h index 04bcb8cceef..0465afc949b 100644 --- a/Modules/Core/include/mitkException.h +++ b/Modules/Core/include/mitkException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEXCEPTION_H_INCLUDED #define MITKEXCEPTION_H_INCLUDED diff --git a/Modules/Core/include/mitkExceptionMacro.h b/Modules/Core/include/mitkExceptionMacro.h index b54c9638cea..c613b21f67b 100644 --- a/Modules/Core/include/mitkExceptionMacro.h +++ b/Modules/Core/include/mitkExceptionMacro.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_EXCEPTIONMACRO_H_DEFINED #define MITK_EXCEPTIONMACRO_H_DEFINED diff --git a/Modules/Core/include/mitkExtractSliceFilter.h b/Modules/Core/include/mitkExtractSliceFilter.h index 5cdfd575a2e..c9a44b701e8 100644 --- a/Modules/Core/include/mitkExtractSliceFilter.h +++ b/Modules/Core/include/mitkExtractSliceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkExtractSliceFilter_h_Included #define mitkExtractSliceFilter_h_Included diff --git a/Modules/Core/include/mitkExtractSliceFilter2.h b/Modules/Core/include/mitkExtractSliceFilter2.h index aac96665cf6..6483f02503d 100644 --- a/Modules/Core/include/mitkExtractSliceFilter2.h +++ b/Modules/Core/include/mitkExtractSliceFilter2.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkExtractSliceFilter2_h #define mitkExtractSliceFilter2_h diff --git a/Modules/Core/include/mitkFileReader.h b/Modules/Core/include/mitkFileReader.h index 718520cc5fd..6ee50bc83a8 100644 --- a/Modules/Core/include/mitkFileReader.h +++ b/Modules/Core/include/mitkFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef FILEREADER_H_HEADER_INCLUDED_C1E7E521 #define FILEREADER_H_HEADER_INCLUDED_C1E7E521 diff --git a/Modules/Core/include/mitkFileReaderRegistry.h b/Modules/Core/include/mitkFileReaderRegistry.h index 9b3174829ac..9e55cc156d6 100644 --- a/Modules/Core/include/mitkFileReaderRegistry.h +++ b/Modules/Core/include/mitkFileReaderRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef FileReaderRegistry_H_HEADER_INCLUDED_C1E7E521 #define FileReaderRegistry_H_HEADER_INCLUDED_C1E7E521 diff --git a/Modules/Core/include/mitkFileReaderSelector.h b/Modules/Core/include/mitkFileReaderSelector.h index 7f0d37ef1d5..8507d0dcee6 100644 --- a/Modules/Core/include/mitkFileReaderSelector.h +++ b/Modules/Core/include/mitkFileReaderSelector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKFILEREADERSELECTOR_H #define MITKFILEREADERSELECTOR_H diff --git a/Modules/Core/include/mitkFileWriter.h b/Modules/Core/include/mitkFileWriter.h index 99e47717f04..884e313166e 100644 --- a/Modules/Core/include/mitkFileWriter.h +++ b/Modules/Core/include/mitkFileWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef FILEWRITER_H_HEADER_INCLUDED #define FILEWRITER_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkFileWriterRegistry.h b/Modules/Core/include/mitkFileWriterRegistry.h index 3b91e6796bf..49364b09fde 100644 --- a/Modules/Core/include/mitkFileWriterRegistry.h +++ b/Modules/Core/include/mitkFileWriterRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef FileWriterRegistry_H_HEADER_INCLUDED_C1E7E521 #define FileWriterRegistry_H_HEADER_INCLUDED_C1E7E521 diff --git a/Modules/Core/include/mitkFileWriterSelector.h b/Modules/Core/include/mitkFileWriterSelector.h index c7808775a94..33915c7977b 100644 --- a/Modules/Core/include/mitkFileWriterSelector.h +++ b/Modules/Core/include/mitkFileWriterSelector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKFILEWRITERSELECTOR_H #define MITKFILEWRITERSELECTOR_H diff --git a/Modules/Core/include/mitkFileWriterWithInformation.h b/Modules/Core/include/mitkFileWriterWithInformation.h index bd43a4144f8..4aec2dc1b89 100644 --- a/Modules/Core/include/mitkFileWriterWithInformation.h +++ b/Modules/Core/include/mitkFileWriterWithInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef FILEWRITERWITHINFORMATION_H_INCLUDED #define FILEWRITERWITHINFORMATION_H_INCLUDED diff --git a/Modules/Core/include/mitkFloatPropertyExtension.h b/Modules/Core/include/mitkFloatPropertyExtension.h index ac870bc18d8..71847c75724 100644 --- a/Modules/Core/include/mitkFloatPropertyExtension.h +++ b/Modules/Core/include/mitkFloatPropertyExtension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFloatPropertyExtension_h #define mitkFloatPropertyExtension_h diff --git a/Modules/Core/include/mitkGenericIDRelationRule.h b/Modules/Core/include/mitkGenericIDRelationRule.h index ee8b9353993..36169d8dd36 100644 --- a/Modules/Core/include/mitkGenericIDRelationRule.h +++ b/Modules/Core/include/mitkGenericIDRelationRule.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGenericIDRelationRule_h #define mitkGenericIDRelationRule_h diff --git a/Modules/Core/include/mitkGenericLookupTable.h b/Modules/Core/include/mitkGenericLookupTable.h index ec6b6c31092..3e57c46c431 100644 --- a/Modules/Core/include/mitkGenericLookupTable.h +++ b/Modules/Core/include/mitkGenericLookupTable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGENERICLOOKUPTABLE_H_HEADER_INCLUDED_C1061CEE #define MITKGENERICLOOKUPTABLE_H_HEADER_INCLUDED_C1061CEE diff --git a/Modules/Core/include/mitkGenericProperty.h b/Modules/Core/include/mitkGenericProperty.h index 25e9b980c10..49fc8426a3f 100644 --- a/Modules/Core/include/mitkGenericProperty.h +++ b/Modules/Core/include/mitkGenericProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGENERICPROPERTY_H_HEADER_INCLUDED_C1061CEE #define MITKGENERICPROPERTY_H_HEADER_INCLUDED_C1061CEE diff --git a/Modules/Core/include/mitkGeometry3D.h b/Modules/Core/include/mitkGeometry3D.h index 3e978427705..08a4e12a876 100644 --- a/Modules/Core/include/mitkGeometry3D.h +++ b/Modules/Core/include/mitkGeometry3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef GEOMETRY3D_H_HEADER_INCLUDED_C1EBD0AD #define GEOMETRY3D_H_HEADER_INCLUDED_C1EBD0AD diff --git a/Modules/Core/include/mitkGeometryData.h b/Modules/Core/include/mitkGeometryData.h index a4dc6b41370..101657b7847 100644 --- a/Modules/Core/include/mitkGeometryData.h +++ b/Modules/Core/include/mitkGeometryData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGEOMETRYDATA_H_HEADER_INCLUDED_C19C01E2 #define MITKGEOMETRYDATA_H_HEADER_INCLUDED_C19C01E2 diff --git a/Modules/Core/include/mitkGeometryDataReaderService.h b/Modules/Core/include/mitkGeometryDataReaderService.h index 4c175d8d5ae..6bdb38da255 100644 --- a/Modules/Core/include/mitkGeometryDataReaderService.h +++ b/Modules/Core/include/mitkGeometryDataReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGeometryDataReaderService_h #define mitkGeometryDataReaderService_h diff --git a/Modules/Core/include/mitkGeometryDataWriterService.h b/Modules/Core/include/mitkGeometryDataWriterService.h index 06a702593e8..6544cd8f4ee 100644 --- a/Modules/Core/include/mitkGeometryDataWriterService.h +++ b/Modules/Core/include/mitkGeometryDataWriterService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGeometryDataWriterService_h #define mitkGeometryDataWriterService_h diff --git a/Modules/Core/include/mitkGeometryTransformHolder.h b/Modules/Core/include/mitkGeometryTransformHolder.h index b013453440b..66dabdeae08 100644 --- a/Modules/Core/include/mitkGeometryTransformHolder.h +++ b/Modules/Core/include/mitkGeometryTransformHolder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGEOMETRYTRANSFORMHOLDER_H_ #define MITKGEOMETRYTRANSFORMHOLDER_H_ diff --git a/Modules/Core/include/mitkGetClassHierarchy.h b/Modules/Core/include/mitkGetClassHierarchy.h index b1b6c9b1bb3..c2d52199d7c 100644 --- a/Modules/Core/include/mitkGetClassHierarchy.h +++ b/Modules/Core/include/mitkGetClassHierarchy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGETCLASSHIERARCHY_H #define MITKGETCLASSHIERARCHY_H diff --git a/Modules/Core/include/mitkGradientBackground.h b/Modules/Core/include/mitkGradientBackground.h index f78e7d44218..d095a03c3da 100644 --- a/Modules/Core/include/mitkGradientBackground.h +++ b/Modules/Core/include/mitkGradientBackground.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGradientBackground_h #define mitkGradientBackground_h diff --git a/Modules/Core/include/mitkGroupTagProperty.h b/Modules/Core/include/mitkGroupTagProperty.h index 3cfc54a3dec..b99b1dde8a1 100644 --- a/Modules/Core/include/mitkGroupTagProperty.h +++ b/Modules/Core/include/mitkGroupTagProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef GROUPTAGPROPERTY_H_HEADER_INCLUDED_C1F4DF54 #define GROUPTAGPROPERTY_H_HEADER_INCLUDED_C1F4DF54 diff --git a/Modules/Core/include/mitkHistogramGenerator.h b/Modules/Core/include/mitkHistogramGenerator.h index 4ce2b365c95..887582b65cb 100644 --- a/Modules/Core/include/mitkHistogramGenerator.h +++ b/Modules/Core/include/mitkHistogramGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef HISTOGRAM_GENERATOR_H_HEADER_INCLUDED #define HISTOGRAM_GENERATOR_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkIFileIO.h b/Modules/Core/include/mitkIFileIO.h index a7f7eb06dff..4a4e35e4856 100644 --- a/Modules/Core/include/mitkIFileIO.h +++ b/Modules/Core/include/mitkIFileIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIFILEIO_H #define MITKIFILEIO_H diff --git a/Modules/Core/include/mitkIFileReader.h b/Modules/Core/include/mitkIFileReader.h index 7b439fc6658..c67c9257784 100644 --- a/Modules/Core/include/mitkIFileReader.h +++ b/Modules/Core/include/mitkIFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IFileReader_H_HEADER_INCLUDED_C1E7E521 #define IFileReader_H_HEADER_INCLUDED_C1E7E521 diff --git a/Modules/Core/include/mitkIFileWriter.h b/Modules/Core/include/mitkIFileWriter.h index 24d4d45a025..20cd64970bc 100644 --- a/Modules/Core/include/mitkIFileWriter.h +++ b/Modules/Core/include/mitkIFileWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IFileWriter_H_HEADER_INCLUDED_C1E7E521 #define IFileWriter_H_HEADER_INCLUDED_C1E7E521 diff --git a/Modules/Core/include/mitkIMimeTypeProvider.h b/Modules/Core/include/mitkIMimeTypeProvider.h index a4ab2cc1918..cbaa27ea5ec 100644 --- a/Modules/Core/include/mitkIMimeTypeProvider.h +++ b/Modules/Core/include/mitkIMimeTypeProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMIMETYPEPROVIDER_H #define MITKIMIMETYPEPROVIDER_H diff --git a/Modules/Core/include/mitkIOAdapter.h b/Modules/Core/include/mitkIOAdapter.h index f47a4e356b5..dffa1326637 100644 --- a/Modules/Core/include/mitkIOAdapter.h +++ b/Modules/Core/include/mitkIOAdapter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkIOAdapter_h #define __mitkIOAdapter_h diff --git a/Modules/Core/include/mitkIOConstants.h b/Modules/Core/include/mitkIOConstants.h index b5da67d08c0..476a08a74ee 100644 --- a/Modules/Core/include/mitkIOConstants.h +++ b/Modules/Core/include/mitkIOConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIOCONSTANTS_H_ #define MITKIOCONSTANTS_H_ diff --git a/Modules/Core/include/mitkIOMimeTypes.h b/Modules/Core/include/mitkIOMimeTypes.h index 1d7b1d2e89f..8df3c8f9905 100644 --- a/Modules/Core/include/mitkIOMimeTypes.h +++ b/Modules/Core/include/mitkIOMimeTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIOMIMETYPES_H #define MITKIOMIMETYPES_H diff --git a/Modules/Core/include/mitkIOUtil.h b/Modules/Core/include/mitkIOUtil.h index 7e790074484..47324155138 100644 --- a/Modules/Core/include/mitkIOUtil.h +++ b/Modules/Core/include/mitkIOUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIOUTIL_H #define MITKIOUTIL_H diff --git a/Modules/Core/include/mitkIPersistenceService.h b/Modules/Core/include/mitkIPersistenceService.h index 9ec3ac4be73..175777be24d 100644 --- a/Modules/Core/include/mitkIPersistenceService.h +++ b/Modules/Core/include/mitkIPersistenceService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPersistenceService_h #define mitkIPersistenceService_h diff --git a/Modules/Core/include/mitkIPropertyAliases.h b/Modules/Core/include/mitkIPropertyAliases.h index 9f5e40ec634..b5d220cf3a3 100644 --- a/Modules/Core/include/mitkIPropertyAliases.h +++ b/Modules/Core/include/mitkIPropertyAliases.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPropertyAliases_h #define mitkIPropertyAliases_h diff --git a/Modules/Core/include/mitkIPropertyDescriptions.h b/Modules/Core/include/mitkIPropertyDescriptions.h index 0262360e328..b9c8659ec7c 100644 --- a/Modules/Core/include/mitkIPropertyDescriptions.h +++ b/Modules/Core/include/mitkIPropertyDescriptions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPropertyDescriptions_h #define mitkIPropertyDescriptions_h diff --git a/Modules/Core/include/mitkIPropertyExtensions.h b/Modules/Core/include/mitkIPropertyExtensions.h index 9322515fa2c..c9ad569eb10 100644 --- a/Modules/Core/include/mitkIPropertyExtensions.h +++ b/Modules/Core/include/mitkIPropertyExtensions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPropertyExtensions_h #define mitkIPropertyExtensions_h diff --git a/Modules/Core/include/mitkIPropertyFilters.h b/Modules/Core/include/mitkIPropertyFilters.h index ed7b7e40806..57e4ac7dc9e 100644 --- a/Modules/Core/include/mitkIPropertyFilters.h +++ b/Modules/Core/include/mitkIPropertyFilters.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPropertyFilters_h #define mitkIPropertyFilters_h diff --git a/Modules/Core/include/mitkIPropertyOwner.h b/Modules/Core/include/mitkIPropertyOwner.h index 35248bf728a..eb774ce6f14 100644 --- a/Modules/Core/include/mitkIPropertyOwner.h +++ b/Modules/Core/include/mitkIPropertyOwner.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPropertyOwner_h #define mitkIPropertyOwner_h diff --git a/Modules/Core/include/mitkIPropertyPersistence.h b/Modules/Core/include/mitkIPropertyPersistence.h index 5bcf600fc10..a778e876022 100644 --- a/Modules/Core/include/mitkIPropertyPersistence.h +++ b/Modules/Core/include/mitkIPropertyPersistence.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPropertyPersistence_h #define mitkIPropertyPersistence_h diff --git a/Modules/Core/include/mitkIPropertyProvider.h b/Modules/Core/include/mitkIPropertyProvider.h index d82a6104eeb..f42b41e49d3 100644 --- a/Modules/Core/include/mitkIPropertyProvider.h +++ b/Modules/Core/include/mitkIPropertyProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPropertyProvider_h #define mitkIPropertyProvider_h diff --git a/Modules/Core/include/mitkIPropertyRelations.h b/Modules/Core/include/mitkIPropertyRelations.h index 11ca41b8e34..45476b48d01 100644 --- a/Modules/Core/include/mitkIPropertyRelations.h +++ b/Modules/Core/include/mitkIPropertyRelations.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPropertyRelations_h #define mitkIPropertyRelations_h diff --git a/Modules/Core/include/mitkITKImageImport.h b/Modules/Core/include/mitkITKImageImport.h index 97653e8df1d..d0d1643a735 100644 --- a/Modules/Core/include/mitkITKImageImport.h +++ b/Modules/Core/include/mitkITKImageImport.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKITKIMAGEIMPORT_H_HEADER_INCLUDED_C1E4861D #define MITKITKIMAGEIMPORT_H_HEADER_INCLUDED_C1E4861D diff --git a/Modules/Core/include/mitkITKImageImport.txx b/Modules/Core/include/mitkITKImageImport.txx index 5a81f0985ca..5e15366fdb1 100644 --- a/Modules/Core/include/mitkITKImageImport.txx +++ b/Modules/Core/include/mitkITKImageImport.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkITKImageImport_txx #define __mitkITKImageImport_txx diff --git a/Modules/Core/include/mitkIdentifiable.h b/Modules/Core/include/mitkIdentifiable.h index be092cc44e3..1d6412cfc77 100644 --- a/Modules/Core/include/mitkIdentifiable.h +++ b/Modules/Core/include/mitkIdentifiable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIdentifiable_h #define mitkIdentifiable_h diff --git a/Modules/Core/include/mitkImage.h b/Modules/Core/include/mitkImage.h index 8989ca5bf78..d83961b625c 100644 --- a/Modules/Core/include/mitkImage.h +++ b/Modules/Core/include/mitkImage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGE_H_HEADER_INCLUDED_C1C2FCD2 #define MITKIMAGE_H_HEADER_INCLUDED_C1C2FCD2 diff --git a/Modules/Core/include/mitkImageAccessByItk.h b/Modules/Core/include/mitkImageAccessByItk.h index 1e33711619f..aae0c058f14 100644 --- a/Modules/Core/include/mitkImageAccessByItk.h +++ b/Modules/Core/include/mitkImageAccessByItk.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEACCESSBYITK_H_HEADER_INCLUDED #define MITKIMAGEACCESSBYITK_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkImageAccessorBase.h b/Modules/Core/include/mitkImageAccessorBase.h index 71bbba1d6fe..e80978f4359 100644 --- a/Modules/Core/include/mitkImageAccessorBase.h +++ b/Modules/Core/include/mitkImageAccessorBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEACCESSORBASE_H #define MITKIMAGEACCESSORBASE_H diff --git a/Modules/Core/include/mitkImageCast.h b/Modules/Core/include/mitkImageCast.h index 0c3d15ec519..dfb27b50a35 100644 --- a/Modules/Core/include/mitkImageCast.h +++ b/Modules/Core/include/mitkImageCast.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGECAST_H_HEADER_INCLUDED #define MITKIMAGECAST_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkImageCast.txx b/Modules/Core/include/mitkImageCast.txx index d613e0aee24..d6ff7f7ffb9 100644 --- a/Modules/Core/include/mitkImageCast.txx +++ b/Modules/Core/include/mitkImageCast.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/include/mitkImageCaster.h b/Modules/Core/include/mitkImageCaster.h index 48944257293..46aeb9fdaf4 100644 --- a/Modules/Core/include/mitkImageCaster.h +++ b/Modules/Core/include/mitkImageCaster.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGECASTER_H #define MITKIMAGECASTER_H diff --git a/Modules/Core/include/mitkImageChannelSelector.h b/Modules/Core/include/mitkImageChannelSelector.h index 23a8d9ace83..9d0845b1bbb 100644 --- a/Modules/Core/include/mitkImageChannelSelector.h +++ b/Modules/Core/include/mitkImageChannelSelector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGECHANNELSELECTOR_H_HEADER_INCLUDED_C1E4F4E7 #define IMAGECHANNELSELECTOR_H_HEADER_INCLUDED_C1E4F4E7 diff --git a/Modules/Core/include/mitkImageDataItem.h b/Modules/Core/include/mitkImageDataItem.h index 6f06aa77fa9..f221d344a89 100644 --- a/Modules/Core/include/mitkImageDataItem.h +++ b/Modules/Core/include/mitkImageDataItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGEDATAITEM_H #define IMAGEDATAITEM_H diff --git a/Modules/Core/include/mitkImageDescriptor.h b/Modules/Core/include/mitkImageDescriptor.h index eebc5820e57..d0399aca589 100644 --- a/Modules/Core/include/mitkImageDescriptor.h +++ b/Modules/Core/include/mitkImageDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEDESCRIPTOR_H #define MITKIMAGEDESCRIPTOR_H diff --git a/Modules/Core/include/mitkImageGenerator.h b/Modules/Core/include/mitkImageGenerator.h index 0e9b75a10a3..5642b6355ba 100644 --- a/Modules/Core/include/mitkImageGenerator.h +++ b/Modules/Core/include/mitkImageGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ImageGenerator_H_HEADER_INCLUDED #define ImageGenerator_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkImagePixelAccessor.h b/Modules/Core/include/mitkImagePixelAccessor.h index 479908099aa..37565d4cc17 100644 --- a/Modules/Core/include/mitkImagePixelAccessor.h +++ b/Modules/Core/include/mitkImagePixelAccessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEPIXELACCESSOR_H #define MITKIMAGEPIXELACCESSOR_H diff --git a/Modules/Core/include/mitkImagePixelReadAccessor.h b/Modules/Core/include/mitkImagePixelReadAccessor.h index 4c0d42b33d9..6034ce61bca 100644 --- a/Modules/Core/include/mitkImagePixelReadAccessor.h +++ b/Modules/Core/include/mitkImagePixelReadAccessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEPIXELREADACCESSOR_H #define MITKIMAGEPIXELREADACCESSOR_H diff --git a/Modules/Core/include/mitkImagePixelWriteAccessor.h b/Modules/Core/include/mitkImagePixelWriteAccessor.h index 736f0ca5f65..40b0e50cd21 100644 --- a/Modules/Core/include/mitkImagePixelWriteAccessor.h +++ b/Modules/Core/include/mitkImagePixelWriteAccessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEPIXELWRITEACCESSOR_H #define MITKIMAGEPIXELWRITEACCESSOR_H diff --git a/Modules/Core/include/mitkImageReadAccessor.h b/Modules/Core/include/mitkImageReadAccessor.h index bedb645a3d9..db2409d4169 100644 --- a/Modules/Core/include/mitkImageReadAccessor.h +++ b/Modules/Core/include/mitkImageReadAccessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEREADACCESSOR_H #define MITKIMAGEREADACCESSOR_H diff --git a/Modules/Core/include/mitkImageSliceSelector.h b/Modules/Core/include/mitkImageSliceSelector.h index e2301563705..fa2fd6a304b 100644 --- a/Modules/Core/include/mitkImageSliceSelector.h +++ b/Modules/Core/include/mitkImageSliceSelector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGESLICESELECTOR_H_HEADER_INCLUDED_C1E4BE7B #define IMAGESLICESELECTOR_H_HEADER_INCLUDED_C1E4BE7B diff --git a/Modules/Core/include/mitkImageSource.h b/Modules/Core/include/mitkImageSource.h index 0857883342c..3565a9dcc5d 100644 --- a/Modules/Core/include/mitkImageSource.h +++ b/Modules/Core/include/mitkImageSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGESOURCE_H_HEADER_INCLUDED_C1E7D6EC #define IMAGESOURCE_H_HEADER_INCLUDED_C1E7D6EC diff --git a/Modules/Core/include/mitkImageStatisticsHolder.h b/Modules/Core/include/mitkImageStatisticsHolder.h index 228528c6c24..c6b2a5387d5 100644 --- a/Modules/Core/include/mitkImageStatisticsHolder.h +++ b/Modules/Core/include/mitkImageStatisticsHolder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGESTATISTICSHOLDER_H #define MITKIMAGESTATISTICSHOLDER_H diff --git a/Modules/Core/include/mitkImageTimeSelector.h b/Modules/Core/include/mitkImageTimeSelector.h index 5637b5b39e4..3d8841de9f9 100644 --- a/Modules/Core/include/mitkImageTimeSelector.h +++ b/Modules/Core/include/mitkImageTimeSelector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGETIMESELECTOR_H_HEADER_INCLUDED_C1E4861D #define IMAGETIMESELECTOR_H_HEADER_INCLUDED_C1E4861D diff --git a/Modules/Core/include/mitkImageToImageFilter.h b/Modules/Core/include/mitkImageToImageFilter.h index f264372868c..24298d7ac11 100644 --- a/Modules/Core/include/mitkImageToImageFilter.h +++ b/Modules/Core/include/mitkImageToImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGETOIMAGEFILTER_H_HEADER_INCLUDED_C1E5E869 #define IMAGETOIMAGEFILTER_H_HEADER_INCLUDED_C1E5E869 diff --git a/Modules/Core/include/mitkImageToItk.h b/Modules/Core/include/mitkImageToItk.h index 888c08cbddd..7a03ab425d2 100644 --- a/Modules/Core/include/mitkImageToItk.h +++ b/Modules/Core/include/mitkImageToItk.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGETOITK_H_HEADER_INCLUDED_C1C2FCD2 #define IMAGETOITK_H_HEADER_INCLUDED_C1C2FCD2 diff --git a/Modules/Core/include/mitkImageToItk.txx b/Modules/Core/include/mitkImageToItk.txx index 3b2b49d8970..dea853f238c 100644 --- a/Modules/Core/include/mitkImageToItk.txx +++ b/Modules/Core/include/mitkImageToItk.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGETOITK_TXX_INCLUDED_C1C2FCD2 #define IMAGETOITK_TXX_INCLUDED_C1C2FCD2 diff --git a/Modules/Core/include/mitkImageToSurfaceFilter.h b/Modules/Core/include/mitkImageToSurfaceFilter.h index a30dd5bfc71..35abbcbc308 100644 --- a/Modules/Core/include/mitkImageToSurfaceFilter.h +++ b/Modules/Core/include/mitkImageToSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKIMAGETOSURFACEFILTER_h__ #define _MITKIMAGETOSURFACEFILTER_h__ diff --git a/Modules/Core/include/mitkImageVtkAccessor.h b/Modules/Core/include/mitkImageVtkAccessor.h index 862f1c40eb4..fe2837e28f5 100644 --- a/Modules/Core/include/mitkImageVtkAccessor.h +++ b/Modules/Core/include/mitkImageVtkAccessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEVTKACCESSOR_H #define MITKIMAGEVTKACCESSOR_H diff --git a/Modules/Core/include/mitkImageVtkMapper2D.h b/Modules/Core/include/mitkImageVtkMapper2D.h index 3e7a9e48c3e..ddb32c1bbfd 100644 --- a/Modules/Core/include/mitkImageVtkMapper2D.h +++ b/Modules/Core/include/mitkImageVtkMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEVTKMAPPER2D_H_HEADER_INCLUDED_C10E906E #define MITKIMAGEVTKMAPPER2D_H_HEADER_INCLUDED_C10E906E diff --git a/Modules/Core/include/mitkImageVtkReadAccessor.h b/Modules/Core/include/mitkImageVtkReadAccessor.h index ccc366cf5f1..be0bd201a64 100644 --- a/Modules/Core/include/mitkImageVtkReadAccessor.h +++ b/Modules/Core/include/mitkImageVtkReadAccessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEVTKREADACCESSOR_H #define MITKIMAGEVTKREADACCESSOR_H diff --git a/Modules/Core/include/mitkImageVtkWriteAccessor.h b/Modules/Core/include/mitkImageVtkWriteAccessor.h index f9c80dedf27..80493b7231a 100644 --- a/Modules/Core/include/mitkImageVtkWriteAccessor.h +++ b/Modules/Core/include/mitkImageVtkWriteAccessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEVTKWRITEACCESSOR_H #define MITKIMAGEVTKWRITEACCESSOR_H diff --git a/Modules/Core/include/mitkImageWriteAccessor.h b/Modules/Core/include/mitkImageWriteAccessor.h index 9caa7348d36..b48e3f9d521 100644 --- a/Modules/Core/include/mitkImageWriteAccessor.h +++ b/Modules/Core/include/mitkImageWriteAccessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEWRITEACCESSOR_H #define MITKIMAGEWRITEACCESSOR_H diff --git a/Modules/Core/include/mitkInstantiateAccessFunctions.h b/Modules/Core/include/mitkInstantiateAccessFunctions.h index d8ce300faaf..7adfd266ae3 100644 --- a/Modules/Core/include/mitkInstantiateAccessFunctions.h +++ b/Modules/Core/include/mitkInstantiateAccessFunctions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKINSTANTIATEACCESSFUNCTIONS_H_HEADER_INCLUDED #define MITKINSTANTIATEACCESSFUNCTIONS_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkIntPropertyExtension.h b/Modules/Core/include/mitkIntPropertyExtension.h index 89537c556a8..c29265a2bd9 100644 --- a/Modules/Core/include/mitkIntPropertyExtension.h +++ b/Modules/Core/include/mitkIntPropertyExtension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIntPropertyExtension_h #define mitkIntPropertyExtension_h diff --git a/Modules/Core/include/mitkInteractionConst.h b/Modules/Core/include/mitkInteractionConst.h index ba5d4483e9f..c74f992edc4 100644 --- a/Modules/Core/include/mitkInteractionConst.h +++ b/Modules/Core/include/mitkInteractionConst.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKINTERACTCONST_H #define MITKINTERACTCONST_H diff --git a/Modules/Core/include/mitkInteractionEvent.h b/Modules/Core/include/mitkInteractionEvent.h index 7013e6fbab0..0577a719479 100644 --- a/Modules/Core/include/mitkInteractionEvent.h +++ b/Modules/Core/include/mitkInteractionEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKINTERACTIONEVENT_H_ #define MITKINTERACTIONEVENT_H_ diff --git a/Modules/Core/include/mitkInteractionEventConst.h b/Modules/Core/include/mitkInteractionEventConst.h index 5e783c2131e..99021b5d93b 100644 --- a/Modules/Core/include/mitkInteractionEventConst.h +++ b/Modules/Core/include/mitkInteractionEventConst.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKINTERACTEVENTCONST_H #define MITKINTERACTEVENTCONST_H diff --git a/Modules/Core/include/mitkInteractionEventHandler.h b/Modules/Core/include/mitkInteractionEventHandler.h index 8ff5d29fd3d..cd6c268a248 100644 --- a/Modules/Core/include/mitkInteractionEventHandler.h +++ b/Modules/Core/include/mitkInteractionEventHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKEVENTHANDLER_H_ #define MITKEVENTHANDLER_H_ diff --git a/Modules/Core/include/mitkInteractionEventObserver.h b/Modules/Core/include/mitkInteractionEventObserver.h index 38acf0df636..f2ddaf2f09d 100644 --- a/Modules/Core/include/mitkInteractionEventObserver.h +++ b/Modules/Core/include/mitkInteractionEventObserver.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef InteractionEventObserver_h #define InteractionEventObserver_h diff --git a/Modules/Core/include/mitkInteractionKeyEvent.h b/Modules/Core/include/mitkInteractionKeyEvent.h index b9aca353311..c479206c677 100644 --- a/Modules/Core/include/mitkInteractionKeyEvent.h +++ b/Modules/Core/include/mitkInteractionKeyEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKINTERACTIONKEYEVENT_H_ #define MITKINTERACTIONKEYEVENT_H_ diff --git a/Modules/Core/include/mitkInteractionPositionEvent.h b/Modules/Core/include/mitkInteractionPositionEvent.h index ca9b3cfc36a..7070abc2663 100644 --- a/Modules/Core/include/mitkInteractionPositionEvent.h +++ b/Modules/Core/include/mitkInteractionPositionEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKINTERACTIONPOSITIONEVENT_H_ #define MITKINTERACTIONPOSITIONEVENT_H_ diff --git a/Modules/Core/include/mitkInteractionSchemeSwitcher.h b/Modules/Core/include/mitkInteractionSchemeSwitcher.h index 90466c56ed4..1a396189186 100644 --- a/Modules/Core/include/mitkInteractionSchemeSwitcher.h +++ b/Modules/Core/include/mitkInteractionSchemeSwitcher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKINTERACTIONSCHEMESWITCHER_H #define MITKINTERACTIONSCHEMESWITCHER_H diff --git a/Modules/Core/include/mitkInternalEvent.h b/Modules/Core/include/mitkInternalEvent.h index 16d408f78af..a2c9a373865 100644 --- a/Modules/Core/include/mitkInternalEvent.h +++ b/Modules/Core/include/mitkInternalEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkInternalEvent_h #define mitkInternalEvent_h diff --git a/Modules/Core/include/mitkItkImageIO.h b/Modules/Core/include/mitkItkImageIO.h index 2207ca5d396..28e70484cf3 100644 --- a/Modules/Core/include/mitkItkImageIO.h +++ b/Modules/Core/include/mitkItkImageIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKITKFILEIO_H #define MITKITKFILEIO_H diff --git a/Modules/Core/include/mitkItkLoggingAdapter.h b/Modules/Core/include/mitkItkLoggingAdapter.h index 05e7275ec84..3a233ffc472 100644 --- a/Modules/Core/include/mitkItkLoggingAdapter.h +++ b/Modules/Core/include/mitkItkLoggingAdapter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ItkLoggingAdapter_H_HEADER_INCLUDED #define ItkLoggingAdapter_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkItkMatrixHack.h b/Modules/Core/include/mitkItkMatrixHack.h index 02993dc2f1f..792209e9974 100644 --- a/Modules/Core/include/mitkItkMatrixHack.h +++ b/Modules/Core/include/mitkItkMatrixHack.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ITKMATRIXHACK_H_HEADER_INCLUDED_C1EBD0AD #define ITKMATRIXHACK_H_HEADER_INCLUDED_C1EBD0AD diff --git a/Modules/Core/include/mitkLandmarkProjector.h b/Modules/Core/include/mitkLandmarkProjector.h index 326d1b40ae9..77f2dde574c 100644 --- a/Modules/Core/include/mitkLandmarkProjector.h +++ b/Modules/Core/include/mitkLandmarkProjector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLANDMARKPROJECTOR_H_HEADER_INCLUDED_C1C68A2C #define MITKLANDMARKPROJECTOR_H_HEADER_INCLUDED_C1C68A2C diff --git a/Modules/Core/include/mitkLandmarkProjectorBasedCurvedGeometry.h b/Modules/Core/include/mitkLandmarkProjectorBasedCurvedGeometry.h index 7429355375f..0dba89f698e 100644 --- a/Modules/Core/include/mitkLandmarkProjectorBasedCurvedGeometry.h +++ b/Modules/Core/include/mitkLandmarkProjectorBasedCurvedGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLANDMARKPROJECTORBASEDCURVEDGEOMETRY_H_HEADER_INCLUDED_C1C68A2C #define MITKLANDMARKPROJECTORBASEDCURVEDGEOMETRY_H_HEADER_INCLUDED_C1C68A2C diff --git a/Modules/Core/include/mitkLevelWindow.h b/Modules/Core/include/mitkLevelWindow.h index 6fbb8d84390..9907b6af084 100644 --- a/Modules/Core/include/mitkLevelWindow.h +++ b/Modules/Core/include/mitkLevelWindow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LEVELWINDOW_H_HEADER_INCLUDED_C1F4F02C #define LEVELWINDOW_H_HEADER_INCLUDED_C1F4F02C diff --git a/Modules/Core/include/mitkLevelWindowManager.h b/Modules/Core/include/mitkLevelWindowManager.h index 3e8826d6b38..72579f0128f 100644 --- a/Modules/Core/include/mitkLevelWindowManager.h +++ b/Modules/Core/include/mitkLevelWindowManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLEVELWINDOWMANAGER_H #define MITKLEVELWINDOWMANAGER_H diff --git a/Modules/Core/include/mitkLevelWindowPreset.h b/Modules/Core/include/mitkLevelWindowPreset.h index f1268fb6087..aea85eed594 100644 --- a/Modules/Core/include/mitkLevelWindowPreset.h +++ b/Modules/Core/include/mitkLevelWindowPreset.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LEVELWINDOWPRESET_H_HEADER #define LEVELWINDOWPRESET_H_HEADER diff --git a/Modules/Core/include/mitkLevelWindowProperty.h b/Modules/Core/include/mitkLevelWindowProperty.h index 908f49c8f4e..332ce3d486e 100755 --- a/Modules/Core/include/mitkLevelWindowProperty.h +++ b/Modules/Core/include/mitkLevelWindowProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLEVELWINDOWPROPERTY_H_HEADER_INCLUDED_C10EEAA8 #define MITKLEVELWINDOWPROPERTY_H_HEADER_INCLUDED_C10EEAA8 diff --git a/Modules/Core/include/mitkLexicalCast.h b/Modules/Core/include/mitkLexicalCast.h index 65829242a56..12ce0477585 100644 --- a/Modules/Core/include/mitkLexicalCast.h +++ b/Modules/Core/include/mitkLexicalCast.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLexicalCast_h #define mitkLexicalCast_h diff --git a/Modules/Core/include/mitkLimitedLinearUndo.h b/Modules/Core/include/mitkLimitedLinearUndo.h index 7629fffef11..fb4d7c4ed65 100644 --- a/Modules/Core/include/mitkLimitedLinearUndo.h +++ b/Modules/Core/include/mitkLimitedLinearUndo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LIMITEDLINEARUNDO_H_HEADER_INCLUDED_C16E9C96 #define LIMITEDLINEARUNDO_H_HEADER_INCLUDED_C16E9C96 diff --git a/Modules/Core/include/mitkLine.h b/Modules/Core/include/mitkLine.h index 8558737503e..936060e4f5f 100644 --- a/Modules/Core/include/mitkLine.h +++ b/Modules/Core/include/mitkLine.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLINE_H_HEADER_INCLUDED_C19C01E2 #define MITKLINE_H_HEADER_INCLUDED_C19C01E2 diff --git a/Modules/Core/include/mitkLocalStorageHandler.h b/Modules/Core/include/mitkLocalStorageHandler.h index a2b89a8444f..5089b5a39fb 100644 --- a/Modules/Core/include/mitkLocalStorageHandler.h +++ b/Modules/Core/include/mitkLocalStorageHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LOCALSTORAGEHANDLER_H_HEADER_INCLUDED_C1E6EA08 #define LOCALSTORAGEHANDLER_H_HEADER_INCLUDED_C1E6EA08 diff --git a/Modules/Core/include/mitkLocaleSwitch.h b/Modules/Core/include/mitkLocaleSwitch.h index d3dd3b29486..96af6c09b67 100644 --- a/Modules/Core/include/mitkLocaleSwitch.h +++ b/Modules/Core/include/mitkLocaleSwitch.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLocaleSwitch_h #define __mitkLocaleSwitch_h diff --git a/Modules/Core/include/mitkLog.h b/Modules/Core/include/mitkLog.h index 77be5c3dab4..1d74b0d6875 100644 --- a/Modules/Core/include/mitkLog.h +++ b/Modules/Core/include/mitkLog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_LOG_H #define _MITK_LOG_H diff --git a/Modules/Core/include/mitkLogMacros.h b/Modules/Core/include/mitkLogMacros.h index 57a0de5c2a7..06f5195639a 100644 --- a/Modules/Core/include/mitkLogMacros.h +++ b/Modules/Core/include/mitkLogMacros.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_LOG_H__ #define __MITK_LOG_H__ diff --git a/Modules/Core/include/mitkLookupTable.h b/Modules/Core/include/mitkLookupTable.h index 52908c3fe91..5209d8b4f50 100644 --- a/Modules/Core/include/mitkLookupTable.h +++ b/Modules/Core/include/mitkLookupTable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLookupTable_h #define mitkLookupTable_h diff --git a/Modules/Core/include/mitkLookupTableProperty.h b/Modules/Core/include/mitkLookupTableProperty.h index 4f84164082d..42cd2aed443 100644 --- a/Modules/Core/include/mitkLookupTableProperty.h +++ b/Modules/Core/include/mitkLookupTableProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLookupTablePROPERTY_H_HEADER_INCLUDED_C10EEAA8 #define MITKLookupTablePROPERTY_H_HEADER_INCLUDED_C10EEAA8 diff --git a/Modules/Core/include/mitkLookupTables.h b/Modules/Core/include/mitkLookupTables.h index 70e13a0a6a4..5321bf8424c 100644 --- a/Modules/Core/include/mitkLookupTables.h +++ b/Modules/Core/include/mitkLookupTables.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLOOKUPTABLES_H_HEADER_INCLUDED #define MITKLOOKUPTABLES_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkMapper.h b/Modules/Core/include/mitkMapper.h index 5c94bb7b169..b3f7e44ecd7 100644 --- a/Modules/Core/include/mitkMapper.h +++ b/Modules/Core/include/mitkMapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MAPPER_H_HEADER_INCLUDED_C1E6EA08 #define MAPPER_H_HEADER_INCLUDED_C1E6EA08 diff --git a/Modules/Core/include/mitkMaterial.h b/Modules/Core/include/mitkMaterial.h index 0ac0077b736..7bbffc603bc 100644 --- a/Modules/Core/include/mitkMaterial.h +++ b/Modules/Core/include/mitkMaterial.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MATERIAL_H_ #define _MITK_MATERIAL_H_ diff --git a/Modules/Core/include/mitkMatrix.h b/Modules/Core/include/mitkMatrix.h index 0365f04a226..a4af497c63b 100644 --- a/Modules/Core/include/mitkMatrix.h +++ b/Modules/Core/include/mitkMatrix.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMATRIX_H_ #define MITKMATRIX_H_ diff --git a/Modules/Core/include/mitkMatrixConvert.h b/Modules/Core/include/mitkMatrixConvert.h index 20d6bb0fa75..916519c7e52 100644 --- a/Modules/Core/include/mitkMatrixConvert.h +++ b/Modules/Core/include/mitkMatrixConvert.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMATRIXCONVERT_H_HEADER_INCLUDED_C1EBD0AD #define MITKMATRIXCONVERT_H_HEADER_INCLUDED_C1EBD0AD diff --git a/Modules/Core/include/mitkMemoryUtilities.h b/Modules/Core/include/mitkMemoryUtilities.h index c146a635667..502faf095c4 100644 --- a/Modules/Core/include/mitkMemoryUtilities.h +++ b/Modules/Core/include/mitkMemoryUtilities.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MEMORY_UTILITIES_H_ #define _MITK_MEMORY_UTILITIES_H_ diff --git a/Modules/Core/include/mitkMessage.h b/Modules/Core/include/mitkMessage.h index bbc4e60c002..f610b2a9196 100644 --- a/Modules/Core/include/mitkMessage.h +++ b/Modules/Core/include/mitkMessage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMessageHIncluded #define mitkMessageHIncluded diff --git a/Modules/Core/include/mitkMimeType.h b/Modules/Core/include/mitkMimeType.h index 1c8dd140c83..05381e79521 100644 --- a/Modules/Core/include/mitkMimeType.h +++ b/Modules/Core/include/mitkMimeType.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMIMETYPE_H #define MITKMIMETYPE_H diff --git a/Modules/Core/include/mitkModalityProperty.h b/Modules/Core/include/mitkModalityProperty.h index 76a4a3cc08d..494d47a217e 100644 --- a/Modules/Core/include/mitkModalityProperty.h +++ b/Modules/Core/include/mitkModalityProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkModalityProperty_h_Included #define mitkModalityProperty_h_Included diff --git a/Modules/Core/include/mitkModifiedLock.h b/Modules/Core/include/mitkModifiedLock.h index 1af9dec44b2..43b3a94348f 100644 --- a/Modules/Core/include/mitkModifiedLock.h +++ b/Modules/Core/include/mitkModifiedLock.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ModifiedLock_H_HEADER_INCLUDED #define ModifiedLock_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkMouseDoubleClickEvent.h b/Modules/Core/include/mitkMouseDoubleClickEvent.h index 6b44cbe0b75..acb8892a360 100644 --- a/Modules/Core/include/mitkMouseDoubleClickEvent.h +++ b/Modules/Core/include/mitkMouseDoubleClickEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKMouseDoubleClickEvent_H_ #define MITKMouseDoubleClickEvent_H_ diff --git a/Modules/Core/include/mitkMouseModeSwitcher.h b/Modules/Core/include/mitkMouseModeSwitcher.h index 474dfb09a7d..edbf86b55f4 100644 --- a/Modules/Core/include/mitkMouseModeSwitcher.h +++ b/Modules/Core/include/mitkMouseModeSwitcher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMouseModeSwitcher_H_HEADER_INCLUDED_C10DC4EB #define MITKMouseModeSwitcher_H_HEADER_INCLUDED_C10DC4EB diff --git a/Modules/Core/include/mitkMouseMoveEvent.h b/Modules/Core/include/mitkMouseMoveEvent.h index 473f6d0dc1a..ae8d37c284e 100644 --- a/Modules/Core/include/mitkMouseMoveEvent.h +++ b/Modules/Core/include/mitkMouseMoveEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKMOUSEMOVEEVENT_H_ #define MITKMOUSEMOVEEVENT_H_ diff --git a/Modules/Core/include/mitkMousePressEvent.h b/Modules/Core/include/mitkMousePressEvent.h index f6d54703f49..c28610a7d81 100644 --- a/Modules/Core/include/mitkMousePressEvent.h +++ b/Modules/Core/include/mitkMousePressEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKMOUSEPRESSEVENT_H_ #define MITKMOUSEPRESSEVENT_H_ diff --git a/Modules/Core/include/mitkMouseReleaseEvent.h b/Modules/Core/include/mitkMouseReleaseEvent.h index 3caaa45861b..362fdd910a2 100644 --- a/Modules/Core/include/mitkMouseReleaseEvent.h +++ b/Modules/Core/include/mitkMouseReleaseEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKMOUSERELEASEEVENT_H_ #define MITKMOUSERELEASEEVENT_H_ diff --git a/Modules/Core/include/mitkMouseWheelEvent.h b/Modules/Core/include/mitkMouseWheelEvent.h index 7243a1a64b3..9ad750ebaf9 100644 --- a/Modules/Core/include/mitkMouseWheelEvent.h +++ b/Modules/Core/include/mitkMouseWheelEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef MITKMOUSEWHEELEVENT_H_ #define MITKMOUSEWHEELEVENT_H_ diff --git a/Modules/Core/include/mitkMoveSurfaceInteractor.h b/Modules/Core/include/mitkMoveSurfaceInteractor.h index c825c754dc9..6c336fff836 100644 --- a/Modules/Core/include/mitkMoveSurfaceInteractor.h +++ b/Modules/Core/include/mitkMoveSurfaceInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMoveSurfaceInteractor_H_HEADER_INCLUDED #define MITKMoveSurfaceInteractor_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkMultiComponentImageDataComparisonFilter.h b/Modules/Core/include/mitkMultiComponentImageDataComparisonFilter.h index 3fde889c2a7..169a6436f21 100644 --- a/Modules/Core/include/mitkMultiComponentImageDataComparisonFilter.h +++ b/Modules/Core/include/mitkMultiComponentImageDataComparisonFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMULTICOMPONENTIMAGEDATACOMPARISONFILTER_H #define MITKMULTICOMPONENTIMAGEDATACOMPARISONFILTER_H diff --git a/Modules/Core/include/mitkNodePredicateAnd.h b/Modules/Core/include/mitkNodePredicateAnd.h index d6259f246b3..6d2c06e9ed1 100644 --- a/Modules/Core/include/mitkNodePredicateAnd.h +++ b/Modules/Core/include/mitkNodePredicateAnd.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEAND_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEAND_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateBase.h b/Modules/Core/include/mitkNodePredicateBase.h index eb060264eb8..ae907b4a3b6 100644 --- a/Modules/Core/include/mitkNodePredicateBase.h +++ b/Modules/Core/include/mitkNodePredicateBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEBASE_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEBASE_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateCompositeBase.h b/Modules/Core/include/mitkNodePredicateCompositeBase.h index 1706082cc51..4f8d0c1e61e 100644 --- a/Modules/Core/include/mitkNodePredicateCompositeBase.h +++ b/Modules/Core/include/mitkNodePredicateCompositeBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATECOMPOSITEBASE_H_HEADER_INCLUDED_ #define MITKNODEPREDICATECOMPOSITEBASE_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateData.h b/Modules/Core/include/mitkNodePredicateData.h index 6da72efe868..a39576dd9bb 100644 --- a/Modules/Core/include/mitkNodePredicateData.h +++ b/Modules/Core/include/mitkNodePredicateData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEDATA_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEDATA_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateDataProperty.h b/Modules/Core/include/mitkNodePredicateDataProperty.h index 953de3199eb..d36377cf30d 100644 --- a/Modules/Core/include/mitkNodePredicateDataProperty.h +++ b/Modules/Core/include/mitkNodePredicateDataProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEDATAPROPERTY_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEDATAPROPERTY_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateDataType.h b/Modules/Core/include/mitkNodePredicateDataType.h index 7094d9544eb..8db1dcedb15 100644 --- a/Modules/Core/include/mitkNodePredicateDataType.h +++ b/Modules/Core/include/mitkNodePredicateDataType.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEDATATYPE_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEDATATYPE_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateDataUID.h b/Modules/Core/include/mitkNodePredicateDataUID.h index dbfd2c54be2..c8d2fa2153a 100644 --- a/Modules/Core/include/mitkNodePredicateDataUID.h +++ b/Modules/Core/include/mitkNodePredicateDataUID.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkNodePredicateDataUID_h #define mitkNodePredicateDataUID_h diff --git a/Modules/Core/include/mitkNodePredicateDimension.h b/Modules/Core/include/mitkNodePredicateDimension.h index 7c7007ba247..e6768e58e59 100644 --- a/Modules/Core/include/mitkNodePredicateDimension.h +++ b/Modules/Core/include/mitkNodePredicateDimension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEDIMENSION_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEDIMENSION_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateFirstLevel.h b/Modules/Core/include/mitkNodePredicateFirstLevel.h index 156baa26b7f..609e2751eaa 100644 --- a/Modules/Core/include/mitkNodePredicateFirstLevel.h +++ b/Modules/Core/include/mitkNodePredicateFirstLevel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEFIRSTLEVEL_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEFIRSTLEVEL_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateFunction.h b/Modules/Core/include/mitkNodePredicateFunction.h index ad0a0db416f..52a193003e0 100644 --- a/Modules/Core/include/mitkNodePredicateFunction.h +++ b/Modules/Core/include/mitkNodePredicateFunction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkNodePredicateFunction_h #define mitkNodePredicateFunction_h diff --git a/Modules/Core/include/mitkNodePredicateGeometry.h b/Modules/Core/include/mitkNodePredicateGeometry.h index 989b99b9e41..7dc584b9105 100644 --- a/Modules/Core/include/mitkNodePredicateGeometry.h +++ b/Modules/Core/include/mitkNodePredicateGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEGEOMETRY_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEGEOMETRY_H_HEADER_INCLUDED_ @@ -30,7 +26,7 @@ namespace mitk has the same geometry (in terms of spacing, origin, orientation) like the reference geometry. One can either check the whole time geometry of the date node by defining a referenc time geometry or check against one given - reference base geometry. If the predicate should check against a base geometry, + reference base geometry. If the predicate should check against a base geometry, you can specify the timepoint of the data's time geometry that should be checked. If no timepoint is defined the predicate will evaluate the data geometry in the first timestep. diff --git a/Modules/Core/include/mitkNodePredicateNot.h b/Modules/Core/include/mitkNodePredicateNot.h index 9c811a6e95e..2d5a3412947 100644 --- a/Modules/Core/include/mitkNodePredicateNot.h +++ b/Modules/Core/include/mitkNodePredicateNot.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATENOT_H_HEADER_INCLUDED_ #define MITKNODEPREDICATENOT_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateOr.h b/Modules/Core/include/mitkNodePredicateOr.h index 9fc2d8c5960..56c93f3ce52 100644 --- a/Modules/Core/include/mitkNodePredicateOr.h +++ b/Modules/Core/include/mitkNodePredicateOr.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEOR_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEOR_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateProperty.h b/Modules/Core/include/mitkNodePredicateProperty.h index 2affaf1bc99..33f646e4cd4 100644 --- a/Modules/Core/include/mitkNodePredicateProperty.h +++ b/Modules/Core/include/mitkNodePredicateProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATEPROPERTY_H_HEADER_INCLUDED_ #define MITKNODEPREDICATEPROPERTY_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNodePredicateSource.h b/Modules/Core/include/mitkNodePredicateSource.h index 57117da2601..87ba9ac38d9 100644 --- a/Modules/Core/include/mitkNodePredicateSource.h +++ b/Modules/Core/include/mitkNodePredicateSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATESOURCE_H_HEADER_INCLUDED_ #define MITKNODEPREDICATESOURCE_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkNumericConstants.h b/Modules/Core/include/mitkNumericConstants.h index 073e35aeb5b..2225af0791c 100644 --- a/Modules/Core/include/mitkNumericConstants.h +++ b/Modules/Core/include/mitkNumericConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNUMERICCONSTANTS_H_ #define MITKNUMERICCONSTANTS_H_ diff --git a/Modules/Core/include/mitkNumericTypes.h b/Modules/Core/include/mitkNumericTypes.h index 03af82cbcea..a7567a21e5b 100644 --- a/Modules/Core/include/mitkNumericTypes.h +++ b/Modules/Core/include/mitkNumericTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNUMERICTYPES_H_ #define MITKNUMERICTYPES_H_ diff --git a/Modules/Core/include/mitkOperation.h b/Modules/Core/include/mitkOperation.h index ab9ef0527ea..555a315ef5f 100644 --- a/Modules/Core/include/mitkOperation.h +++ b/Modules/Core/include/mitkOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OPERATION_H_HEADER_INCLUDED_C16E7D9E #define OPERATION_H_HEADER_INCLUDED_C16E7D9E diff --git a/Modules/Core/include/mitkOperationActor.h b/Modules/Core/include/mitkOperationActor.h index 8f41120db36..4dd66b28db1 100644 --- a/Modules/Core/include/mitkOperationActor.h +++ b/Modules/Core/include/mitkOperationActor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OPERATIONACTOR_H_HEADER_INCLUDED_C16E28BD #define OPERATIONACTOR_H_HEADER_INCLUDED_C16E28BD diff --git a/Modules/Core/include/mitkOperationEvent.h b/Modules/Core/include/mitkOperationEvent.h index 0412892c2f7..2d170eff241 100644 --- a/Modules/Core/include/mitkOperationEvent.h +++ b/Modules/Core/include/mitkOperationEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OPERATIONEVENT_H_HEADER_INCLUDED_C16E83FC #define OPERATIONEVENT_H_HEADER_INCLUDED_C16E83FC diff --git a/Modules/Core/include/mitkPPArgCount.h b/Modules/Core/include/mitkPPArgCount.h index dcc55335f9b..1994ad7521e 100644 --- a/Modules/Core/include/mitkPPArgCount.h +++ b/Modules/Core/include/mitkPPArgCount.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPPARGCOUNT_H #define MITKPPARGCOUNT_H diff --git a/Modules/Core/include/mitkPixelType.h b/Modules/Core/include/mitkPixelType.h index 3beb0ab8fde..8717986986f 100644 --- a/Modules/Core/include/mitkPixelType.h +++ b/Modules/Core/include/mitkPixelType.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPixelType_h #define mitkPixelType_h diff --git a/Modules/Core/include/mitkPixelTypeList.h b/Modules/Core/include/mitkPixelTypeList.h index 6d1524b2a2c..1ecbad27206 100644 --- a/Modules/Core/include/mitkPixelTypeList.h +++ b/Modules/Core/include/mitkPixelTypeList.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/include/mitkPixelTypeMultiplex.h b/Modules/Core/include/mitkPixelTypeMultiplex.h index 00632a84c90..ed235bd36b2 100644 --- a/Modules/Core/include/mitkPixelTypeMultiplex.h +++ b/Modules/Core/include/mitkPixelTypeMultiplex.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPIXELTYPEMULTIPLEX_H #define MITKPIXELTYPEMULTIPLEX_H diff --git a/Modules/Core/include/mitkPixelTypeTraits.h b/Modules/Core/include/mitkPixelTypeTraits.h index 3bee0e2861e..ee5eddd9137 100644 --- a/Modules/Core/include/mitkPixelTypeTraits.h +++ b/Modules/Core/include/mitkPixelTypeTraits.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PIXELTYPETRAITS_H #define PIXELTYPETRAITS_H diff --git a/Modules/Core/include/mitkPlaneClipping.h b/Modules/Core/include/mitkPlaneClipping.h index 3f9748922bf..90dd2ae25a0 100644 --- a/Modules/Core/include/mitkPlaneClipping.h +++ b/Modules/Core/include/mitkPlaneClipping.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLANECLIPPING_H_HEADER_INCLUDED #define MITKPLANECLIPPING_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkPlaneGeometry.h b/Modules/Core/include/mitkPlaneGeometry.h index c287d67541e..1bc30cc96ed 100644 --- a/Modules/Core/include/mitkPlaneGeometry.h +++ b/Modules/Core/include/mitkPlaneGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /** * \brief Describes the geometry of a plane object diff --git a/Modules/Core/include/mitkPlaneGeometryData.h b/Modules/Core/include/mitkPlaneGeometryData.h index ae1ec374dd0..4df13b17103 100644 --- a/Modules/Core/include/mitkPlaneGeometryData.h +++ b/Modules/Core/include/mitkPlaneGeometryData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGEOMETRY2DDATA_H_HEADER_INCLUDED_C19C01E2 #define MITKGEOMETRY2DDATA_H_HEADER_INCLUDED_C19C01E2 diff --git a/Modules/Core/include/mitkPlaneGeometryDataMapper2D.h b/Modules/Core/include/mitkPlaneGeometryDataMapper2D.h index b15e5f668f7..d5d832b31c0 100644 --- a/Modules/Core/include/mitkPlaneGeometryDataMapper2D.h +++ b/Modules/Core/include/mitkPlaneGeometryDataMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPlaneGeometryDataMapper2D_h #define mitkPlaneGeometryDataMapper2D_h diff --git a/Modules/Core/include/mitkPlaneGeometryDataToSurfaceFilter.h b/Modules/Core/include/mitkPlaneGeometryDataToSurfaceFilter.h index f92bcebbab7..b16ee49d110 100644 --- a/Modules/Core/include/mitkPlaneGeometryDataToSurfaceFilter.h +++ b/Modules/Core/include/mitkPlaneGeometryDataToSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGEOMETRY2DDATATOSURFACEDATAFILTER_H_HEADER_INCLUDED_C10B22CD #define MITKGEOMETRY2DDATATOSURFACEDATAFILTER_H_HEADER_INCLUDED_C10B22CD diff --git a/Modules/Core/include/mitkPlaneGeometryDataVtkMapper3D.h b/Modules/Core/include/mitkPlaneGeometryDataVtkMapper3D.h index fb6cd8b18c6..ff781081864 100644 --- a/Modules/Core/include/mitkPlaneGeometryDataVtkMapper3D.h +++ b/Modules/Core/include/mitkPlaneGeometryDataVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGEOMETRY2DDATAVTKMAPPER3D_H_HEADER_INCLUDED_C196C71F #define MITKGEOMETRY2DDATAVTKMAPPER3D_H_HEADER_INCLUDED_C196C71F diff --git a/Modules/Core/include/mitkPlaneOperation.h b/Modules/Core/include/mitkPlaneOperation.h index 854a5f522af..7ce09834bc2 100644 --- a/Modules/Core/include/mitkPlaneOperation.h +++ b/Modules/Core/include/mitkPlaneOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPlaneOperation_H #define MITKPlaneOperation_H diff --git a/Modules/Core/include/mitkPlaneOrientationProperty.h b/Modules/Core/include/mitkPlaneOrientationProperty.h index c014ab9f1dd..6dd15769283 100644 --- a/Modules/Core/include/mitkPlaneOrientationProperty.h +++ b/Modules/Core/include/mitkPlaneOrientationProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_PLANE_DECORATION_PROPERTY__H #define MITK_PLANE_DECORATION_PROPERTY__H diff --git a/Modules/Core/include/mitkPlanePositionManager.h b/Modules/Core/include/mitkPlanePositionManager.h index dcb310ede00..a7d538082ff 100644 --- a/Modules/Core/include/mitkPlanePositionManager.h +++ b/Modules/Core/include/mitkPlanePositionManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPlanePositionManager_h_Included #define mitkPlanePositionManager_h_Included diff --git a/Modules/Core/include/mitkPoint.h b/Modules/Core/include/mitkPoint.h index defd625e87a..a0f0cc3b85e 100644 --- a/Modules/Core/include/mitkPoint.h +++ b/Modules/Core/include/mitkPoint.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPOINT_H_ #define MITKPOINT_H_ diff --git a/Modules/Core/include/mitkPointOperation.h b/Modules/Core/include/mitkPointOperation.h index f4527e6bcf3..49461abe015 100755 --- a/Modules/Core/include/mitkPointOperation.h +++ b/Modules/Core/include/mitkPointOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPOINTOPERATION_H #define MITKPOINTOPERATION_H diff --git a/Modules/Core/include/mitkPointSet.h b/Modules/Core/include/mitkPointSet.h index 855ebd4dd7b..625478587fc 100755 --- a/Modules/Core/include/mitkPointSet.h +++ b/Modules/Core/include/mitkPointSet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPointSet_H_HEADER_INCLUDED #define MITKPointSet_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkPointSetDataInteractor.h b/Modules/Core/include/mitkPointSetDataInteractor.h index 5964bbb4d35..744147f5346 100644 --- a/Modules/Core/include/mitkPointSetDataInteractor.h +++ b/Modules/Core/include/mitkPointSetDataInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkPointSetDataInteractor_h_ #define mitkPointSetDataInteractor_h_ diff --git a/Modules/Core/include/mitkPointSetShapeProperty.h b/Modules/Core/include/mitkPointSetShapeProperty.h index 77bec12ae20..a39d115e3d3 100644 --- a/Modules/Core/include/mitkPointSetShapeProperty.h +++ b/Modules/Core/include/mitkPointSetShapeProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_POINTSET_SHAPE_PROPERTY__H_ #define _MITK_POINTSET_SHAPE_PROPERTY__H_ diff --git a/Modules/Core/include/mitkPointSetSource.h b/Modules/Core/include/mitkPointSetSource.h index 89063f31e99..2b6e53541d2 100644 --- a/Modules/Core/include/mitkPointSetSource.h +++ b/Modules/Core/include/mitkPointSetSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_POINT_SET_SOURCE_H #define _MITK_POINT_SET_SOURCE_H diff --git a/Modules/Core/include/mitkPointSetToPointSetFilter.h b/Modules/Core/include/mitkPointSetToPointSetFilter.h index 82a6a4cfdca..19be02b0970 100644 --- a/Modules/Core/include/mitkPointSetToPointSetFilter.h +++ b/Modules/Core/include/mitkPointSetToPointSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkpointsettopointsetfilter_h #define _mitkpointsettopointsetfilter_h diff --git a/Modules/Core/include/mitkPointSetVtkMapper2D.h b/Modules/Core/include/mitkPointSetVtkMapper2D.h index e447f6fe587..5363794e7c8 100644 --- a/Modules/Core/include/mitkPointSetVtkMapper2D.h +++ b/Modules/Core/include/mitkPointSetVtkMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPointSetVtkMapper2D_h #define mitkPointSetVtkMapper2D_h diff --git a/Modules/Core/include/mitkPointSetVtkMapper3D.h b/Modules/Core/include/mitkPointSetVtkMapper3D.h index ff3f61dd3d1..f489b8fae24 100644 --- a/Modules/Core/include/mitkPointSetVtkMapper3D.h +++ b/Modules/Core/include/mitkPointSetVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPointSetVtkMAPPER3D_H_HEADER_INCLUDED_C1907273 #define MITKPointSetVtkMAPPER3D_H_HEADER_INCLUDED_C1907273 diff --git a/Modules/Core/include/mitkPreferenceListReaderOptionsFunctor.h b/Modules/Core/include/mitkPreferenceListReaderOptionsFunctor.h index 67d920f15a5..592414d59a7 100644 --- a/Modules/Core/include/mitkPreferenceListReaderOptionsFunctor.h +++ b/Modules/Core/include/mitkPreferenceListReaderOptionsFunctor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPREFERENCELISTREADEROPTIONSFUNCTOR_H #define MITKPREFERENCELISTREADEROPTIONSFUNCTOR_H diff --git a/Modules/Core/include/mitkProgressBar.h b/Modules/Core/include/mitkProgressBar.h index 577ee4e0845..f635a861b64 100644 --- a/Modules/Core/include/mitkProgressBar.h +++ b/Modules/Core/include/mitkProgressBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPROGRESSBAR_H #define MITKPROGRESSBAR_H diff --git a/Modules/Core/include/mitkProgressBarImplementation.h b/Modules/Core/include/mitkProgressBarImplementation.h index a1bec520712..8d7cb4f570d 100644 --- a/Modules/Core/include/mitkProgressBarImplementation.h +++ b/Modules/Core/include/mitkProgressBarImplementation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPROGRESSBARIMPLEMENTATION_H #define MITKPROGRESSBARIMPLEMENTATION_H diff --git a/Modules/Core/include/mitkProperties.h b/Modules/Core/include/mitkProperties.h index 612ffd6f0a8..ad630ad49fa 100644 --- a/Modules/Core/include/mitkProperties.h +++ b/Modules/Core/include/mitkProperties.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPROPERTIES_H_HEADER_INCLUDED #define MITKPROPERTIES_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkPropertyAliases.h b/Modules/Core/include/mitkPropertyAliases.h index 02195c7f50b..1845ba6cd42 100644 --- a/Modules/Core/include/mitkPropertyAliases.h +++ b/Modules/Core/include/mitkPropertyAliases.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyAliases_h #define mitkPropertyAliases_h diff --git a/Modules/Core/include/mitkPropertyDescriptions.h b/Modules/Core/include/mitkPropertyDescriptions.h index acfa5a3afe6..a5a4ec17427 100644 --- a/Modules/Core/include/mitkPropertyDescriptions.h +++ b/Modules/Core/include/mitkPropertyDescriptions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyDescriptions_h #define mitkPropertyDescriptions_h diff --git a/Modules/Core/include/mitkPropertyExtension.h b/Modules/Core/include/mitkPropertyExtension.h index 835d9c2eeca..a5366a9656f 100644 --- a/Modules/Core/include/mitkPropertyExtension.h +++ b/Modules/Core/include/mitkPropertyExtension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyExtension_h #define mitkPropertyExtension_h diff --git a/Modules/Core/include/mitkPropertyExtensions.h b/Modules/Core/include/mitkPropertyExtensions.h index 572cb83446f..0d0b789fe08 100644 --- a/Modules/Core/include/mitkPropertyExtensions.h +++ b/Modules/Core/include/mitkPropertyExtensions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyExtensions_h #define mitkPropertyExtensions_h diff --git a/Modules/Core/include/mitkPropertyFilter.h b/Modules/Core/include/mitkPropertyFilter.h index b122d3a6056..b911aa796c2 100644 --- a/Modules/Core/include/mitkPropertyFilter.h +++ b/Modules/Core/include/mitkPropertyFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyFilter_h #define mitkPropertyFilter_h diff --git a/Modules/Core/include/mitkPropertyFilters.h b/Modules/Core/include/mitkPropertyFilters.h index 0bf016b6e72..6db14ff403f 100644 --- a/Modules/Core/include/mitkPropertyFilters.h +++ b/Modules/Core/include/mitkPropertyFilters.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyFilters_h #define mitkPropertyFilters_h diff --git a/Modules/Core/include/mitkPropertyKeyPath.h b/Modules/Core/include/mitkPropertyKeyPath.h index 19147511380..525503f6348 100644 --- a/Modules/Core/include/mitkPropertyKeyPath.h +++ b/Modules/Core/include/mitkPropertyKeyPath.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyKeyPath_h #define mitkPropertyKeyPath_h diff --git a/Modules/Core/include/mitkPropertyList.h b/Modules/Core/include/mitkPropertyList.h index 94eb67f780f..de59c3ca645 100644 --- a/Modules/Core/include/mitkPropertyList.h +++ b/Modules/Core/include/mitkPropertyList.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PROPERTYLIST_H_HEADER_INCLUDED_C1C77D8D #define PROPERTYLIST_H_HEADER_INCLUDED_C1C77D8D diff --git a/Modules/Core/include/mitkPropertyListReplacedObserver.h b/Modules/Core/include/mitkPropertyListReplacedObserver.h index ce9a91f8bbe..5b7989303ca 100644 --- a/Modules/Core/include/mitkPropertyListReplacedObserver.h +++ b/Modules/Core/include/mitkPropertyListReplacedObserver.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyListReplacedObserver_h #define mitkPropertyListReplacedObserver_h diff --git a/Modules/Core/include/mitkPropertyNameHelper.h b/Modules/Core/include/mitkPropertyNameHelper.h index 6c111614275..d902bb65b68 100644 --- a/Modules/Core/include/mitkPropertyNameHelper.h +++ b/Modules/Core/include/mitkPropertyNameHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyNameHelper_h #define mitkPropertyNameHelper_h diff --git a/Modules/Core/include/mitkPropertyObserver.h b/Modules/Core/include/mitkPropertyObserver.h index 5b473f7bc62..62f1ae6ab64 100644 --- a/Modules/Core/include/mitkPropertyObserver.h +++ b/Modules/Core/include/mitkPropertyObserver.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_BASEPROPERTYOBSERVER_H_INCLUDED #define MITK_BASEPROPERTYOBSERVER_H_INCLUDED diff --git a/Modules/Core/include/mitkPropertyPersistence.h b/Modules/Core/include/mitkPropertyPersistence.h index bd23f2e2cf4..3a2ab2665a8 100644 --- a/Modules/Core/include/mitkPropertyPersistence.h +++ b/Modules/Core/include/mitkPropertyPersistence.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyPersistence_h #define mitkPropertyPersistence_h diff --git a/Modules/Core/include/mitkPropertyPersistenceInfo.h b/Modules/Core/include/mitkPropertyPersistenceInfo.h index bdfb3a4af8b..5562cda3532 100644 --- a/Modules/Core/include/mitkPropertyPersistenceInfo.h +++ b/Modules/Core/include/mitkPropertyPersistenceInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyPersistenceInfo_h #define mitkPropertyPersistenceInfo_h diff --git a/Modules/Core/include/mitkPropertyRelationRuleBase.h b/Modules/Core/include/mitkPropertyRelationRuleBase.h index 30ed8d9bab1..05e9523af58 100644 --- a/Modules/Core/include/mitkPropertyRelationRuleBase.h +++ b/Modules/Core/include/mitkPropertyRelationRuleBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyRelationRuleBase_h #define mitkPropertyRelationRuleBase_h diff --git a/Modules/Core/include/mitkPropertyRelations.h b/Modules/Core/include/mitkPropertyRelations.h index 3f0ddb51f0d..b2ddd6fd8b1 100644 --- a/Modules/Core/include/mitkPropertyRelations.h +++ b/Modules/Core/include/mitkPropertyRelations.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyRelations_h #define mitkPropertyRelations_h diff --git a/Modules/Core/include/mitkProportionalTimeGeometry.h b/Modules/Core/include/mitkProportionalTimeGeometry.h index 138b32a0d66..ef2bd37ba62 100644 --- a/Modules/Core/include/mitkProportionalTimeGeometry.h +++ b/Modules/Core/include/mitkProportionalTimeGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ProportionalTimeGeometry_h #define ProportionalTimeGeometry_h diff --git a/Modules/Core/include/mitkQuaternion.h b/Modules/Core/include/mitkQuaternion.h index 1c6138aa994..dc58729e713 100644 --- a/Modules/Core/include/mitkQuaternion.h +++ b/Modules/Core/include/mitkQuaternion.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKQUATERNION_H_ #define MITKQUATERNION_H_ diff --git a/Modules/Core/include/mitkRGBToRGBACastImageFilter.h b/Modules/Core/include/mitkRGBToRGBACastImageFilter.h index a4ae4d75c3c..3021f0b53ac 100644 --- a/Modules/Core/include/mitkRGBToRGBACastImageFilter.h +++ b/Modules/Core/include/mitkRGBToRGBACastImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRGBTORGBACASTIMAGEFILTER_H_HEADER_INCLUDED #define MITKRGBTORGBACASTIMAGEFILTER_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkReferenceCountWatcher.h b/Modules/Core/include/mitkReferenceCountWatcher.h index af0db25754e..517a6b2e0e4 100644 --- a/Modules/Core/include/mitkReferenceCountWatcher.h +++ b/Modules/Core/include/mitkReferenceCountWatcher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkCommand.h" #include diff --git a/Modules/Core/include/mitkRenderWindow.h b/Modules/Core/include/mitkRenderWindow.h index c844e09bd1e..a08fb137eab 100644 --- a/Modules/Core/include/mitkRenderWindow.h +++ b/Modules/Core/include/mitkRenderWindow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRENDERWINDOW_H_HEADER_INCLUDED_C1C40D66ASDF #define MITKRENDERWINDOW_H_HEADER_INCLUDED_C1C40D66ASDF diff --git a/Modules/Core/include/mitkRenderWindowBase.h b/Modules/Core/include/mitkRenderWindowBase.h index cb40bfd3057..f11f2020844 100644 --- a/Modules/Core/include/mitkRenderWindowBase.h +++ b/Modules/Core/include/mitkRenderWindowBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRENDERWINDOWBASE_H_HEADER_INCLUDED_C1C40D66ASDF #define MITKRENDERWINDOWBASE_H_HEADER_INCLUDED_C1C40D66ASDF diff --git a/Modules/Core/include/mitkRenderWindowFrame.h b/Modules/Core/include/mitkRenderWindowFrame.h index 6b669997265..4eecfcb7eed 100644 --- a/Modules/Core/include/mitkRenderWindowFrame.h +++ b/Modules/Core/include/mitkRenderWindowFrame.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRenderWindowFrame_h #define mitkRenderWindowFrame_h diff --git a/Modules/Core/include/mitkRenderingManager.h b/Modules/Core/include/mitkRenderingManager.h index 6d5c0357b4f..daad34b1f38 100644 --- a/Modules/Core/include/mitkRenderingManager.h +++ b/Modules/Core/include/mitkRenderingManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRENDERINGMANAGER_H_HEADER_INCLUDED_C135A197 #define MITKRENDERINGMANAGER_H_HEADER_INCLUDED_C135A197 diff --git a/Modules/Core/include/mitkRenderingManagerFactory.h b/Modules/Core/include/mitkRenderingManagerFactory.h index 3b691b02f5d..2c9cfc413c1 100644 --- a/Modules/Core/include/mitkRenderingManagerFactory.h +++ b/Modules/Core/include/mitkRenderingManagerFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRENDERINGMANAGERFACTORY_H_HEADER_INCLUDED_C135A197 #define MITKRENDERINGMANAGERFACTORY_H_HEADER_INCLUDED_C135A197 diff --git a/Modules/Core/include/mitkRenderingModeProperty.h b/Modules/Core/include/mitkRenderingModeProperty.h index e4b5850447f..db90e5ccb01 100644 --- a/Modules/Core/include/mitkRenderingModeProperty.h +++ b/Modules/Core/include/mitkRenderingModeProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_RENDERING_MODE_PROPERTY__H_ #define _MITK_RENDERING_MODE_PROPERTY__H_ diff --git a/Modules/Core/include/mitkResliceMethodProperty.h b/Modules/Core/include/mitkResliceMethodProperty.h index 01d3156ceca..cb6619dc408 100644 --- a/Modules/Core/include/mitkResliceMethodProperty.h +++ b/Modules/Core/include/mitkResliceMethodProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITKRESLICEMETHODENUMPROPERTY_H #define __MITKRESLICEMETHODENUMPROPERTY_H diff --git a/Modules/Core/include/mitkRestorePlanePositionOperation.h b/Modules/Core/include/mitkRestorePlanePositionOperation.h index 93b303ad12b..7a2c7f0dd6e 100644 --- a/Modules/Core/include/mitkRestorePlanePositionOperation.h +++ b/Modules/Core/include/mitkRestorePlanePositionOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRestorePlanePositionOperation_h_Included #define mitkRestorePlanePositionOperation_h_Included diff --git a/Modules/Core/include/mitkRotationOperation.h b/Modules/Core/include/mitkRotationOperation.h index 595b5e3c46e..758e51e97f4 100644 --- a/Modules/Core/include/mitkRotationOperation.h +++ b/Modules/Core/include/mitkRotationOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRotationOperation_h #define mitkRotationOperation_h diff --git a/Modules/Core/include/mitkScaleOperation.h b/Modules/Core/include/mitkScaleOperation.h index c5c09dd60d0..d3d2f0cd97a 100755 --- a/Modules/Core/include/mitkScaleOperation.h +++ b/Modules/Core/include/mitkScaleOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkScaleOperation_h #define mitkScaleOperation_h diff --git a/Modules/Core/include/mitkServiceInterface.h b/Modules/Core/include/mitkServiceInterface.h index 43816a99ade..ab27462056f 100644 --- a/Modules/Core/include/mitkServiceInterface.h +++ b/Modules/Core/include/mitkServiceInterface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkServiceInterface_h #define mitkServiceInterface_h diff --git a/Modules/Core/include/mitkSinglePointDataInteractor.h b/Modules/Core/include/mitkSinglePointDataInteractor.h index 7208e27c8b6..029030c9dc9 100644 --- a/Modules/Core/include/mitkSinglePointDataInteractor.h +++ b/Modules/Core/include/mitkSinglePointDataInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkSinglePointDataInteractor_h_ #define mitkSinglePointDataInteractor_h_ diff --git a/Modules/Core/include/mitkSliceNavigationController.h b/Modules/Core/include/mitkSliceNavigationController.h index a37c86e2efb..093f43d2054 100644 --- a/Modules/Core/include/mitkSliceNavigationController.h +++ b/Modules/Core/include/mitkSliceNavigationController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SLICENAVIGATIONCONTROLLER_H_HEADER_INCLUDED_C1C55A2F #define SLICENAVIGATIONCONTROLLER_H_HEADER_INCLUDED_C1C55A2F diff --git a/Modules/Core/include/mitkSlicedData.h b/Modules/Core/include/mitkSlicedData.h index a0da7ebffd1..730dd1b1610 100644 --- a/Modules/Core/include/mitkSlicedData.h +++ b/Modules/Core/include/mitkSlicedData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SLICEDDATA_H_HEADER_INCLUDED #define SLICEDDATA_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkSlicedGeometry3D.h b/Modules/Core/include/mitkSlicedGeometry3D.h index d2502f516ab..f47fe9d08db 100644 --- a/Modules/Core/include/mitkSlicedGeometry3D.h +++ b/Modules/Core/include/mitkSlicedGeometry3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSLICEDGEOMETRY3D_H_HEADER_INCLUDED_C1EBD0AD #define MITKSLICEDGEOMETRY3D_H_HEADER_INCLUDED_C1EBD0AD diff --git a/Modules/Core/include/mitkSlicesCoordinator.h b/Modules/Core/include/mitkSlicesCoordinator.h index a4baf5b5a86..bc8c511bbfb 100644 --- a/Modules/Core/include/mitkSlicesCoordinator.h +++ b/Modules/Core/include/mitkSlicesCoordinator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SLICESCOORDINATOR_H_HEADER_INCLUDED_C1C55A2F #define SLICESCOORDINATOR_H_HEADER_INCLUDED_C1C55A2F diff --git a/Modules/Core/include/mitkSmartPointerProperty.h b/Modules/Core/include/mitkSmartPointerProperty.h index 46a3f52a35b..cc98e05f85c 100644 --- a/Modules/Core/include/mitkSmartPointerProperty.h +++ b/Modules/Core/include/mitkSmartPointerProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSMARTPOINTERPROPERTY_H_HEADER_INCLUDED_C126B791 #define MITKSMARTPOINTERPROPERTY_H_HEADER_INCLUDED_C126B791 diff --git a/Modules/Core/include/mitkSourceImageRelationRule.h b/Modules/Core/include/mitkSourceImageRelationRule.h index 283e381f22e..3b33d42e80e 100644 --- a/Modules/Core/include/mitkSourceImageRelationRule.h +++ b/Modules/Core/include/mitkSourceImageRelationRule.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGenericIDRelationRule_h #define mitkGenericIDRelationRule_h diff --git a/Modules/Core/include/mitkStandaloneDataStorage.h b/Modules/Core/include/mitkStandaloneDataStorage.h index 447e106bae6..44379557299 100644 --- a/Modules/Core/include/mitkStandaloneDataStorage.h +++ b/Modules/Core/include/mitkStandaloneDataStorage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSTANDALONEDATASTORAGE_H_HEADER_INCLUDED_ #define MITKSTANDALONEDATASTORAGE_H_HEADER_INCLUDED_ diff --git a/Modules/Core/include/mitkStandardFileLocations.h b/Modules/Core/include/mitkStandardFileLocations.h index ed24963f826..8f7865490e9 100644 --- a/Modules/Core/include/mitkStandardFileLocations.h +++ b/Modules/Core/include/mitkStandardFileLocations.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_STANDARD_FILE_LOCATIONS_H_INCLUDED_SWDG #define MITK_STANDARD_FILE_LOCATIONS_H_INCLUDED_SWDG diff --git a/Modules/Core/include/mitkStateMachineAction.h b/Modules/Core/include/mitkStateMachineAction.h index 57976f75fa7..8fccc4fa162 100644 --- a/Modules/Core/include/mitkStateMachineAction.h +++ b/Modules/Core/include/mitkStateMachineAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef SMACTION_H_HEADER_INCLUDED_C19AE06B #define SMACTION_H_HEADER_INCLUDED_C19AE06B diff --git a/Modules/Core/include/mitkStateMachineCondition.h b/Modules/Core/include/mitkStateMachineCondition.h index 9af31686313..a5a76ec5382 100644 --- a/Modules/Core/include/mitkStateMachineCondition.h +++ b/Modules/Core/include/mitkStateMachineCondition.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef StateMachineCondition_H_HEADER_INCLUDED_C19AE06B #define StateMachineCondition_H_HEADER_INCLUDED_C19AE06B diff --git a/Modules/Core/include/mitkStateMachineContainer.h b/Modules/Core/include/mitkStateMachineContainer.h index 559355f23e2..b2b24d211f5 100755 --- a/Modules/Core/include/mitkStateMachineContainer.h +++ b/Modules/Core/include/mitkStateMachineContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef STATEMACHINECONTAINER_H_HEADER_INCLUDED_C19AEDDD #define STATEMACHINECONTAINER_H_HEADER_INCLUDED_C19AEDDD diff --git a/Modules/Core/include/mitkStateMachineState.h b/Modules/Core/include/mitkStateMachineState.h index 0255e5c79fe..512649d387b 100755 --- a/Modules/Core/include/mitkStateMachineState.h +++ b/Modules/Core/include/mitkStateMachineState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SMSTATE_H_HEADER_INCLUDED_C19A8A5D #define SMSTATE_H_HEADER_INCLUDED_C19A8A5D diff --git a/Modules/Core/include/mitkStateMachineTransition.h b/Modules/Core/include/mitkStateMachineTransition.h index 503e49a9142..f1ca8cdc98b 100755 --- a/Modules/Core/include/mitkStateMachineTransition.h +++ b/Modules/Core/include/mitkStateMachineTransition.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef SMTRANSITION_H_HEADER_INCLUDED #define SMTRANSITION_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkStatusBar.h b/Modules/Core/include/mitkStatusBar.h index 2e28a23b4ae..7e45957ffe3 100755 --- a/Modules/Core/include/mitkStatusBar.h +++ b/Modules/Core/include/mitkStatusBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSTATUSBAR_H #define MITKSTATUSBAR_H diff --git a/Modules/Core/include/mitkStatusBarImplementation.h b/Modules/Core/include/mitkStatusBarImplementation.h index d882722d33a..17cf30fb96b 100644 --- a/Modules/Core/include/mitkStatusBarImplementation.h +++ b/Modules/Core/include/mitkStatusBarImplementation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSTATUSBARIMPLEMENTATION_H #define MITKSTATUSBARIMPLEMENTATION_H diff --git a/Modules/Core/include/mitkStdFunctionCommand.h b/Modules/Core/include/mitkStdFunctionCommand.h index 6e150fcc5c3..f22a36bb866 100644 --- a/Modules/Core/include/mitkStdFunctionCommand.h +++ b/Modules/Core/include/mitkStdFunctionCommand.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSTDFUNCTIONCOMMAND_H #define MITKSTDFUNCTIONCOMMAND_H diff --git a/Modules/Core/include/mitkStepper.h b/Modules/Core/include/mitkStepper.h index 16b51ebf871..b41185b3150 100644 --- a/Modules/Core/include/mitkStepper.h +++ b/Modules/Core/include/mitkStepper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef STEPPER_H_HEADER_INCLUDED_C1E77191 #define STEPPER_H_HEADER_INCLUDED_C1E77191 diff --git a/Modules/Core/include/mitkStringProperty.h b/Modules/Core/include/mitkStringProperty.h index a931702095c..0d5ebbb46f5 100644 --- a/Modules/Core/include/mitkStringProperty.h +++ b/Modules/Core/include/mitkStringProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSTRINGPROPERTY_H_HEADER_INCLUDED_C1C02491 #define MITKSTRINGPROPERTY_H_HEADER_INCLUDED_C1C02491 diff --git a/Modules/Core/include/mitkSubImageSelector.h b/Modules/Core/include/mitkSubImageSelector.h index 9c5ec60d231..ebaa87096b2 100644 --- a/Modules/Core/include/mitkSubImageSelector.h +++ b/Modules/Core/include/mitkSubImageSelector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SUBIMAGESELECTOR_H_HEADER_INCLUDED_C1E4F463 #define SUBIMAGESELECTOR_H_HEADER_INCLUDED_C1E4F463 diff --git a/Modules/Core/include/mitkSurface.h b/Modules/Core/include/mitkSurface.h index 8e684794c68..baadda7ae5e 100644 --- a/Modules/Core/include/mitkSurface.h +++ b/Modules/Core/include/mitkSurface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSurface_h #define mitkSurface_h diff --git a/Modules/Core/include/mitkSurfaceOperation.h b/Modules/Core/include/mitkSurfaceOperation.h index 7583545c30e..a03bafb0139 100644 --- a/Modules/Core/include/mitkSurfaceOperation.h +++ b/Modules/Core/include/mitkSurfaceOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #pragma once diff --git a/Modules/Core/include/mitkSurfaceSource.h b/Modules/Core/include/mitkSurfaceSource.h index 4eadf04b178..e77777dc099 100644 --- a/Modules/Core/include/mitkSurfaceSource.h +++ b/Modules/Core/include/mitkSurfaceSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSURFACEDATASOURCE_H_HEADER_INCLUDED_C10B4740 #define MITKSURFACEDATASOURCE_H_HEADER_INCLUDED_C10B4740 diff --git a/Modules/Core/include/mitkSurfaceToImageFilter.h b/Modules/Core/include/mitkSurfaceToImageFilter.h index c90a136cdd2..3db843e3392 100644 --- a/Modules/Core/include/mitkSurfaceToImageFilter.h +++ b/Modules/Core/include/mitkSurfaceToImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkSurfaceToImageFilter_h__ #define _mitkSurfaceToImageFilter_h__ diff --git a/Modules/Core/include/mitkSurfaceToSurfaceFilter.h b/Modules/Core/include/mitkSurfaceToSurfaceFilter.h index be73f53b80d..7f0f241ebdc 100644 --- a/Modules/Core/include/mitkSurfaceToSurfaceFilter.h +++ b/Modules/Core/include/mitkSurfaceToSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSURFACETOSURFACEFILTER_H_HEADER_INCLUDED_C10B4740 #define MITKSURFACETOSURFACEFILTER_H_HEADER_INCLUDED_C10B4740 diff --git a/Modules/Core/include/mitkSurfaceVtkMapper2D.h b/Modules/Core/include/mitkSurfaceVtkMapper2D.h index 9bfbcb22ab6..3e9f6294d35 100644 --- a/Modules/Core/include/mitkSurfaceVtkMapper2D.h +++ b/Modules/Core/include/mitkSurfaceVtkMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSurfaceVtkMapper2D_h #define mitkSurfaceVtkMapper2D_h diff --git a/Modules/Core/include/mitkSurfaceVtkMapper3D.h b/Modules/Core/include/mitkSurfaceVtkMapper3D.h index de12af53246..a518386772f 100644 --- a/Modules/Core/include/mitkSurfaceVtkMapper3D.h +++ b/Modules/Core/include/mitkSurfaceVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSurfaceVtkMapper3D_h #define mitkSurfaceVtkMapper3D_h diff --git a/Modules/Core/include/mitkTemporoSpatialStringProperty.h b/Modules/Core/include/mitkTemporoSpatialStringProperty.h index fb7b0114521..933907df7d8 100644 --- a/Modules/Core/include/mitkTemporoSpatialStringProperty.h +++ b/Modules/Core/include/mitkTemporoSpatialStringProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTEMPOROSPATIALSTRINGPROPERTY_H_HEADER #define MITKTEMPOROSPATIALSTRINGPROPERTY_H_HEADER diff --git a/Modules/Core/include/mitkTestManager.h b/Modules/Core/include/mitkTestManager.h index 564cd463468..d80e2731e5a 100644 --- a/Modules/Core/include/mitkTestManager.h +++ b/Modules/Core/include/mitkTestManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_TESTMANAGER_H_INCLUDED #define MITK_TESTMANAGER_H_INCLUDED diff --git a/Modules/Core/include/mitkThinPlateSplineCurvedGeometry.h b/Modules/Core/include/mitkThinPlateSplineCurvedGeometry.h index d45eabc44d0..961e39259fd 100644 --- a/Modules/Core/include/mitkThinPlateSplineCurvedGeometry.h +++ b/Modules/Core/include/mitkThinPlateSplineCurvedGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTHINPLATESPLINECURVEDGEOMETRY_H_HEADER_INCLUDED_C1C68A2C #define MITKTHINPLATESPLINECURVEDGEOMETRY_H_HEADER_INCLUDED_C1C68A2C diff --git a/Modules/Core/include/mitkTimeGeometry.h b/Modules/Core/include/mitkTimeGeometry.h index 914bfabf8c4..847fecd294f 100644 --- a/Modules/Core/include/mitkTimeGeometry.h +++ b/Modules/Core/include/mitkTimeGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef TimeGeometry_h #define TimeGeometry_h diff --git a/Modules/Core/include/mitkTimeHelper.h b/Modules/Core/include/mitkTimeHelper.h index a777afb9b4e..5cd8498ae01 100644 --- a/Modules/Core/include/mitkTimeHelper.h +++ b/Modules/Core/include/mitkTimeHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTIMEHELPER_H_HEADER_INCLUDED_C1C2FCD2 #define MITKTIMEHELPER_H_HEADER_INCLUDED_C1C2FCD2 diff --git a/Modules/Core/include/mitkTimeSlicedGeometry.h b/Modules/Core/include/mitkTimeSlicedGeometry.h index 9a39a00308e..6d350b4689a 100644 --- a/Modules/Core/include/mitkTimeSlicedGeometry.h +++ b/Modules/Core/include/mitkTimeSlicedGeometry.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkTimeSlicedGeometry_h #define mitkTimeSlicedGeometry_h diff --git a/Modules/Core/include/mitkTransferFunction.h b/Modules/Core/include/mitkTransferFunction.h index a1014718d51..097582ec79d 100644 --- a/Modules/Core/include/mitkTransferFunction.h +++ b/Modules/Core/include/mitkTransferFunction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_TRANSFER_FUNCTION_H_HEADER_INCLUDED #define MITK_TRANSFER_FUNCTION_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkTransferFunctionInitializer.h b/Modules/Core/include/mitkTransferFunctionInitializer.h index 2c3e1f1ba1a..fa49f73e7ba 100644 --- a/Modules/Core/include/mitkTransferFunctionInitializer.h +++ b/Modules/Core/include/mitkTransferFunctionInitializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_TRANSFER_FUNCTION_MODE_CREATOR_H_HEADER_INCLUDED #define MITK_TRANSFER_FUNCTION_MODE_CREATOR_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkTransferFunctionProperty.h b/Modules/Core/include/mitkTransferFunctionProperty.h index 03a6ce2553d..dc7a2d78201 100644 --- a/Modules/Core/include/mitkTransferFunctionProperty.h +++ b/Modules/Core/include/mitkTransferFunctionProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTRANFERFUNCTIONPROPERTY_H_HEADER_INCLUDED #define MITKTRANFERFUNCTIONPROPERTY_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkUIDGenerator.h b/Modules/Core/include/mitkUIDGenerator.h index 8deb9525c53..f05a241f2c0 100644 --- a/Modules/Core/include/mitkUIDGenerator.h +++ b/Modules/Core/include/mitkUIDGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_UID_GENERATOR_INDCLUDED_FASAWE #define MITK_UID_GENERATOR_INDCLUDED_FASAWE diff --git a/Modules/Core/include/mitkUIDManipulator.h b/Modules/Core/include/mitkUIDManipulator.h index 3172a6c2307..1055ce32d58 100644 --- a/Modules/Core/include/mitkUIDManipulator.h +++ b/Modules/Core/include/mitkUIDManipulator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkUIDManipulator_h #define mitkUIDManipulator_h diff --git a/Modules/Core/include/mitkUndoController.h b/Modules/Core/include/mitkUndoController.h index e154ba5cfb9..bcc51510a09 100644 --- a/Modules/Core/include/mitkUndoController.h +++ b/Modules/Core/include/mitkUndoController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef UNDOCONTROLLER_H_HEADER_INCLUDED_C16EFF79 #define UNDOCONTROLLER_H_HEADER_INCLUDED_C16EFF79 diff --git a/Modules/Core/include/mitkUndoModel.h b/Modules/Core/include/mitkUndoModel.h index e90052ea28c..2be62e88f2d 100644 --- a/Modules/Core/include/mitkUndoModel.h +++ b/Modules/Core/include/mitkUndoModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef UNDOMODEL_H_HEADER_INCLUDED_C16ED098 #define UNDOMODEL_H_HEADER_INCLUDED_C16ED098 diff --git a/Modules/Core/include/mitkVector.h b/Modules/Core/include/mitkVector.h index b6196d693d1..095a9de9950 100644 --- a/Modules/Core/include/mitkVector.h +++ b/Modules/Core/include/mitkVector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVECTOR_H_ #define MITKVECTOR_H_ diff --git a/Modules/Core/include/mitkVectorDeprecated.h b/Modules/Core/include/mitkVectorDeprecated.h index 735f7c3a971..8a28926d61e 100644 --- a/Modules/Core/include/mitkVectorDeprecated.h +++ b/Modules/Core/include/mitkVectorDeprecated.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVECTORDEPRECATED_H_ #define MITKVECTORDEPRECATED_H_ diff --git a/Modules/Core/include/mitkVectorProperty.h b/Modules/Core/include/mitkVectorProperty.h index bebcd65f543..fc00b80c78d 100644 --- a/Modules/Core/include/mitkVectorProperty.h +++ b/Modules/Core/include/mitkVectorProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVectorProperty_h #define mitkVectorProperty_h diff --git a/Modules/Core/include/mitkVerboseLimitedLinearUndo.h b/Modules/Core/include/mitkVerboseLimitedLinearUndo.h index 206d5d0090d..f1c91fcfb5e 100644 --- a/Modules/Core/include/mitkVerboseLimitedLinearUndo.h +++ b/Modules/Core/include/mitkVerboseLimitedLinearUndo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VERBOSELIMITEDLINEARUNDO_H_HEADER_INCLUDED_C16E96 #define VERBOSELIMITEDLINEARUNDO_H_HEADER_INCLUDED_C16E96 diff --git a/Modules/Core/include/mitkVolumeCalculator.h b/Modules/Core/include/mitkVolumeCalculator.h index ea6d82cf213..262236f7e3a 100644 --- a/Modules/Core/include/mitkVolumeCalculator.h +++ b/Modules/Core/include/mitkVolumeCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VOLUME_CALCULATOR_H_HEADER_INCLUDED #define VOLUME_CALCULATOR_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkVtkEventAdapter.h b/Modules/Core/include/mitkVtkEventAdapter.h index 5217e1c0fcc..dfbcc8e99d0 100644 --- a/Modules/Core/include/mitkVtkEventAdapter.h +++ b/Modules/Core/include/mitkVtkEventAdapter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVTKEVENTADAPTER_H_ #define MITKVTKEVENTADAPTER_H_ diff --git a/Modules/Core/include/mitkVtkEventProvider.h b/Modules/Core/include/mitkVtkEventProvider.h index 85b936971da..84ba74d4b3a 100644 --- a/Modules/Core/include/mitkVtkEventProvider.h +++ b/Modules/Core/include/mitkVtkEventProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VTKMITKEVENTPROVIDER_H_HEADER_INCLUDED_C1C53723 #define VTKMITKEVENTPROVIDER_H_HEADER_INCLUDED_C1C53723 diff --git a/Modules/Core/include/mitkVtkInteractorStyle.h b/Modules/Core/include/mitkVtkInteractorStyle.h index aa1283889b3..e9f5a494cb7 100644 --- a/Modules/Core/include/mitkVtkInteractorStyle.h +++ b/Modules/Core/include/mitkVtkInteractorStyle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /** * \brief Implements the handling of events that are missing for MITK interaction. diff --git a/Modules/Core/include/mitkVtkInterpolationProperty.h b/Modules/Core/include/mitkVtkInterpolationProperty.h index 2a99c66be8b..0af3b292f7d 100644 --- a/Modules/Core/include/mitkVtkInterpolationProperty.h +++ b/Modules/Core/include/mitkVtkInterpolationProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_VTK_INTERPOLATION_PROPERTY__H_ #define _MITK_VTK_INTERPOLATION_PROPERTY__H_ diff --git a/Modules/Core/include/mitkVtkLayerController.h b/Modules/Core/include/mitkVtkLayerController.h index a48187ee14a..089491086c9 100644 --- a/Modules/Core/include/mitkVtkLayerController.h +++ b/Modules/Core/include/mitkVtkLayerController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVtkLayerController_h #define mitkVtkLayerController_h diff --git a/Modules/Core/include/mitkVtkLoggingAdapter.h b/Modules/Core/include/mitkVtkLoggingAdapter.h index c3bc6827bff..e927ed9f581 100644 --- a/Modules/Core/include/mitkVtkLoggingAdapter.h +++ b/Modules/Core/include/mitkVtkLoggingAdapter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VtkLoggingAdapter_H_HEADER_INCLUDED #define VtkLoggingAdapter_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkVtkMapper.h b/Modules/Core/include/mitkVtkMapper.h index cac4835be9c..e42a8df801a 100644 --- a/Modules/Core/include/mitkVtkMapper.h +++ b/Modules/Core/include/mitkVtkMapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // change number #ifndef VTKMAPPER_H_HEADER_INCLUDED_C1C5453B diff --git a/Modules/Core/include/mitkVtkMapper2D.h b/Modules/Core/include/mitkVtkMapper2D.h index 88eb250b298..8ed39cf892e 100644 --- a/Modules/Core/include/mitkVtkMapper2D.h +++ b/Modules/Core/include/mitkVtkMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BASEVTKMAPPER2D_H_HEADER_INCLUDED #define BASEVTKMAPPER2D_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkVtkMapper3D.h b/Modules/Core/include/mitkVtkMapper3D.h index 1d9c36294bc..09969b3095b 100644 --- a/Modules/Core/include/mitkVtkMapper3D.h +++ b/Modules/Core/include/mitkVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BASEVTKMAPPER3D_H_HEADER_INCLUDED #define BASEVTKMAPPER3D_H_HEADER_INCLUDED diff --git a/Modules/Core/include/mitkVtkPropRenderer.h b/Modules/Core/include/mitkVtkPropRenderer.h index 1deca691729..52ebe5f9a4d 100644 --- a/Modules/Core/include/mitkVtkPropRenderer.h +++ b/Modules/Core/include/mitkVtkPropRenderer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVtkPropRenderer_h #define mitkVtkPropRenderer_h diff --git a/Modules/Core/include/mitkVtkRepresentationProperty.h b/Modules/Core/include/mitkVtkRepresentationProperty.h index 06d1ceda21c..db18f76b298 100644 --- a/Modules/Core/include/mitkVtkRepresentationProperty.h +++ b/Modules/Core/include/mitkVtkRepresentationProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_VTK_REPRESENTATION_PROPERTY__H_ #define _MITK_VTK_REPRESENTATION_PROPERTY__H_ diff --git a/Modules/Core/include/mitkVtkResliceInterpolationProperty.h b/Modules/Core/include/mitkVtkResliceInterpolationProperty.h index 096cd5be14c..fac8392604c 100644 --- a/Modules/Core/include/mitkVtkResliceInterpolationProperty.h +++ b/Modules/Core/include/mitkVtkResliceInterpolationProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_VTK_RESLICE_INTERPOLATION_PROPERTY__H_ #define _MITK_VTK_RESLICE_INTERPOLATION_PROPERTY__H_ diff --git a/Modules/Core/include/mitkVtkScalarModeProperty.h b/Modules/Core/include/mitkVtkScalarModeProperty.h index c2f943d1ffa..d096ec50a04 100644 --- a/Modules/Core/include/mitkVtkScalarModeProperty.h +++ b/Modules/Core/include/mitkVtkScalarModeProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_VTK_SCALARMODE_PROPERTY__H_ #define _MITK_VTK_SCALARMODE_PROPERTY__H_ diff --git a/Modules/Core/include/mitkVtkVolumeRenderingProperty.h b/Modules/Core/include/mitkVtkVolumeRenderingProperty.h index f00ef888c82..568f5a57e1e 100644 --- a/Modules/Core/include/mitkVtkVolumeRenderingProperty.h +++ b/Modules/Core/include/mitkVtkVolumeRenderingProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_VTK_VOLUME_RENDERING_PROPERTY__H_ #define _MITK_VTK_VOLUME_RENDERING_PROPERTY__H_ diff --git a/Modules/Core/include/mitkVtkWidgetRendering.h b/Modules/Core/include/mitkVtkWidgetRendering.h index 18bab585a7b..91f5ef1cdf1 100644 --- a/Modules/Core/include/mitkVtkWidgetRendering.h +++ b/Modules/Core/include/mitkVtkWidgetRendering.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _vtk_Widget_Rendering_h_ #define _vtk_Widget_Rendering_h_ diff --git a/Modules/Core/include/mitkWeakPointer.h b/Modules/Core/include/mitkWeakPointer.h index 314f089a2e7..81bcf112809 100644 --- a/Modules/Core/include/mitkWeakPointer.h +++ b/Modules/Core/include/mitkWeakPointer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkWeakPointer_h #define mitkWeakPointer_h diff --git a/Modules/Core/include/mitkWeakPointerProperty.h b/Modules/Core/include/mitkWeakPointerProperty.h index 19a2b37cd17..377bfe22fa4 100644 --- a/Modules/Core/include/mitkWeakPointerProperty.h +++ b/Modules/Core/include/mitkWeakPointerProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKWEAKPOINTERPROPERTY_H_HEADER_INCLUDED_C126B791 #define MITKWEAKPOINTERPROPERTY_H_HEADER_INCLUDED_C126B791 diff --git a/Modules/Core/include/mitkXML2EventParser.h b/Modules/Core/include/mitkXML2EventParser.h index 824facf8379..c86dec4fa45 100755 --- a/Modules/Core/include/mitkXML2EventParser.h +++ b/Modules/Core/include/mitkXML2EventParser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkXML2EventParser_h #define mitkXML2EventParser_h diff --git a/Modules/Core/include/vtkMitkLevelWindowFilter.h b/Modules/Core/include/vtkMitkLevelWindowFilter.h index ccc9df7e22e..c1604f429ab 100644 --- a/Modules/Core/include/vtkMitkLevelWindowFilter.h +++ b/Modules/Core/include/vtkMitkLevelWindowFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __vtkMitkLevelWindowFilter_h #define __vtkMitkLevelWindowFilter_h diff --git a/Modules/Core/include/vtkMitkRectangleProp.h b/Modules/Core/include/vtkMitkRectangleProp.h index 707ad3677d8..b6427efa0ae 100644 --- a/Modules/Core/include/vtkMitkRectangleProp.h +++ b/Modules/Core/include/vtkMitkRectangleProp.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef vtkMitkRectangleProp_h #define vtkMitkRectangleProp_h diff --git a/Modules/Core/include/vtkMitkRenderProp.h b/Modules/Core/include/vtkMitkRenderProp.h index 02ed925fa32..d6bd2efa149 100644 --- a/Modules/Core/include/vtkMitkRenderProp.h +++ b/Modules/Core/include/vtkMitkRenderProp.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VTKMITKRENDERPROP_H_HEADER_INCLUDED_C1C53723 #define VTKMITKRENDERPROP_H_HEADER_INCLUDED_C1C53723 diff --git a/Modules/Core/include/vtkMitkThickSlicesFilter.h b/Modules/Core/include/vtkMitkThickSlicesFilter.h index d3ffb13615b..0fbc44870e8 100644 --- a/Modules/Core/include/vtkMitkThickSlicesFilter.h +++ b/Modules/Core/include/vtkMitkThickSlicesFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // .NAME vtkMitkThickSlicesFilter - Computes the gradient vector. // .SECTION Description diff --git a/Modules/Core/include/vtkNeverTranslucentTexture.h b/Modules/Core/include/vtkNeverTranslucentTexture.h index 917abe5996e..ef19cddca60 100644 --- a/Modules/Core/include/vtkNeverTranslucentTexture.h +++ b/Modules/Core/include/vtkNeverTranslucentTexture.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkNeverTranslucentTexture_h #define mitkNeverTranslucentTexture_h diff --git a/Modules/Core/src/Algorithms/mitkBaseDataSource.cpp b/Modules/Core/src/Algorithms/mitkBaseDataSource.cpp index 87cc1ee4024..40df20fe703 100644 --- a/Modules/Core/src/Algorithms/mitkBaseDataSource.cpp +++ b/Modules/Core/src/Algorithms/mitkBaseDataSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBaseDataSource.h" #include "mitkBaseData.h" diff --git a/Modules/Core/src/Algorithms/mitkClippedSurfaceBoundsCalculator.cpp b/Modules/Core/src/Algorithms/mitkClippedSurfaceBoundsCalculator.cpp index 48656f453d4..1519b90c5d2 100644 --- a/Modules/Core/src/Algorithms/mitkClippedSurfaceBoundsCalculator.cpp +++ b/Modules/Core/src/Algorithms/mitkClippedSurfaceBoundsCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClippedSurfaceBoundsCalculator.h" #include "mitkLine.h" diff --git a/Modules/Core/src/Algorithms/mitkCompareImageDataFilter.cpp b/Modules/Core/src/Algorithms/mitkCompareImageDataFilter.cpp index a98cc1039ca..6f3bd1551d8 100644 --- a/Modules/Core/src/Algorithms/mitkCompareImageDataFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkCompareImageDataFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkCompareImageDataFilter.h" diff --git a/Modules/Core/src/Algorithms/mitkCompositePixelValueToString.cpp b/Modules/Core/src/Algorithms/mitkCompositePixelValueToString.cpp index c60f1744bbb..ad1b7c1f9e9 100644 --- a/Modules/Core/src/Algorithms/mitkCompositePixelValueToString.cpp +++ b/Modules/Core/src/Algorithms/mitkCompositePixelValueToString.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/Algorithms/mitkConvert2Dto3DImageFilter.cpp b/Modules/Core/src/Algorithms/mitkConvert2Dto3DImageFilter.cpp index dbcd0b7bed6..1390a9738c3 100644 --- a/Modules/Core/src/Algorithms/mitkConvert2Dto3DImageFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkConvert2Dto3DImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkConvert2Dto3DImageFilter.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/Core/src/Algorithms/mitkDataNodeSource.cpp b/Modules/Core/src/Algorithms/mitkDataNodeSource.cpp index 3d881333fe4..9f709206324 100644 --- a/Modules/Core/src/Algorithms/mitkDataNodeSource.cpp +++ b/Modules/Core/src/Algorithms/mitkDataNodeSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataNodeSource.h" diff --git a/Modules/Core/src/Algorithms/mitkExtractSliceFilter.cpp b/Modules/Core/src/Algorithms/mitkExtractSliceFilter.cpp index 6af17bde7aa..0cf7695e501 100644 --- a/Modules/Core/src/Algorithms/mitkExtractSliceFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkExtractSliceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtractSliceFilter.h" diff --git a/Modules/Core/src/Algorithms/mitkExtractSliceFilter2.cpp b/Modules/Core/src/Algorithms/mitkExtractSliceFilter2.cpp index 0dc5dac677c..e448408faa5 100644 --- a/Modules/Core/src/Algorithms/mitkExtractSliceFilter2.cpp +++ b/Modules/Core/src/Algorithms/mitkExtractSliceFilter2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/Algorithms/mitkHistogramGenerator.cpp b/Modules/Core/src/Algorithms/mitkHistogramGenerator.cpp index 6af1ad30a2e..3907e3b40b0 100644 --- a/Modules/Core/src/Algorithms/mitkHistogramGenerator.cpp +++ b/Modules/Core/src/Algorithms/mitkHistogramGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if (_MSC_VER == 1200) #include diff --git a/Modules/Core/src/Algorithms/mitkImageChannelSelector.cpp b/Modules/Core/src/Algorithms/mitkImageChannelSelector.cpp index 08ee7b4b513..e07767c0ce0 100644 --- a/Modules/Core/src/Algorithms/mitkImageChannelSelector.cpp +++ b/Modules/Core/src/Algorithms/mitkImageChannelSelector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageChannelSelector.h" diff --git a/Modules/Core/src/Algorithms/mitkImageSliceSelector.cpp b/Modules/Core/src/Algorithms/mitkImageSliceSelector.cpp index a19ebc9a109..ac39118d2b2 100644 --- a/Modules/Core/src/Algorithms/mitkImageSliceSelector.cpp +++ b/Modules/Core/src/Algorithms/mitkImageSliceSelector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageSliceSelector.h" diff --git a/Modules/Core/src/Algorithms/mitkImageSource.cpp b/Modules/Core/src/Algorithms/mitkImageSource.cpp index e0e939df238..8ebc72332da 100644 --- a/Modules/Core/src/Algorithms/mitkImageSource.cpp +++ b/Modules/Core/src/Algorithms/mitkImageSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageSource.h" diff --git a/Modules/Core/src/Algorithms/mitkImageTimeSelector.cpp b/Modules/Core/src/Algorithms/mitkImageTimeSelector.cpp index 4db1ec259e6..d7a5360da19 100644 --- a/Modules/Core/src/Algorithms/mitkImageTimeSelector.cpp +++ b/Modules/Core/src/Algorithms/mitkImageTimeSelector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageTimeSelector.h" diff --git a/Modules/Core/src/Algorithms/mitkImageToImageFilter.cpp b/Modules/Core/src/Algorithms/mitkImageToImageFilter.cpp index 3adce394bfe..cad3008d78f 100644 --- a/Modules/Core/src/Algorithms/mitkImageToImageFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkImageToImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageToImageFilter.h" diff --git a/Modules/Core/src/Algorithms/mitkImageToSurfaceFilter.cpp b/Modules/Core/src/Algorithms/mitkImageToSurfaceFilter.cpp index 27fccd5fd50..46da45fdaf4 100644 --- a/Modules/Core/src/Algorithms/mitkImageToSurfaceFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkImageToSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkException.h" #include diff --git a/Modules/Core/src/Algorithms/mitkMultiComponentImageDataComparisonFilter.cpp b/Modules/Core/src/Algorithms/mitkMultiComponentImageDataComparisonFilter.cpp index 218be79c571..5de2fdba828 100644 --- a/Modules/Core/src/Algorithms/mitkMultiComponentImageDataComparisonFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkMultiComponentImageDataComparisonFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkMultiComponentImageDataComparisonFilter.h" diff --git a/Modules/Core/src/Algorithms/mitkPlaneGeometryDataToSurfaceFilter.cpp b/Modules/Core/src/Algorithms/mitkPlaneGeometryDataToSurfaceFilter.cpp index 45475a35458..988afe14aa5 100644 --- a/Modules/Core/src/Algorithms/mitkPlaneGeometryDataToSurfaceFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkPlaneGeometryDataToSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneGeometryDataToSurfaceFilter.h" #include "mitkAbstractTransformGeometry.h" diff --git a/Modules/Core/src/Algorithms/mitkPointSetSource.cpp b/Modules/Core/src/Algorithms/mitkPointSetSource.cpp index 5df6184bf96..004661dbf73 100644 --- a/Modules/Core/src/Algorithms/mitkPointSetSource.cpp +++ b/Modules/Core/src/Algorithms/mitkPointSetSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetSource.h" diff --git a/Modules/Core/src/Algorithms/mitkPointSetToPointSetFilter.cpp b/Modules/Core/src/Algorithms/mitkPointSetToPointSetFilter.cpp index b8a905a2d3a..90c7026a25b 100644 --- a/Modules/Core/src/Algorithms/mitkPointSetToPointSetFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkPointSetToPointSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetToPointSetFilter.h" diff --git a/Modules/Core/src/Algorithms/mitkRGBToRGBACastImageFilter.cpp b/Modules/Core/src/Algorithms/mitkRGBToRGBACastImageFilter.cpp index 6f9d4b7509a..2ebeffa059d 100644 --- a/Modules/Core/src/Algorithms/mitkRGBToRGBACastImageFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkRGBToRGBACastImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRGBToRGBACastImageFilter.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/Core/src/Algorithms/mitkSubImageSelector.cpp b/Modules/Core/src/Algorithms/mitkSubImageSelector.cpp index 0f735a71054..933883185ba 100644 --- a/Modules/Core/src/Algorithms/mitkSubImageSelector.cpp +++ b/Modules/Core/src/Algorithms/mitkSubImageSelector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSubImageSelector.h" diff --git a/Modules/Core/src/Algorithms/mitkSurfaceSource.cpp b/Modules/Core/src/Algorithms/mitkSurfaceSource.cpp index a6bc57bafda..eac294e6767 100644 --- a/Modules/Core/src/Algorithms/mitkSurfaceSource.cpp +++ b/Modules/Core/src/Algorithms/mitkSurfaceSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceSource.h" #include "mitkSurface.h" diff --git a/Modules/Core/src/Algorithms/mitkSurfaceToImageFilter.cpp b/Modules/Core/src/Algorithms/mitkSurfaceToImageFilter.cpp index 639edbd5682..e4e9db1c530 100644 --- a/Modules/Core/src/Algorithms/mitkSurfaceToImageFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkSurfaceToImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceToImageFilter.h" #include "mitkImageWriteAccessor.h" diff --git a/Modules/Core/src/Algorithms/mitkSurfaceToSurfaceFilter.cpp b/Modules/Core/src/Algorithms/mitkSurfaceToSurfaceFilter.cpp index e7514e41386..1cc1165d6fb 100644 --- a/Modules/Core/src/Algorithms/mitkSurfaceToSurfaceFilter.cpp +++ b/Modules/Core/src/Algorithms/mitkSurfaceToSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceToSurfaceFilter.h" #include "mitkSurface.h" diff --git a/Modules/Core/src/Algorithms/mitkUIDGenerator.cpp b/Modules/Core/src/Algorithms/mitkUIDGenerator.cpp index 509a2a2eaf5..a0e5158bc66 100644 --- a/Modules/Core/src/Algorithms/mitkUIDGenerator.cpp +++ b/Modules/Core/src/Algorithms/mitkUIDGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/Algorithms/mitkVolumeCalculator.cpp b/Modules/Core/src/Algorithms/mitkVolumeCalculator.cpp index d3b5ed6ce6b..499d1146f8c 100644 --- a/Modules/Core/src/Algorithms/mitkVolumeCalculator.cpp +++ b/Modules/Core/src/Algorithms/mitkVolumeCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVolumeCalculator.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/Core/src/Controllers/mitkBaseController.cpp b/Modules/Core/src/Controllers/mitkBaseController.cpp index f70bac054c5..738ba09be8e 100644 --- a/Modules/Core/src/Controllers/mitkBaseController.cpp +++ b/Modules/Core/src/Controllers/mitkBaseController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBaseController.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Core/src/Controllers/mitkCallbackFromGUIThread.cpp b/Modules/Core/src/Controllers/mitkCallbackFromGUIThread.cpp index ccfd7645dd4..1526f7294a5 100644 --- a/Modules/Core/src/Controllers/mitkCallbackFromGUIThread.cpp +++ b/Modules/Core/src/Controllers/mitkCallbackFromGUIThread.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCallbackFromGUIThread.h" #include diff --git a/Modules/Core/src/Controllers/mitkCameraController.cpp b/Modules/Core/src/Controllers/mitkCameraController.cpp index 8c2fdf5e71d..f9c46b83b9e 100644 --- a/Modules/Core/src/Controllers/mitkCameraController.cpp +++ b/Modules/Core/src/Controllers/mitkCameraController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCameraController.h" #include "mitkRenderingManager.h" diff --git a/Modules/Core/src/Controllers/mitkCameraRotationController.cpp b/Modules/Core/src/Controllers/mitkCameraRotationController.cpp index d55b454240e..f6c94adbc54 100644 --- a/Modules/Core/src/Controllers/mitkCameraRotationController.cpp +++ b/Modules/Core/src/Controllers/mitkCameraRotationController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCameraRotationController.h" diff --git a/Modules/Core/src/Controllers/mitkLimitedLinearUndo.cpp b/Modules/Core/src/Controllers/mitkLimitedLinearUndo.cpp index 76ac781141f..08d7f3dae4e 100644 --- a/Modules/Core/src/Controllers/mitkLimitedLinearUndo.cpp +++ b/Modules/Core/src/Controllers/mitkLimitedLinearUndo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLimitedLinearUndo.h" #include diff --git a/Modules/Core/src/Controllers/mitkOperationEvent.cpp b/Modules/Core/src/Controllers/mitkOperationEvent.cpp index 39e91493d87..cd0ef821c75 100644 --- a/Modules/Core/src/Controllers/mitkOperationEvent.cpp +++ b/Modules/Core/src/Controllers/mitkOperationEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOperationEvent.h" #include diff --git a/Modules/Core/src/Controllers/mitkPlanePositionManager.cpp b/Modules/Core/src/Controllers/mitkPlanePositionManager.cpp index b24eb22c98d..d2dfb63ed79 100644 --- a/Modules/Core/src/Controllers/mitkPlanePositionManager.cpp +++ b/Modules/Core/src/Controllers/mitkPlanePositionManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanePositionManager.h" #include "mitkInteractionConst.h" diff --git a/Modules/Core/src/Controllers/mitkProgressBar.cpp b/Modules/Core/src/Controllers/mitkProgressBar.cpp index 48ac745a1fa..6d68ab34259 100644 --- a/Modules/Core/src/Controllers/mitkProgressBar.cpp +++ b/Modules/Core/src/Controllers/mitkProgressBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProgressBar.h" #include "mitkCallbackFromGUIThread.h" diff --git a/Modules/Core/src/Controllers/mitkRenderingManager.cpp b/Modules/Core/src/Controllers/mitkRenderingManager.cpp index 6cb919246b4..200e8424967 100644 --- a/Modules/Core/src/Controllers/mitkRenderingManager.cpp +++ b/Modules/Core/src/Controllers/mitkRenderingManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRenderingManager.h" #include "mitkBaseRenderer.h" @@ -587,7 +583,7 @@ namespace mitk else { renderingManager->m_NextLODMap[renderer] = 0; - } + } } } } diff --git a/Modules/Core/src/Controllers/mitkSliceNavigationController.cpp b/Modules/Core/src/Controllers/mitkSliceNavigationController.cpp index 912fd74648e..d5ca0d79919 100644 --- a/Modules/Core/src/Controllers/mitkSliceNavigationController.cpp +++ b/Modules/Core/src/Controllers/mitkSliceNavigationController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSliceNavigationController.h" #include "mitkAction.h" @@ -280,7 +276,7 @@ namespace mitk auto createdTimeGeometry = ProportionalTimeGeometry::New(); createdTimeGeometry->Initialize( slicedWorldGeometry, 1 ); m_CreatedWorldGeometry = createdTimeGeometry; - + m_Time->SetSteps(0); m_Time->SetPos(0); m_Time->InvalidateRange(); @@ -303,7 +299,7 @@ namespace mitk { const TimePointType minimumTimePoint = worldTimeGeometry->TimeStepToTimePoint( currentTemporalPosition ); - + const TimePointType stepDuration = worldTimeGeometry->TimeStepToTimePoint( currentTemporalPosition + 1 ) - minimumTimePoint; diff --git a/Modules/Core/src/Controllers/mitkSlicesCoordinator.cpp b/Modules/Core/src/Controllers/mitkSlicesCoordinator.cpp index f8fdd99341c..db726896ce9 100644 --- a/Modules/Core/src/Controllers/mitkSlicesCoordinator.cpp +++ b/Modules/Core/src/Controllers/mitkSlicesCoordinator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/Controllers/mitkStatusBar.cpp b/Modules/Core/src/Controllers/mitkStatusBar.cpp index ed020d5be10..4649a034644 100755 --- a/Modules/Core/src/Controllers/mitkStatusBar.cpp +++ b/Modules/Core/src/Controllers/mitkStatusBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStatusBar.h" #include diff --git a/Modules/Core/src/Controllers/mitkStepper.cpp b/Modules/Core/src/Controllers/mitkStepper.cpp index 14e980a2ddb..24099f682a3 100644 --- a/Modules/Core/src/Controllers/mitkStepper.cpp +++ b/Modules/Core/src/Controllers/mitkStepper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStepper.h" diff --git a/Modules/Core/src/Controllers/mitkTestManager.cpp b/Modules/Core/src/Controllers/mitkTestManager.cpp index 3106cc58eed..e4d90e2b5b9 100644 --- a/Modules/Core/src/Controllers/mitkTestManager.cpp +++ b/Modules/Core/src/Controllers/mitkTestManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestManager.h" mitk::TestManager *mitk::TestManager::GetInstance() diff --git a/Modules/Core/src/Controllers/mitkUndoController.cpp b/Modules/Core/src/Controllers/mitkUndoController.cpp index ddf1b5d82ca..e3e2debc9ca 100644 --- a/Modules/Core/src/Controllers/mitkUndoController.cpp +++ b/Modules/Core/src/Controllers/mitkUndoController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUndoController.h" #include "mitkInteractionConst.h" diff --git a/Modules/Core/src/Controllers/mitkVerboseLimitedLinearUndo.cpp b/Modules/Core/src/Controllers/mitkVerboseLimitedLinearUndo.cpp index aa0126c05c5..ec84c73edd3 100644 --- a/Modules/Core/src/Controllers/mitkVerboseLimitedLinearUndo.cpp +++ b/Modules/Core/src/Controllers/mitkVerboseLimitedLinearUndo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVerboseLimitedLinearUndo.h" #include "mitkOperationEvent.h" diff --git a/Modules/Core/src/Controllers/mitkVtkLayerController.cpp b/Modules/Core/src/Controllers/mitkVtkLayerController.cpp index 1a2c9f74385..c0b9bc1b7d0 100644 --- a/Modules/Core/src/Controllers/mitkVtkLayerController.cpp +++ b/Modules/Core/src/Controllers/mitkVtkLayerController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkLayerController.h" diff --git a/Modules/Core/src/DataManagement/mitkAbstractTransformGeometry.cpp b/Modules/Core/src/DataManagement/mitkAbstractTransformGeometry.cpp index efbfd19cdff..a859544e35a 100644 --- a/Modules/Core/src/DataManagement/mitkAbstractTransformGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkAbstractTransformGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAbstractTransformGeometry.h" #include diff --git a/Modules/Core/src/DataManagement/mitkAnatomicalStructureColorPresets.cpp b/Modules/Core/src/DataManagement/mitkAnatomicalStructureColorPresets.cpp index 0856595f05a..6ae41cd5089 100644 --- a/Modules/Core/src/DataManagement/mitkAnatomicalStructureColorPresets.cpp +++ b/Modules/Core/src/DataManagement/mitkAnatomicalStructureColorPresets.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAnatomicalStructureColorPresets.h" #include diff --git a/Modules/Core/src/DataManagement/mitkAnnotationProperty.cpp b/Modules/Core/src/DataManagement/mitkAnnotationProperty.cpp index 90cf634fb73..303e0c80f0b 100644 --- a/Modules/Core/src/DataManagement/mitkAnnotationProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkAnnotationProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAnnotationProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkApplicationCursor.cpp b/Modules/Core/src/DataManagement/mitkApplicationCursor.cpp index 94a04cc9da4..3252ed94bca 100644 --- a/Modules/Core/src/DataManagement/mitkApplicationCursor.cpp +++ b/Modules/Core/src/DataManagement/mitkApplicationCursor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkApplicationCursor.h" #include diff --git a/Modules/Core/src/DataManagement/mitkApplyTransformMatrixOperation.cpp b/Modules/Core/src/DataManagement/mitkApplyTransformMatrixOperation.cpp index af21282b06e..c712ce236ab 100644 --- a/Modules/Core/src/DataManagement/mitkApplyTransformMatrixOperation.cpp +++ b/Modules/Core/src/DataManagement/mitkApplyTransformMatrixOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkApplyTransformMatrixOperation.h" diff --git a/Modules/Core/src/DataManagement/mitkArbitraryTimeGeometry.cpp b/Modules/Core/src/DataManagement/mitkArbitraryTimeGeometry.cpp index 0f8278e2c67..c7b740b6b6b 100644 --- a/Modules/Core/src/DataManagement/mitkArbitraryTimeGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkArbitraryTimeGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkBaseData.cpp b/Modules/Core/src/DataManagement/mitkBaseData.cpp index 0ebdd29b533..9f3b670884c 100644 --- a/Modules/Core/src/DataManagement/mitkBaseData.cpp +++ b/Modules/Core/src/DataManagement/mitkBaseData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBaseData.h" diff --git a/Modules/Core/src/DataManagement/mitkBaseGeometry.cpp b/Modules/Core/src/DataManagement/mitkBaseGeometry.cpp index ba33f305998..d5bfa354e68 100644 --- a/Modules/Core/src/DataManagement/mitkBaseGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkBaseGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkBaseProperty.cpp b/Modules/Core/src/DataManagement/mitkBaseProperty.cpp index 5b404a1a22b..7d446a87321 100644 --- a/Modules/Core/src/DataManagement/mitkBaseProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkBaseProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBaseProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkChannelDescriptor.cpp b/Modules/Core/src/DataManagement/mitkChannelDescriptor.cpp index 74bcb521ed9..49ec3e82ff1 100644 --- a/Modules/Core/src/DataManagement/mitkChannelDescriptor.cpp +++ b/Modules/Core/src/DataManagement/mitkChannelDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkChannelDescriptor.h" #include "mitkMemoryUtilities.h" diff --git a/Modules/Core/src/DataManagement/mitkClippingProperty.cpp b/Modules/Core/src/DataManagement/mitkClippingProperty.cpp index 04c08c6895b..5dc7014d1e9 100644 --- a/Modules/Core/src/DataManagement/mitkClippingProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkClippingProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClippingProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkColorProperty.cpp b/Modules/Core/src/DataManagement/mitkColorProperty.cpp index b8785b35199..9288a7343e9 100644 --- a/Modules/Core/src/DataManagement/mitkColorProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkColorProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkColorProperty.h" #include diff --git a/Modules/Core/src/DataManagement/mitkDataNode.cpp b/Modules/Core/src/DataManagement/mitkDataNode.cpp index e869b482dc1..f9f548d0b45 100644 --- a/Modules/Core/src/DataManagement/mitkDataNode.cpp +++ b/Modules/Core/src/DataManagement/mitkDataNode.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataNode.h" #include "mitkCoreObjectFactory.h" diff --git a/Modules/Core/src/DataManagement/mitkDataStorage.cpp b/Modules/Core/src/DataManagement/mitkDataStorage.cpp index 7db3374a9de..890128e9f7f 100644 --- a/Modules/Core/src/DataManagement/mitkDataStorage.cpp +++ b/Modules/Core/src/DataManagement/mitkDataStorage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataStorage.h" diff --git a/Modules/Core/src/DataManagement/mitkEnumerationProperty.cpp b/Modules/Core/src/DataManagement/mitkEnumerationProperty.cpp index 7e9ab2a92c9..e6e3d278521 100644 --- a/Modules/Core/src/DataManagement/mitkEnumerationProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkEnumerationProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkFloatPropertyExtension.cpp b/Modules/Core/src/DataManagement/mitkFloatPropertyExtension.cpp index 938fdb22a56..6387c6ec74a 100644 --- a/Modules/Core/src/DataManagement/mitkFloatPropertyExtension.cpp +++ b/Modules/Core/src/DataManagement/mitkFloatPropertyExtension.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFloatPropertyExtension.h" diff --git a/Modules/Core/src/DataManagement/mitkGenericIDRelationRule.cpp b/Modules/Core/src/DataManagement/mitkGenericIDRelationRule.cpp index faa0c3da41e..7681bb1fb20 100644 --- a/Modules/Core/src/DataManagement/mitkGenericIDRelationRule.cpp +++ b/Modules/Core/src/DataManagement/mitkGenericIDRelationRule.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGenericIDRelationRule.h" diff --git a/Modules/Core/src/DataManagement/mitkGeometry3D.cpp b/Modules/Core/src/DataManagement/mitkGeometry3D.cpp index 4eda7a26499..64374520d35 100644 --- a/Modules/Core/src/DataManagement/mitkGeometry3D.cpp +++ b/Modules/Core/src/DataManagement/mitkGeometry3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkGeometryData.cpp b/Modules/Core/src/DataManagement/mitkGeometryData.cpp index 55c6ea6017c..ed5178f7b53 100644 --- a/Modules/Core/src/DataManagement/mitkGeometryData.cpp +++ b/Modules/Core/src/DataManagement/mitkGeometryData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometryData.h" #include "mitkBaseProcess.h" diff --git a/Modules/Core/src/DataManagement/mitkGeometryTransformHolder.cpp b/Modules/Core/src/DataManagement/mitkGeometryTransformHolder.cpp index f5de6179d5b..8d354ca7194 100644 --- a/Modules/Core/src/DataManagement/mitkGeometryTransformHolder.cpp +++ b/Modules/Core/src/DataManagement/mitkGeometryTransformHolder.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + /* * mitkGeometryTransformHolder.cpp * diff --git a/Modules/Core/src/DataManagement/mitkGroupTagProperty.cpp b/Modules/Core/src/DataManagement/mitkGroupTagProperty.cpp index 96779988cec..2fc2aa5e052 100644 --- a/Modules/Core/src/DataManagement/mitkGroupTagProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkGroupTagProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGroupTagProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkIPersistenceService.cpp b/Modules/Core/src/DataManagement/mitkIPersistenceService.cpp index af4f5d697ea..680ca6951db 100644 --- a/Modules/Core/src/DataManagement/mitkIPersistenceService.cpp +++ b/Modules/Core/src/DataManagement/mitkIPersistenceService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIPersistenceService.h" diff --git a/Modules/Core/src/DataManagement/mitkIPropertyAliases.cpp b/Modules/Core/src/DataManagement/mitkIPropertyAliases.cpp index ba5472d85f9..fb266d14d5d 100644 --- a/Modules/Core/src/DataManagement/mitkIPropertyAliases.cpp +++ b/Modules/Core/src/DataManagement/mitkIPropertyAliases.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIPropertyAliases.h" diff --git a/Modules/Core/src/DataManagement/mitkIPropertyDescriptions.cpp b/Modules/Core/src/DataManagement/mitkIPropertyDescriptions.cpp index 11dd8373736..5981eff2074 100644 --- a/Modules/Core/src/DataManagement/mitkIPropertyDescriptions.cpp +++ b/Modules/Core/src/DataManagement/mitkIPropertyDescriptions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIPropertyDescriptions.h" diff --git a/Modules/Core/src/DataManagement/mitkIPropertyExtensions.cpp b/Modules/Core/src/DataManagement/mitkIPropertyExtensions.cpp index 84af9c45c20..32c6c1f1fe8 100644 --- a/Modules/Core/src/DataManagement/mitkIPropertyExtensions.cpp +++ b/Modules/Core/src/DataManagement/mitkIPropertyExtensions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIPropertyExtensions.h" diff --git a/Modules/Core/src/DataManagement/mitkIPropertyFilters.cpp b/Modules/Core/src/DataManagement/mitkIPropertyFilters.cpp index bd5082811c8..4358d81df84 100644 --- a/Modules/Core/src/DataManagement/mitkIPropertyFilters.cpp +++ b/Modules/Core/src/DataManagement/mitkIPropertyFilters.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIPropertyFilters.h" diff --git a/Modules/Core/src/DataManagement/mitkIPropertyOwner.cpp b/Modules/Core/src/DataManagement/mitkIPropertyOwner.cpp index d33feea6913..9941f72f21b 100644 --- a/Modules/Core/src/DataManagement/mitkIPropertyOwner.cpp +++ b/Modules/Core/src/DataManagement/mitkIPropertyOwner.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/DataManagement/mitkIPropertyPersistence.cpp b/Modules/Core/src/DataManagement/mitkIPropertyPersistence.cpp index 1b95eead056..8add3610f09 100644 --- a/Modules/Core/src/DataManagement/mitkIPropertyPersistence.cpp +++ b/Modules/Core/src/DataManagement/mitkIPropertyPersistence.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIPropertyPersistence.h" diff --git a/Modules/Core/src/DataManagement/mitkIPropertyProvider.cpp b/Modules/Core/src/DataManagement/mitkIPropertyProvider.cpp index 21151271b69..47be30fef39 100644 --- a/Modules/Core/src/DataManagement/mitkIPropertyProvider.cpp +++ b/Modules/Core/src/DataManagement/mitkIPropertyProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/DataManagement/mitkIPropertyRelations.cpp b/Modules/Core/src/DataManagement/mitkIPropertyRelations.cpp index ef93ed890ef..3bd95b6dd97 100644 --- a/Modules/Core/src/DataManagement/mitkIPropertyRelations.cpp +++ b/Modules/Core/src/DataManagement/mitkIPropertyRelations.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIPropertyRelations.h" diff --git a/Modules/Core/src/DataManagement/mitkIdentifiable.cpp b/Modules/Core/src/DataManagement/mitkIdentifiable.cpp index dc22cd1069b..6a21e046300 100644 --- a/Modules/Core/src/DataManagement/mitkIdentifiable.cpp +++ b/Modules/Core/src/DataManagement/mitkIdentifiable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkImage.cpp b/Modules/Core/src/DataManagement/mitkImage.cpp index af516863b39..4ed855b751c 100644 --- a/Modules/Core/src/DataManagement/mitkImage.cpp +++ b/Modules/Core/src/DataManagement/mitkImage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkImage.h" diff --git a/Modules/Core/src/DataManagement/mitkImageAccessorBase.cpp b/Modules/Core/src/DataManagement/mitkImageAccessorBase.cpp index 68ebe945df9..77e58bf44ca 100644 --- a/Modules/Core/src/DataManagement/mitkImageAccessorBase.cpp +++ b/Modules/Core/src/DataManagement/mitkImageAccessorBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageAccessorBase.h" #include "mitkImage.h" diff --git a/Modules/Core/src/DataManagement/mitkImageCastPart1.cpp b/Modules/Core/src/DataManagement/mitkImageCastPart1.cpp index e367b38b6ed..15e0567f8c3 100644 --- a/Modules/Core/src/DataManagement/mitkImageCastPart1.cpp +++ b/Modules/Core/src/DataManagement/mitkImageCastPart1.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkImageCastPart2.cpp b/Modules/Core/src/DataManagement/mitkImageCastPart2.cpp index 439279d5881..37b64b4def3 100644 --- a/Modules/Core/src/DataManagement/mitkImageCastPart2.cpp +++ b/Modules/Core/src/DataManagement/mitkImageCastPart2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkImageCastPart3.cpp b/Modules/Core/src/DataManagement/mitkImageCastPart3.cpp index c0555d02af7..318c3a32b5c 100644 --- a/Modules/Core/src/DataManagement/mitkImageCastPart3.cpp +++ b/Modules/Core/src/DataManagement/mitkImageCastPart3.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/DataManagement/mitkImageCastPart4.cpp b/Modules/Core/src/DataManagement/mitkImageCastPart4.cpp index 168c0f2801d..5c4786a10ab 100644 --- a/Modules/Core/src/DataManagement/mitkImageCastPart4.cpp +++ b/Modules/Core/src/DataManagement/mitkImageCastPart4.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/DataManagement/mitkImageCaster.cpp b/Modules/Core/src/DataManagement/mitkImageCaster.cpp index a6cb482a5f6..f584b85223a 100644 --- a/Modules/Core/src/DataManagement/mitkImageCaster.cpp +++ b/Modules/Core/src/DataManagement/mitkImageCaster.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageCaster.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/Core/src/DataManagement/mitkImageDataItem.cpp b/Modules/Core/src/DataManagement/mitkImageDataItem.cpp index 4d50c815d00..cc252716cb1 100644 --- a/Modules/Core/src/DataManagement/mitkImageDataItem.cpp +++ b/Modules/Core/src/DataManagement/mitkImageDataItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageDataItem.h" #include "mitkMemoryUtilities.h" diff --git a/Modules/Core/src/DataManagement/mitkImageDescriptor.cpp b/Modules/Core/src/DataManagement/mitkImageDescriptor.cpp index e9398e48934..2f34c1e9073 100644 --- a/Modules/Core/src/DataManagement/mitkImageDescriptor.cpp +++ b/Modules/Core/src/DataManagement/mitkImageDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageDescriptor.h" mitk::ImageDescriptor::ImageDescriptor() diff --git a/Modules/Core/src/DataManagement/mitkImageReadAccessor.cpp b/Modules/Core/src/DataManagement/mitkImageReadAccessor.cpp index 0ac858267c4..328e0869eec 100644 --- a/Modules/Core/src/DataManagement/mitkImageReadAccessor.cpp +++ b/Modules/Core/src/DataManagement/mitkImageReadAccessor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageReadAccessor.h" diff --git a/Modules/Core/src/DataManagement/mitkImageStatisticsHolder.cpp b/Modules/Core/src/DataManagement/mitkImageStatisticsHolder.cpp index 94a091a26de..347c8685db1 100644 --- a/Modules/Core/src/DataManagement/mitkImageStatisticsHolder.cpp +++ b/Modules/Core/src/DataManagement/mitkImageStatisticsHolder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageStatisticsHolder.h" #include "mitkHistogramGenerator.h" diff --git a/Modules/Core/src/DataManagement/mitkImageVtkAccessor.cpp b/Modules/Core/src/DataManagement/mitkImageVtkAccessor.cpp index 3cbe78cef03..778f9484bb4 100644 --- a/Modules/Core/src/DataManagement/mitkImageVtkAccessor.cpp +++ b/Modules/Core/src/DataManagement/mitkImageVtkAccessor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageVtkAccessor.h" diff --git a/Modules/Core/src/DataManagement/mitkImageVtkReadAccessor.cpp b/Modules/Core/src/DataManagement/mitkImageVtkReadAccessor.cpp index a2711b6efa8..acc2cdbd247 100644 --- a/Modules/Core/src/DataManagement/mitkImageVtkReadAccessor.cpp +++ b/Modules/Core/src/DataManagement/mitkImageVtkReadAccessor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageVtkReadAccessor.h" diff --git a/Modules/Core/src/DataManagement/mitkImageVtkWriteAccessor.cpp b/Modules/Core/src/DataManagement/mitkImageVtkWriteAccessor.cpp index b4daea23838..8d860f03e18 100644 --- a/Modules/Core/src/DataManagement/mitkImageVtkWriteAccessor.cpp +++ b/Modules/Core/src/DataManagement/mitkImageVtkWriteAccessor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageVtkWriteAccessor.h" diff --git a/Modules/Core/src/DataManagement/mitkImageWriteAccessor.cpp b/Modules/Core/src/DataManagement/mitkImageWriteAccessor.cpp index ffc9a0215d4..c03cbe3db35 100644 --- a/Modules/Core/src/DataManagement/mitkImageWriteAccessor.cpp +++ b/Modules/Core/src/DataManagement/mitkImageWriteAccessor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageWriteAccessor.h" diff --git a/Modules/Core/src/DataManagement/mitkIntPropertyExtension.cpp b/Modules/Core/src/DataManagement/mitkIntPropertyExtension.cpp index 44c9cf8d475..b71851d21de 100644 --- a/Modules/Core/src/DataManagement/mitkIntPropertyExtension.cpp +++ b/Modules/Core/src/DataManagement/mitkIntPropertyExtension.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIntPropertyExtension.h" diff --git a/Modules/Core/src/DataManagement/mitkLandmarkProjector.cpp b/Modules/Core/src/DataManagement/mitkLandmarkProjector.cpp index 1b0833e00e5..ac5bf96ccfe 100644 --- a/Modules/Core/src/DataManagement/mitkLandmarkProjector.cpp +++ b/Modules/Core/src/DataManagement/mitkLandmarkProjector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLandmarkProjector.h" #include diff --git a/Modules/Core/src/DataManagement/mitkLandmarkProjectorBasedCurvedGeometry.cpp b/Modules/Core/src/DataManagement/mitkLandmarkProjectorBasedCurvedGeometry.cpp index 975e62824ef..1d1b4e55ccd 100644 --- a/Modules/Core/src/DataManagement/mitkLandmarkProjectorBasedCurvedGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkLandmarkProjectorBasedCurvedGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLandmarkProjectorBasedCurvedGeometry.h" #include diff --git a/Modules/Core/src/DataManagement/mitkLevelWindow.cpp b/Modules/Core/src/DataManagement/mitkLevelWindow.cpp index 8dda3c1523c..9f8a0533a99 100644 --- a/Modules/Core/src/DataManagement/mitkLevelWindow.cpp +++ b/Modules/Core/src/DataManagement/mitkLevelWindow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLevelWindow.h" #include "mitkImage.h" diff --git a/Modules/Core/src/DataManagement/mitkLevelWindowManager.cpp b/Modules/Core/src/DataManagement/mitkLevelWindowManager.cpp index 740638f1579..c0b04c65703 100644 --- a/Modules/Core/src/DataManagement/mitkLevelWindowManager.cpp +++ b/Modules/Core/src/DataManagement/mitkLevelWindowManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLevelWindowManager.h" #include "mitkDataStorage.h" diff --git a/Modules/Core/src/DataManagement/mitkLevelWindowPreset.cpp b/Modules/Core/src/DataManagement/mitkLevelWindowPreset.cpp index bcc7bb7b235..145290c14fb 100644 --- a/Modules/Core/src/DataManagement/mitkLevelWindowPreset.cpp +++ b/Modules/Core/src/DataManagement/mitkLevelWindowPreset.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLevelWindowPreset.h" #include diff --git a/Modules/Core/src/DataManagement/mitkLevelWindowProperty.cpp b/Modules/Core/src/DataManagement/mitkLevelWindowProperty.cpp index ff314220f6c..5376d63183d 100755 --- a/Modules/Core/src/DataManagement/mitkLevelWindowProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkLevelWindowProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLevelWindowProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkLine.cpp b/Modules/Core/src/DataManagement/mitkLine.cpp index 6f2ff35e5a4..4d6ae904bc5 100644 --- a/Modules/Core/src/DataManagement/mitkLine.cpp +++ b/Modules/Core/src/DataManagement/mitkLine.cpp @@ -1,17 +1,13 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLine.h" diff --git a/Modules/Core/src/DataManagement/mitkLookupTable.cpp b/Modules/Core/src/DataManagement/mitkLookupTable.cpp index 8c54985a34c..3022e09869a 100644 --- a/Modules/Core/src/DataManagement/mitkLookupTable.cpp +++ b/Modules/Core/src/DataManagement/mitkLookupTable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLookupTable.h" #include diff --git a/Modules/Core/src/DataManagement/mitkLookupTableProperty.cpp b/Modules/Core/src/DataManagement/mitkLookupTableProperty.cpp index a3e460a80e0..c079e4f0c41 100644 --- a/Modules/Core/src/DataManagement/mitkLookupTableProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkLookupTableProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLookupTableProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkLookupTables.cpp b/Modules/Core/src/DataManagement/mitkLookupTables.cpp index 59095995222..ec3247a26a5 100644 --- a/Modules/Core/src/DataManagement/mitkLookupTables.cpp +++ b/Modules/Core/src/DataManagement/mitkLookupTables.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLookupTables.h" diff --git a/Modules/Core/src/DataManagement/mitkMaterial.cpp b/Modules/Core/src/DataManagement/mitkMaterial.cpp index ce5c37f3f76..fb8ace3af32 100644 --- a/Modules/Core/src/DataManagement/mitkMaterial.cpp +++ b/Modules/Core/src/DataManagement/mitkMaterial.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMaterial.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Core/src/DataManagement/mitkMemoryUtilities.cpp b/Modules/Core/src/DataManagement/mitkMemoryUtilities.cpp index 50444e5b5a0..805d8464d18 100755 --- a/Modules/Core/src/DataManagement/mitkMemoryUtilities.cpp +++ b/Modules/Core/src/DataManagement/mitkMemoryUtilities.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMemoryUtilities.h" diff --git a/Modules/Core/src/DataManagement/mitkModalityProperty.cpp b/Modules/Core/src/DataManagement/mitkModalityProperty.cpp index 7d6624ae569..187ba6c92d3 100644 --- a/Modules/Core/src/DataManagement/mitkModalityProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkModalityProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModalityProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkModifiedLock.cpp b/Modules/Core/src/DataManagement/mitkModifiedLock.cpp index 3534555f1cb..b50d5638288 100644 --- a/Modules/Core/src/DataManagement/mitkModifiedLock.cpp +++ b/Modules/Core/src/DataManagement/mitkModifiedLock.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateAnd.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateAnd.cpp index 27aa4071d2d..2232d4c3eb6 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateAnd.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateAnd.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateAnd.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateBase.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateBase.cpp index d0bcbdb9b47..3ed94a38f96 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateBase.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateBase.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateCompositeBase.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateCompositeBase.cpp index f4e0d953531..859532c9b96 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateCompositeBase.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateCompositeBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateCompositeBase.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateData.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateData.cpp index 4b291c64d38..a18e26451c8 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateData.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateData.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateDataProperty.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateDataProperty.cpp index da2e994df21..522877f32b7 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateDataProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateDataProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateDataProperty.h" #include "mitkDataNode.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateDataType.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateDataType.cpp index 32d60bea671..9b66eb50128 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateDataType.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateDataType.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateDataType.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateDataUID.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateDataUID.cpp index f15a6322362..b0266ebe397 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateDataUID.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateDataUID.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateDimension.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateDimension.cpp index 93258994e7e..662c19d93aa 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateDimension.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateDimension.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateDimension.h" #include "mitkDataNode.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateFirstLevel.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateFirstLevel.cpp index e239d9c322f..6f0fc9037d8 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateFirstLevel.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateFirstLevel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateFirstLevel.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateFunction.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateFunction.cpp index e1781e29ee1..22f380161de 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateFunction.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateFunction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateGeometry.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateGeometry.cpp index 8fd2e7ed624..7aae96581c6 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateGeometry.h" #include "mitkDataNode.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateNot.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateNot.cpp index dd0d200c0c0..a91ac05d9ac 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateNot.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateNot.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateNot.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateOr.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateOr.cpp index 04bc68f8d08..36d744e7bce 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateOr.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateOr.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateOr.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateProperty.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateProperty.cpp index e884f71504b..9718c7e7fc1 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateProperty.h" #include "mitkDataNode.h" diff --git a/Modules/Core/src/DataManagement/mitkNodePredicateSource.cpp b/Modules/Core/src/DataManagement/mitkNodePredicateSource.cpp index 3e9c17876d5..240c725023e 100644 --- a/Modules/Core/src/DataManagement/mitkNodePredicateSource.cpp +++ b/Modules/Core/src/DataManagement/mitkNodePredicateSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateSource.h" diff --git a/Modules/Core/src/DataManagement/mitkNumericConstants.cpp b/Modules/Core/src/DataManagement/mitkNumericConstants.cpp index 3362f04def9..2e2fc627631 100644 --- a/Modules/Core/src/DataManagement/mitkNumericConstants.cpp +++ b/Modules/Core/src/DataManagement/mitkNumericConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNumericConstants.h" #include "vnl/vnl_math.h" diff --git a/Modules/Core/src/DataManagement/mitkPlaneGeometry.cpp b/Modules/Core/src/DataManagement/mitkPlaneGeometry.cpp index 52c3abf6451..0c68955b415 100644 --- a/Modules/Core/src/DataManagement/mitkPlaneGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkPlaneGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneGeometry.h" #include "mitkInteractionConst.h" diff --git a/Modules/Core/src/DataManagement/mitkPlaneGeometryData.cpp b/Modules/Core/src/DataManagement/mitkPlaneGeometryData.cpp index 2879dbd8041..3e0593cf05e 100644 --- a/Modules/Core/src/DataManagement/mitkPlaneGeometryData.cpp +++ b/Modules/Core/src/DataManagement/mitkPlaneGeometryData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneGeometryData.h" #include "mitkAbstractTransformGeometry.h" diff --git a/Modules/Core/src/DataManagement/mitkPlaneOperation.cpp b/Modules/Core/src/DataManagement/mitkPlaneOperation.cpp index 953b3f33b45..27268eb3b1e 100644 --- a/Modules/Core/src/DataManagement/mitkPlaneOperation.cpp +++ b/Modules/Core/src/DataManagement/mitkPlaneOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneOperation.h" #include "mitkLogMacros.h" diff --git a/Modules/Core/src/DataManagement/mitkPlaneOrientationProperty.cpp b/Modules/Core/src/DataManagement/mitkPlaneOrientationProperty.cpp index 3257135fc29..546e6f45bd4 100644 --- a/Modules/Core/src/DataManagement/mitkPlaneOrientationProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkPlaneOrientationProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneOrientationProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkPointOperation.cpp b/Modules/Core/src/DataManagement/mitkPointOperation.cpp index d7835f628e7..56ed24c3d3b 100755 --- a/Modules/Core/src/DataManagement/mitkPointOperation.cpp +++ b/Modules/Core/src/DataManagement/mitkPointOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointOperation.h" diff --git a/Modules/Core/src/DataManagement/mitkPointSet.cpp b/Modules/Core/src/DataManagement/mitkPointSet.cpp index bb7f1509601..e8294bb02bc 100755 --- a/Modules/Core/src/DataManagement/mitkPointSet.cpp +++ b/Modules/Core/src/DataManagement/mitkPointSet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSet.h" #include "mitkInteractionConst.h" diff --git a/Modules/Core/src/DataManagement/mitkPointSetShapeProperty.cpp b/Modules/Core/src/DataManagement/mitkPointSetShapeProperty.cpp index 1400062d998..ca02135a653 100644 --- a/Modules/Core/src/DataManagement/mitkPointSetShapeProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkPointSetShapeProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetShapeProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkProperties.cpp b/Modules/Core/src/DataManagement/mitkProperties.cpp index 9026d486b76..d5e8bff0f66 100644 --- a/Modules/Core/src/DataManagement/mitkProperties.cpp +++ b/Modules/Core/src/DataManagement/mitkProperties.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" diff --git a/Modules/Core/src/DataManagement/mitkPropertyAliases.cpp b/Modules/Core/src/DataManagement/mitkPropertyAliases.cpp index 56a51447f4b..76502992954 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyAliases.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyAliases.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyAliases.h" #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyDescriptions.cpp b/Modules/Core/src/DataManagement/mitkPropertyDescriptions.cpp index bafae1c07b4..4a8685fa814 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyDescriptions.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyDescriptions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyDescriptions.h" #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyExtension.cpp b/Modules/Core/src/DataManagement/mitkPropertyExtension.cpp index a369cd1f51d..e878051b221 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyExtension.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyExtension.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyExtension.h" diff --git a/Modules/Core/src/DataManagement/mitkPropertyExtensions.cpp b/Modules/Core/src/DataManagement/mitkPropertyExtensions.cpp index 70dc75cef82..61551f79635 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyExtensions.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyExtensions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyExtensions.h" #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyFilter.cpp b/Modules/Core/src/DataManagement/mitkPropertyFilter.cpp index 100ea7f3c09..91421d4a159 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyFilter.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyFilter.h" #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyFilters.cpp b/Modules/Core/src/DataManagement/mitkPropertyFilters.cpp index 257333ca135..f81bcaac3ba 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyFilters.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyFilters.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyFilters.h" #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyKeyPath.cpp b/Modules/Core/src/DataManagement/mitkPropertyKeyPath.cpp index 0b42ed1b0ee..83a29932079 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyKeyPath.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyKeyPath.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyList.cpp b/Modules/Core/src/DataManagement/mitkPropertyList.cpp index 68a8091261e..69d6aaed011 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyList.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyList.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyList.h" diff --git a/Modules/Core/src/DataManagement/mitkPropertyListReplacedObserver.cpp b/Modules/Core/src/DataManagement/mitkPropertyListReplacedObserver.cpp index 33841ae0f3e..075c8cd9bed 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyListReplacedObserver.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyListReplacedObserver.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyListReplacedObserver.h" diff --git a/Modules/Core/src/DataManagement/mitkPropertyNameHelper.cpp b/Modules/Core/src/DataManagement/mitkPropertyNameHelper.cpp index 393ae32dc26..430056a874e 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyNameHelper.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyNameHelper.cpp @@ -1,21 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY -{ -} - without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkPropertyNameHelper.h" #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyObserver.cpp b/Modules/Core/src/DataManagement/mitkPropertyObserver.cpp index 332d3f34678..fcbed18f7d7 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyObserver.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyObserver.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyPersistence.cpp b/Modules/Core/src/DataManagement/mitkPropertyPersistence.cpp index 5466edc06d6..55f700fc2be 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyPersistence.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyPersistence.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -252,4 +248,4 @@ void mitk::PropertyPersistence::RemoveInfo(const std::string &propertyName, cons mitk::IPropertyPersistence *mitk::CreateTestInstancePropertyPersistence() { return new PropertyPersistence(); -}; \ No newline at end of file +}; diff --git a/Modules/Core/src/DataManagement/mitkPropertyPersistenceInfo.cpp b/Modules/Core/src/DataManagement/mitkPropertyPersistenceInfo.cpp index 57d43dd636e..0512048daad 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyPersistenceInfo.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyPersistenceInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkPropertyRelationRuleBase.cpp b/Modules/Core/src/DataManagement/mitkPropertyRelationRuleBase.cpp index 7cb8e6b969d..8bfd7d09d62 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyRelationRuleBase.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyRelationRuleBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyRelationRuleBase.h" @@ -121,7 +117,7 @@ bool mitk::PropertyRelationRuleBase::IsSource(const IPropertyProvider *owner) co } } } - + return false; }; @@ -643,7 +639,7 @@ namespace mitk ~NodePredicateRuleFunction() override = default; - bool CheckNode(const mitk::DataNode *node) const override + bool CheckNode(const mitk::DataNode *node) const override { if (!node) { diff --git a/Modules/Core/src/DataManagement/mitkPropertyRelations.cpp b/Modules/Core/src/DataManagement/mitkPropertyRelations.cpp index 03420b3686e..4d5f4fa489c 100644 --- a/Modules/Core/src/DataManagement/mitkPropertyRelations.cpp +++ b/Modules/Core/src/DataManagement/mitkPropertyRelations.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -153,4 +149,4 @@ void mitk::PropertyRelations::RemoveRule(const RuleIDType &ruleID) mitk::IPropertyRelations *mitk::CreateTestInstancePropertyRelations() { return new PropertyRelations(); -}; \ No newline at end of file +}; diff --git a/Modules/Core/src/DataManagement/mitkProportionalTimeGeometry.cpp b/Modules/Core/src/DataManagement/mitkProportionalTimeGeometry.cpp index a6ec85b9b3b..3348d42f173 100644 --- a/Modules/Core/src/DataManagement/mitkProportionalTimeGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkProportionalTimeGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkRenderingModeProperty.cpp b/Modules/Core/src/DataManagement/mitkRenderingModeProperty.cpp index 39d33c90fca..865a13ee844 100644 --- a/Modules/Core/src/DataManagement/mitkRenderingModeProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkRenderingModeProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRenderingModeProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkResliceMethodProperty.cpp b/Modules/Core/src/DataManagement/mitkResliceMethodProperty.cpp index 899a51d29ee..5493fa50637 100644 --- a/Modules/Core/src/DataManagement/mitkResliceMethodProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkResliceMethodProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkResliceMethodProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkRestorePlanePositionOperation.cpp b/Modules/Core/src/DataManagement/mitkRestorePlanePositionOperation.cpp index 0ad31b8bc8d..58d3e460331 100644 --- a/Modules/Core/src/DataManagement/mitkRestorePlanePositionOperation.cpp +++ b/Modules/Core/src/DataManagement/mitkRestorePlanePositionOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRestorePlanePositionOperation.h" diff --git a/Modules/Core/src/DataManagement/mitkRotationOperation.cpp b/Modules/Core/src/DataManagement/mitkRotationOperation.cpp index 2caf0347e25..a14f2a8e22e 100644 --- a/Modules/Core/src/DataManagement/mitkRotationOperation.cpp +++ b/Modules/Core/src/DataManagement/mitkRotationOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRotationOperation.h" diff --git a/Modules/Core/src/DataManagement/mitkScaleOperation.cpp b/Modules/Core/src/DataManagement/mitkScaleOperation.cpp index 9a07aaf7c34..778cced055e 100755 --- a/Modules/Core/src/DataManagement/mitkScaleOperation.cpp +++ b/Modules/Core/src/DataManagement/mitkScaleOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkScaleOperation.h" diff --git a/Modules/Core/src/DataManagement/mitkSlicedData.cpp b/Modules/Core/src/DataManagement/mitkSlicedData.cpp index 424d4da9ff1..23ac80f2f08 100644 --- a/Modules/Core/src/DataManagement/mitkSlicedData.cpp +++ b/Modules/Core/src/DataManagement/mitkSlicedData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSlicedData.h" #include "mitkAbstractTransformGeometry.h" diff --git a/Modules/Core/src/DataManagement/mitkSlicedGeometry3D.cpp b/Modules/Core/src/DataManagement/mitkSlicedGeometry3D.cpp index 4e4cd940a13..45461ae52e7 100644 --- a/Modules/Core/src/DataManagement/mitkSlicedGeometry3D.cpp +++ b/Modules/Core/src/DataManagement/mitkSlicedGeometry3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/DataManagement/mitkSmartPointerProperty.cpp b/Modules/Core/src/DataManagement/mitkSmartPointerProperty.cpp index eec966ab3c6..0ca671f20d8 100644 --- a/Modules/Core/src/DataManagement/mitkSmartPointerProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkSmartPointerProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSmartPointerProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkSourceImageRelationRule.cpp b/Modules/Core/src/DataManagement/mitkSourceImageRelationRule.cpp index 6bc57462bc6..175829e218b 100644 --- a/Modules/Core/src/DataManagement/mitkSourceImageRelationRule.cpp +++ b/Modules/Core/src/DataManagement/mitkSourceImageRelationRule.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -200,7 +196,7 @@ bool mitk::SourceImageRelationRule::HasImplicitDataRelation(const IPropertyProvi } } } - + return false; }; @@ -209,7 +205,7 @@ bool mitk::SourceImageRelationRule::HasImplicitDataRelation(const IPropertyProvi racing conditions in a scenario where rules are used concurrently. It is not in the class interface itself, because it is an implementation detail. */ -namespace +namespace { std::mutex sequenceItemCreationLock; } @@ -358,7 +354,7 @@ void mitk::SourceImageRelationRule::Disconnect_datalayer(IPropertyOwner * source auto sourceImageRefPath = GetRootKeyPath().AddElement(instanceID).AddElement("SourceImageSequenceItem"); } if (std::regex_match(key, regEx)) - { + { auto imageSequenceItemProp = source->GetConstProperty(key); if (imageSequenceItemProp->GetValueAsString() == std::to_string(refIndex)) { diff --git a/Modules/Core/src/DataManagement/mitkStandaloneDataStorage.cpp b/Modules/Core/src/DataManagement/mitkStandaloneDataStorage.cpp index f77abadacf6..6b69557d239 100644 --- a/Modules/Core/src/DataManagement/mitkStandaloneDataStorage.cpp +++ b/Modules/Core/src/DataManagement/mitkStandaloneDataStorage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStandaloneDataStorage.h" diff --git a/Modules/Core/src/DataManagement/mitkStringProperty.cpp b/Modules/Core/src/DataManagement/mitkStringProperty.cpp index a7adecf4376..767d6101c11 100644 --- a/Modules/Core/src/DataManagement/mitkStringProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkStringProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStringProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkSurface.cpp b/Modules/Core/src/DataManagement/mitkSurface.cpp index de792cd4da4..fcc8f6ff984 100644 --- a/Modules/Core/src/DataManagement/mitkSurface.cpp +++ b/Modules/Core/src/DataManagement/mitkSurface.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurface.h" #include "mitkInteractionConst.h" diff --git a/Modules/Core/src/DataManagement/mitkSurfaceOperation.cpp b/Modules/Core/src/DataManagement/mitkSurfaceOperation.cpp index cba98a1c13a..975bae23b4e 100644 --- a/Modules/Core/src/DataManagement/mitkSurfaceOperation.cpp +++ b/Modules/Core/src/DataManagement/mitkSurfaceOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceOperation.h" diff --git a/Modules/Core/src/DataManagement/mitkTemporoSpatialStringProperty.cpp b/Modules/Core/src/DataManagement/mitkTemporoSpatialStringProperty.cpp index 20710b32b4e..a75dfc24945 100644 --- a/Modules/Core/src/DataManagement/mitkTemporoSpatialStringProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkTemporoSpatialStringProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -365,4 +361,4 @@ mitk::BaseProperty::Pointer mitk::PropertyPersistenceDeserialization::deserializ #ifdef _MSC_VER #pragma warning(pop) -#endif \ No newline at end of file +#endif diff --git a/Modules/Core/src/DataManagement/mitkThinPlateSplineCurvedGeometry.cpp b/Modules/Core/src/DataManagement/mitkThinPlateSplineCurvedGeometry.cpp index 12929d49d15..af4ea922cbe 100644 --- a/Modules/Core/src/DataManagement/mitkThinPlateSplineCurvedGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkThinPlateSplineCurvedGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkThinPlateSplineCurvedGeometry.h" #include diff --git a/Modules/Core/src/DataManagement/mitkTimeGeometry.cpp b/Modules/Core/src/DataManagement/mitkTimeGeometry.cpp index fc9829401e6..48edadedec6 100644 --- a/Modules/Core/src/DataManagement/mitkTimeGeometry.cpp +++ b/Modules/Core/src/DataManagement/mitkTimeGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkTransferFunction.cpp b/Modules/Core/src/DataManagement/mitkTransferFunction.cpp index c5922fdd928..c3c3a8127be 100644 --- a/Modules/Core/src/DataManagement/mitkTransferFunction.cpp +++ b/Modules/Core/src/DataManagement/mitkTransferFunction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTransferFunction.h" #include "mitkHistogramGenerator.h" diff --git a/Modules/Core/src/DataManagement/mitkTransferFunctionInitializer.cpp b/Modules/Core/src/DataManagement/mitkTransferFunctionInitializer.cpp index 62269d11073..7849c2e4e0c 100644 --- a/Modules/Core/src/DataManagement/mitkTransferFunctionInitializer.cpp +++ b/Modules/Core/src/DataManagement/mitkTransferFunctionInitializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTransferFunctionInitializer.h" diff --git a/Modules/Core/src/DataManagement/mitkTransferFunctionProperty.cpp b/Modules/Core/src/DataManagement/mitkTransferFunctionProperty.cpp index 314eeabffd2..3e5bce2ca67 100644 --- a/Modules/Core/src/DataManagement/mitkTransferFunctionProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkTransferFunctionProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTransferFunctionProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkUIDManipulator.cpp b/Modules/Core/src/DataManagement/mitkUIDManipulator.cpp index 8be1c2bb4b2..248be6723fc 100644 --- a/Modules/Core/src/DataManagement/mitkUIDManipulator.cpp +++ b/Modules/Core/src/DataManagement/mitkUIDManipulator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/DataManagement/mitkVector.cpp b/Modules/Core/src/DataManagement/mitkVector.cpp index 9359e394225..a9ca6ccfb5b 100644 --- a/Modules/Core/src/DataManagement/mitkVector.cpp +++ b/Modules/Core/src/DataManagement/mitkVector.cpp @@ -1,17 +1,13 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVector.h" diff --git a/Modules/Core/src/DataManagement/mitkVectorProperty.cpp b/Modules/Core/src/DataManagement/mitkVectorProperty.cpp index 3f44f4fc788..d2fa075f522 100644 --- a/Modules/Core/src/DataManagement/mitkVectorProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkVectorProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVectorProperty.h" diff --git a/Modules/Core/src/DataManagement/mitkVtkInterpolationProperty.cpp b/Modules/Core/src/DataManagement/mitkVtkInterpolationProperty.cpp index 5ad4ac790e0..f9c6711ec98 100644 --- a/Modules/Core/src/DataManagement/mitkVtkInterpolationProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkVtkInterpolationProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkInterpolationProperty.h" #include diff --git a/Modules/Core/src/DataManagement/mitkVtkRepresentationProperty.cpp b/Modules/Core/src/DataManagement/mitkVtkRepresentationProperty.cpp index fee878f269b..4ba7c6680a4 100644 --- a/Modules/Core/src/DataManagement/mitkVtkRepresentationProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkVtkRepresentationProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkRepresentationProperty.h" #include diff --git a/Modules/Core/src/DataManagement/mitkVtkResliceInterpolationProperty.cpp b/Modules/Core/src/DataManagement/mitkVtkResliceInterpolationProperty.cpp index 189b3d50e1f..8d2e162212a 100644 --- a/Modules/Core/src/DataManagement/mitkVtkResliceInterpolationProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkVtkResliceInterpolationProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkResliceInterpolationProperty.h" #include diff --git a/Modules/Core/src/DataManagement/mitkVtkScalarModeProperty.cpp b/Modules/Core/src/DataManagement/mitkVtkScalarModeProperty.cpp index 34f0d5fac1d..88eb1efb18a 100644 --- a/Modules/Core/src/DataManagement/mitkVtkScalarModeProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkVtkScalarModeProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkScalarModeProperty.h" #include diff --git a/Modules/Core/src/DataManagement/mitkVtkVolumeRenderingProperty.cpp b/Modules/Core/src/DataManagement/mitkVtkVolumeRenderingProperty.cpp index 432383ff2f1..6d69eb3849a 100644 --- a/Modules/Core/src/DataManagement/mitkVtkVolumeRenderingProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkVtkVolumeRenderingProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkVolumeRenderingProperty.h" #include diff --git a/Modules/Core/src/DataManagement/mitkWeakPointerProperty.cpp b/Modules/Core/src/DataManagement/mitkWeakPointerProperty.cpp index 46084ad966a..33249b73cf4 100644 --- a/Modules/Core/src/DataManagement/mitkWeakPointerProperty.cpp +++ b/Modules/Core/src/DataManagement/mitkWeakPointerProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkWeakPointerProperty.h" diff --git a/Modules/Core/src/IO/mitkAbstractFileIO.cpp b/Modules/Core/src/IO/mitkAbstractFileIO.cpp index 757d43e3044..f99a9d782b7 100644 --- a/Modules/Core/src/IO/mitkAbstractFileIO.cpp +++ b/Modules/Core/src/IO/mitkAbstractFileIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAbstractFileIO.h" diff --git a/Modules/Core/src/IO/mitkAbstractFileReader.cpp b/Modules/Core/src/IO/mitkAbstractFileReader.cpp index ce5922b9923..05d7b1b837f 100644 --- a/Modules/Core/src/IO/mitkAbstractFileReader.cpp +++ b/Modules/Core/src/IO/mitkAbstractFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/IO/mitkAbstractFileWriter.cpp b/Modules/Core/src/IO/mitkAbstractFileWriter.cpp index 1cea0dc3c5a..30220b75d7e 100644 --- a/Modules/Core/src/IO/mitkAbstractFileWriter.cpp +++ b/Modules/Core/src/IO/mitkAbstractFileWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/IO/mitkCustomMimeType.cpp b/Modules/Core/src/IO/mitkCustomMimeType.cpp index 222426549e8..30b54ef9621 100644 --- a/Modules/Core/src/IO/mitkCustomMimeType.cpp +++ b/Modules/Core/src/IO/mitkCustomMimeType.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCustomMimeType.h" diff --git a/Modules/Core/src/IO/mitkFileReader.cpp b/Modules/Core/src/IO/mitkFileReader.cpp index c15a17b7f15..c2d5da5efe3 100644 --- a/Modules/Core/src/IO/mitkFileReader.cpp +++ b/Modules/Core/src/IO/mitkFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileReader.h" diff --git a/Modules/Core/src/IO/mitkFileReaderRegistry.cpp b/Modules/Core/src/IO/mitkFileReaderRegistry.cpp index e6d133956f0..4343f8784f2 100644 --- a/Modules/Core/src/IO/mitkFileReaderRegistry.cpp +++ b/Modules/Core/src/IO/mitkFileReaderRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileReaderRegistry.h" diff --git a/Modules/Core/src/IO/mitkFileReaderSelector.cpp b/Modules/Core/src/IO/mitkFileReaderSelector.cpp index 9743b5746ab..5f7e2fb5791 100644 --- a/Modules/Core/src/IO/mitkFileReaderSelector.cpp +++ b/Modules/Core/src/IO/mitkFileReaderSelector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileReaderSelector.h" diff --git a/Modules/Core/src/IO/mitkFileReaderWriterBase.cpp b/Modules/Core/src/IO/mitkFileReaderWriterBase.cpp index 8c076b92930..dc26e2f832c 100644 --- a/Modules/Core/src/IO/mitkFileReaderWriterBase.cpp +++ b/Modules/Core/src/IO/mitkFileReaderWriterBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileReaderWriterBase.h" diff --git a/Modules/Core/src/IO/mitkFileReaderWriterBase.h b/Modules/Core/src/IO/mitkFileReaderWriterBase.h index 4085194089c..4ea06930202 100644 --- a/Modules/Core/src/IO/mitkFileReaderWriterBase.h +++ b/Modules/Core/src/IO/mitkFileReaderWriterBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKFILEREADERWRITERBASE_H #define MITKFILEREADERWRITERBASE_H diff --git a/Modules/Core/src/IO/mitkFileWriter.cpp b/Modules/Core/src/IO/mitkFileWriter.cpp index 0ab40450b98..5d064b14854 100644 --- a/Modules/Core/src/IO/mitkFileWriter.cpp +++ b/Modules/Core/src/IO/mitkFileWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileWriter.h" diff --git a/Modules/Core/src/IO/mitkFileWriterRegistry.cpp b/Modules/Core/src/IO/mitkFileWriterRegistry.cpp index b825a0eaf05..4783f97be22 100644 --- a/Modules/Core/src/IO/mitkFileWriterRegistry.cpp +++ b/Modules/Core/src/IO/mitkFileWriterRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileWriterRegistry.h" diff --git a/Modules/Core/src/IO/mitkFileWriterSelector.cpp b/Modules/Core/src/IO/mitkFileWriterSelector.cpp index 90709d82bf0..dbc14e6be46 100644 --- a/Modules/Core/src/IO/mitkFileWriterSelector.cpp +++ b/Modules/Core/src/IO/mitkFileWriterSelector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileWriterSelector.h" diff --git a/Modules/Core/src/IO/mitkGeometry3DToXML.cpp b/Modules/Core/src/IO/mitkGeometry3DToXML.cpp index 7ce7d9455c4..c611eac6c77 100644 --- a/Modules/Core/src/IO/mitkGeometry3DToXML.cpp +++ b/Modules/Core/src/IO/mitkGeometry3DToXML.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometry3DToXML.h" diff --git a/Modules/Core/src/IO/mitkGeometry3DToXML.h b/Modules/Core/src/IO/mitkGeometry3DToXML.h index ebf2d9af13a..d0cd9d0f6db 100644 --- a/Modules/Core/src/IO/mitkGeometry3DToXML.h +++ b/Modules/Core/src/IO/mitkGeometry3DToXML.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGeometry3DToXML_h #define mitkGeometry3DToXML_h diff --git a/Modules/Core/src/IO/mitkGeometryDataReaderService.cpp b/Modules/Core/src/IO/mitkGeometryDataReaderService.cpp index f74dee17e0f..c95ed5eac5a 100644 --- a/Modules/Core/src/IO/mitkGeometryDataReaderService.cpp +++ b/Modules/Core/src/IO/mitkGeometryDataReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkGeometryDataReaderService.h" diff --git a/Modules/Core/src/IO/mitkGeometryDataWriterService.cpp b/Modules/Core/src/IO/mitkGeometryDataWriterService.cpp index 9b5ce75fd38..1ca99cb8d0b 100644 --- a/Modules/Core/src/IO/mitkGeometryDataWriterService.cpp +++ b/Modules/Core/src/IO/mitkGeometryDataWriterService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometryDataWriterService.h" #include "mitkIOMimeTypes.h" diff --git a/Modules/Core/src/IO/mitkIFileIO.cpp b/Modules/Core/src/IO/mitkIFileIO.cpp index b20b7b73f3f..1e6fe1f13f7 100644 --- a/Modules/Core/src/IO/mitkIFileIO.cpp +++ b/Modules/Core/src/IO/mitkIFileIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIFileIO.h" diff --git a/Modules/Core/src/IO/mitkIFileReader.cpp b/Modules/Core/src/IO/mitkIFileReader.cpp index b6b6c540d4b..2d4c8b419d5 100644 --- a/Modules/Core/src/IO/mitkIFileReader.cpp +++ b/Modules/Core/src/IO/mitkIFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIFileReader.h" diff --git a/Modules/Core/src/IO/mitkIFileWriter.cpp b/Modules/Core/src/IO/mitkIFileWriter.cpp index e5775dd1989..4659b3e06bf 100644 --- a/Modules/Core/src/IO/mitkIFileWriter.cpp +++ b/Modules/Core/src/IO/mitkIFileWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIFileWriter.h" diff --git a/Modules/Core/src/IO/mitkIMimeTypeProvider.cpp b/Modules/Core/src/IO/mitkIMimeTypeProvider.cpp index bad579865cb..47d387a483b 100644 --- a/Modules/Core/src/IO/mitkIMimeTypeProvider.cpp +++ b/Modules/Core/src/IO/mitkIMimeTypeProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIMimeTypeProvider.h" diff --git a/Modules/Core/src/IO/mitkIOConstants.cpp b/Modules/Core/src/IO/mitkIOConstants.cpp index 1e5669e2b94..d782edf55a9 100644 --- a/Modules/Core/src/IO/mitkIOConstants.cpp +++ b/Modules/Core/src/IO/mitkIOConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOConstants.h" diff --git a/Modules/Core/src/IO/mitkIOMimeTypes.cpp b/Modules/Core/src/IO/mitkIOMimeTypes.cpp index db8b8b4bee4..15983508f60 100644 --- a/Modules/Core/src/IO/mitkIOMimeTypes.cpp +++ b/Modules/Core/src/IO/mitkIOMimeTypes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOMimeTypes.h" diff --git a/Modules/Core/src/IO/mitkIOUtil.cpp b/Modules/Core/src/IO/mitkIOUtil.cpp index 9485a965115..b26793be20c 100644 --- a/Modules/Core/src/IO/mitkIOUtil.cpp +++ b/Modules/Core/src/IO/mitkIOUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOUtil.h" diff --git a/Modules/Core/src/IO/mitkImageGenerator.cpp b/Modules/Core/src/IO/mitkImageGenerator.cpp index b51839eafef..f92933ddebd 100644 --- a/Modules/Core/src/IO/mitkImageGenerator.cpp +++ b/Modules/Core/src/IO/mitkImageGenerator.cpp @@ -1,15 +1,11 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ diff --git a/Modules/Core/src/IO/mitkImageVtkLegacyIO.cpp b/Modules/Core/src/IO/mitkImageVtkLegacyIO.cpp index bf3a7a0bfdd..cc5cb322a40 100644 --- a/Modules/Core/src/IO/mitkImageVtkLegacyIO.cpp +++ b/Modules/Core/src/IO/mitkImageVtkLegacyIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageVtkLegacyIO.h" diff --git a/Modules/Core/src/IO/mitkImageVtkLegacyIO.h b/Modules/Core/src/IO/mitkImageVtkLegacyIO.h index db9d4ecbed9..7a0256ee212 100644 --- a/Modules/Core/src/IO/mitkImageVtkLegacyIO.h +++ b/Modules/Core/src/IO/mitkImageVtkLegacyIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEVTKLEGACYIO_H #define MITKIMAGEVTKLEGACYIO_H diff --git a/Modules/Core/src/IO/mitkImageVtkXmlIO.cpp b/Modules/Core/src/IO/mitkImageVtkXmlIO.cpp index 91cf5a161cd..8318508fc16 100644 --- a/Modules/Core/src/IO/mitkImageVtkXmlIO.cpp +++ b/Modules/Core/src/IO/mitkImageVtkXmlIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageVtkXmlIO.h" diff --git a/Modules/Core/src/IO/mitkImageVtkXmlIO.h b/Modules/Core/src/IO/mitkImageVtkXmlIO.h index 9e09ed3e538..bdfd759adc8 100644 --- a/Modules/Core/src/IO/mitkImageVtkXmlIO.h +++ b/Modules/Core/src/IO/mitkImageVtkXmlIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGEVTKXMLIO_H #define MITKIMAGEVTKXMLIO_H diff --git a/Modules/Core/src/IO/mitkItkImageIO.cpp b/Modules/Core/src/IO/mitkItkImageIO.cpp index f0f9a170540..41b85c58be4 100644 --- a/Modules/Core/src/IO/mitkItkImageIO.cpp +++ b/Modules/Core/src/IO/mitkItkImageIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkItkImageIO.h" diff --git a/Modules/Core/src/IO/mitkItkLoggingAdapter.cpp b/Modules/Core/src/IO/mitkItkLoggingAdapter.cpp index 1c78863dec5..ebf27b6df2c 100644 --- a/Modules/Core/src/IO/mitkItkLoggingAdapter.cpp +++ b/Modules/Core/src/IO/mitkItkLoggingAdapter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkItkLoggingAdapter.h" #include "mitkLogMacros.h" diff --git a/Modules/Core/src/IO/mitkLegacyFileReaderService.cpp b/Modules/Core/src/IO/mitkLegacyFileReaderService.cpp index edcaa2cea8d..f206c43d224 100644 --- a/Modules/Core/src/IO/mitkLegacyFileReaderService.cpp +++ b/Modules/Core/src/IO/mitkLegacyFileReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLegacyFileReaderService.h" diff --git a/Modules/Core/src/IO/mitkLegacyFileReaderService.h b/Modules/Core/src/IO/mitkLegacyFileReaderService.h index b0fabf6265d..598220201aa 100644 --- a/Modules/Core/src/IO/mitkLegacyFileReaderService.h +++ b/Modules/Core/src/IO/mitkLegacyFileReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLEGACYFILEREADERSERVICE_H #define MITKLEGACYFILEREADERSERVICE_H diff --git a/Modules/Core/src/IO/mitkLegacyFileWriterService.cpp b/Modules/Core/src/IO/mitkLegacyFileWriterService.cpp index 8c7ff85c0fb..795b9d807db 100644 --- a/Modules/Core/src/IO/mitkLegacyFileWriterService.cpp +++ b/Modules/Core/src/IO/mitkLegacyFileWriterService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLegacyFileWriterService.h" diff --git a/Modules/Core/src/IO/mitkLegacyFileWriterService.h b/Modules/Core/src/IO/mitkLegacyFileWriterService.h index c219a6d71ee..9a76d5cedfa 100644 --- a/Modules/Core/src/IO/mitkLegacyFileWriterService.h +++ b/Modules/Core/src/IO/mitkLegacyFileWriterService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LegacyFileWriterService_H_HEADER_INCLUDED_C1E7E521 #define LegacyFileWriterService_H_HEADER_INCLUDED_C1E7E521 diff --git a/Modules/Core/src/IO/mitkLocaleSwitch.cpp b/Modules/Core/src/IO/mitkLocaleSwitch.cpp index 466d35b6e81..29edf535e94 100644 --- a/Modules/Core/src/IO/mitkLocaleSwitch.cpp +++ b/Modules/Core/src/IO/mitkLocaleSwitch.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLocaleSwitch.h" diff --git a/Modules/Core/src/IO/mitkLog.cpp b/Modules/Core/src/IO/mitkLog.cpp index 85f1cf9b73a..de655bfa807 100644 --- a/Modules/Core/src/IO/mitkLog.cpp +++ b/Modules/Core/src/IO/mitkLog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/src/IO/mitkMimeType.cpp b/Modules/Core/src/IO/mitkMimeType.cpp index c5f954058ab..38472c42a1f 100644 --- a/Modules/Core/src/IO/mitkMimeType.cpp +++ b/Modules/Core/src/IO/mitkMimeType.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMimeType.h" diff --git a/Modules/Core/src/IO/mitkMimeTypeProvider.cpp b/Modules/Core/src/IO/mitkMimeTypeProvider.cpp index 379148a8dc0..eb6017fb8d2 100644 --- a/Modules/Core/src/IO/mitkMimeTypeProvider.cpp +++ b/Modules/Core/src/IO/mitkMimeTypeProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMimeTypeProvider.h" diff --git a/Modules/Core/src/IO/mitkMimeTypeProvider.h b/Modules/Core/src/IO/mitkMimeTypeProvider.h index f7cf96bade5..b54c3b5a199 100644 --- a/Modules/Core/src/IO/mitkMimeTypeProvider.h +++ b/Modules/Core/src/IO/mitkMimeTypeProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMIMETYPEPROVIDER_H #define MITKMIMETYPEPROVIDER_H diff --git a/Modules/Core/src/IO/mitkOperation.cpp b/Modules/Core/src/IO/mitkOperation.cpp index 453f052b582..a94dadc0c36 100644 --- a/Modules/Core/src/IO/mitkOperation.cpp +++ b/Modules/Core/src/IO/mitkOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOperation.h" diff --git a/Modules/Core/src/IO/mitkPixelType.cpp b/Modules/Core/src/IO/mitkPixelType.cpp index 2da81d3ecf9..93c47fee9e4 100644 --- a/Modules/Core/src/IO/mitkPixelType.cpp +++ b/Modules/Core/src/IO/mitkPixelType.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPixelType.h" #include diff --git a/Modules/Core/src/IO/mitkPointSetReaderService.cpp b/Modules/Core/src/IO/mitkPointSetReaderService.cpp index 07a47cd3f61..24dac6ba8c4 100644 --- a/Modules/Core/src/IO/mitkPointSetReaderService.cpp +++ b/Modules/Core/src/IO/mitkPointSetReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkPointSetReaderService.h" diff --git a/Modules/Core/src/IO/mitkPointSetReaderService.h b/Modules/Core/src/IO/mitkPointSetReaderService.h index 7354366ff43..42854d4aec9 100644 --- a/Modules/Core/src/IO/mitkPointSetReaderService.h +++ b/Modules/Core/src/IO/mitkPointSetReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_POINT_SET_READER_SERVICE__H_ #define _MITK_POINT_SET_READER_SERVICE__H_ diff --git a/Modules/Core/src/IO/mitkPointSetWriterService.cpp b/Modules/Core/src/IO/mitkPointSetWriterService.cpp index 888170b4ff6..30a5d25dcc8 100644 --- a/Modules/Core/src/IO/mitkPointSetWriterService.cpp +++ b/Modules/Core/src/IO/mitkPointSetWriterService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetWriterService.h" #include "mitkGeometry3DToXML.h" @@ -183,4 +179,4 @@ std::string mitk::PointSetWriterService::ConvertToString(T value) { return "conversion error"; } -} \ No newline at end of file +} diff --git a/Modules/Core/src/IO/mitkPointSetWriterService.h b/Modules/Core/src/IO/mitkPointSetWriterService.h index 60e7076b661..b9b55d4aef7 100644 --- a/Modules/Core/src/IO/mitkPointSetWriterService.h +++ b/Modules/Core/src/IO/mitkPointSetWriterService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_POINT_SET_WRITER_SERVICE__H_ #define _MITK_POINT_SET_WRITER_SERVICE__H_ diff --git a/Modules/Core/src/IO/mitkPreferenceListReaderOptionsFunctor.cpp b/Modules/Core/src/IO/mitkPreferenceListReaderOptionsFunctor.cpp index 1736a284fc5..dc7f493c68b 100644 --- a/Modules/Core/src/IO/mitkPreferenceListReaderOptionsFunctor.cpp +++ b/Modules/Core/src/IO/mitkPreferenceListReaderOptionsFunctor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPreferenceListReaderOptionsFunctor.h" diff --git a/Modules/Core/src/IO/mitkProportionalTimeGeometryToXML.cpp b/Modules/Core/src/IO/mitkProportionalTimeGeometryToXML.cpp index aedb15397a2..6df438ad992 100644 --- a/Modules/Core/src/IO/mitkProportionalTimeGeometryToXML.cpp +++ b/Modules/Core/src/IO/mitkProportionalTimeGeometryToXML.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProportionalTimeGeometryToXML.h" diff --git a/Modules/Core/src/IO/mitkProportionalTimeGeometryToXML.h b/Modules/Core/src/IO/mitkProportionalTimeGeometryToXML.h index 12c6dac8840..5091a9a4821 100644 --- a/Modules/Core/src/IO/mitkProportionalTimeGeometryToXML.h +++ b/Modules/Core/src/IO/mitkProportionalTimeGeometryToXML.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkProportionalTimeGeometryToXML_h #define mitkProportionalTimeGeometryToXML_h diff --git a/Modules/Core/src/IO/mitkRawImageFileReader.cpp b/Modules/Core/src/IO/mitkRawImageFileReader.cpp index adc3972deb9..7bb6559e8c8 100644 --- a/Modules/Core/src/IO/mitkRawImageFileReader.cpp +++ b/Modules/Core/src/IO/mitkRawImageFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRawImageFileReader.h" #include "mitkIOConstants.h" diff --git a/Modules/Core/src/IO/mitkRawImageFileReader.h b/Modules/Core/src/IO/mitkRawImageFileReader.h index 98f26ce5665..47522903703 100644 --- a/Modules/Core/src/IO/mitkRawImageFileReader.h +++ b/Modules/Core/src/IO/mitkRawImageFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRAWIMAGEFILEREADER_H_ #define MITKRAWIMAGEFILEREADER_H_ diff --git a/Modules/Core/src/IO/mitkStandardFileLocations.cpp b/Modules/Core/src/IO/mitkStandardFileLocations.cpp index 83596fc120c..d92045120e2 100644 --- a/Modules/Core/src/IO/mitkStandardFileLocations.cpp +++ b/Modules/Core/src/IO/mitkStandardFileLocations.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/src/IO/mitkSurfaceStlIO.cpp b/Modules/Core/src/IO/mitkSurfaceStlIO.cpp index ee94362ebb8..fa919c857a8 100644 --- a/Modules/Core/src/IO/mitkSurfaceStlIO.cpp +++ b/Modules/Core/src/IO/mitkSurfaceStlIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceStlIO.h" diff --git a/Modules/Core/src/IO/mitkSurfaceStlIO.h b/Modules/Core/src/IO/mitkSurfaceStlIO.h index ca7912131da..4d9ef517480 100644 --- a/Modules/Core/src/IO/mitkSurfaceStlIO.h +++ b/Modules/Core/src/IO/mitkSurfaceStlIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_SURFACE_STL_IO_H_ #define _MITK_SURFACE_STL_IO_H_ diff --git a/Modules/Core/src/IO/mitkSurfaceVtkIO.cpp b/Modules/Core/src/IO/mitkSurfaceVtkIO.cpp index 7af4ba9b807..8ffbd3bb34a 100644 --- a/Modules/Core/src/IO/mitkSurfaceVtkIO.cpp +++ b/Modules/Core/src/IO/mitkSurfaceVtkIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceVtkIO.h" diff --git a/Modules/Core/src/IO/mitkSurfaceVtkIO.h b/Modules/Core/src/IO/mitkSurfaceVtkIO.h index f36ce908719..90b70c0ef2f 100644 --- a/Modules/Core/src/IO/mitkSurfaceVtkIO.h +++ b/Modules/Core/src/IO/mitkSurfaceVtkIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_SURFACE_VTK_IO_H_ #define _MITK_SURFACE_VTK_IO_H_ diff --git a/Modules/Core/src/IO/mitkSurfaceVtkLegacyIO.cpp b/Modules/Core/src/IO/mitkSurfaceVtkLegacyIO.cpp index 5a9f57cc58c..36b25c483a6 100644 --- a/Modules/Core/src/IO/mitkSurfaceVtkLegacyIO.cpp +++ b/Modules/Core/src/IO/mitkSurfaceVtkLegacyIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceVtkLegacyIO.h" diff --git a/Modules/Core/src/IO/mitkSurfaceVtkLegacyIO.h b/Modules/Core/src/IO/mitkSurfaceVtkLegacyIO.h index 89c33acabbe..f9e0c062e16 100644 --- a/Modules/Core/src/IO/mitkSurfaceVtkLegacyIO.h +++ b/Modules/Core/src/IO/mitkSurfaceVtkLegacyIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_SURFACE_VTK_LEGACY_IO_H_ #define _MITK_SURFACE_VTK_LEGACY_IO_H_ diff --git a/Modules/Core/src/IO/mitkSurfaceVtkXmlIO.cpp b/Modules/Core/src/IO/mitkSurfaceVtkXmlIO.cpp index fae9bc27acd..394ab06b251 100644 --- a/Modules/Core/src/IO/mitkSurfaceVtkXmlIO.cpp +++ b/Modules/Core/src/IO/mitkSurfaceVtkXmlIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceVtkXmlIO.h" diff --git a/Modules/Core/src/IO/mitkSurfaceVtkXmlIO.h b/Modules/Core/src/IO/mitkSurfaceVtkXmlIO.h index 6e22a3af313..5fb62f41d62 100644 --- a/Modules/Core/src/IO/mitkSurfaceVtkXmlIO.h +++ b/Modules/Core/src/IO/mitkSurfaceVtkXmlIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_SURFACE_VTK_XML_IO_H_ #define _MITK_SURFACE_VTK_XML_IO_H_ diff --git a/Modules/Core/src/IO/mitkVtkLoggingAdapter.cpp b/Modules/Core/src/IO/mitkVtkLoggingAdapter.cpp index fdef98136bb..63a14921a0f 100644 --- a/Modules/Core/src/IO/mitkVtkLoggingAdapter.cpp +++ b/Modules/Core/src/IO/mitkVtkLoggingAdapter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkLoggingAdapter.h" #include "mitkLogMacros.h" diff --git a/Modules/Core/src/Interactions/mitkAction.cpp b/Modules/Core/src/Interactions/mitkAction.cpp index ed8fdcbaee7..9fab73c4d54 100644 --- a/Modules/Core/src/Interactions/mitkAction.cpp +++ b/Modules/Core/src/Interactions/mitkAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAction.h" diff --git a/Modules/Core/src/Interactions/mitkBindDispatcherInteractor.cpp b/Modules/Core/src/Interactions/mitkBindDispatcherInteractor.cpp index ce54c21cff3..20ed30c48de 100644 --- a/Modules/Core/src/Interactions/mitkBindDispatcherInteractor.cpp +++ b/Modules/Core/src/Interactions/mitkBindDispatcherInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkBindDispatcherInteractor.h" #include "mitkMessage.h" diff --git a/Modules/Core/src/Interactions/mitkCrosshairPositionEvent.cpp b/Modules/Core/src/Interactions/mitkCrosshairPositionEvent.cpp index c8647a040de..c85c6d970c8 100644 --- a/Modules/Core/src/Interactions/mitkCrosshairPositionEvent.cpp +++ b/Modules/Core/src/Interactions/mitkCrosshairPositionEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCrosshairPositionEvent.h" mitk::CrosshairPositionEvent::CrosshairPositionEvent(BaseRenderer *sender) : InteractionEvent(sender) diff --git a/Modules/Core/src/Interactions/mitkDataInteractor.cpp b/Modules/Core/src/Interactions/mitkDataInteractor.cpp index 2e4621aa550..26fc0e78c19 100644 --- a/Modules/Core/src/Interactions/mitkDataInteractor.cpp +++ b/Modules/Core/src/Interactions/mitkDataInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkDataInteractor.h" #include "mitkDataNode.h" diff --git a/Modules/Core/src/Interactions/mitkDispatcher.cpp b/Modules/Core/src/Interactions/mitkDispatcher.cpp index eec8a48ad36..246bbbcf573 100644 --- a/Modules/Core/src/Interactions/mitkDispatcher.cpp +++ b/Modules/Core/src/Interactions/mitkDispatcher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkDispatcher.h" #include "mitkInteractionEvent.h" diff --git a/Modules/Core/src/Interactions/mitkDisplayActionEventBroadcast.cpp b/Modules/Core/src/Interactions/mitkDisplayActionEventBroadcast.cpp index ab8f96c3178..10842c41824 100644 --- a/Modules/Core/src/Interactions/mitkDisplayActionEventBroadcast.cpp +++ b/Modules/Core/src/Interactions/mitkDisplayActionEventBroadcast.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical Image Computing. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkDisplayActionEventBroadcast.h" @@ -673,7 +669,7 @@ void mitk::DisplayActionEventBroadcast::EndRotation(StateMachineAction* /*stateM } void mitk::DisplayActionEventBroadcast::Rotate(StateMachineAction* /*stateMachineAction*/, InteractionEvent* interactionEvent) -{ +{ const auto* positionEvent = dynamic_cast(interactionEvent); if (nullptr == positionEvent) { @@ -717,7 +713,7 @@ void mitk::DisplayActionEventBroadcast::Rotate(StateMachineAction* /*stateMachin } void mitk::DisplayActionEventBroadcast::Swivel(StateMachineAction* /*stateMachineAction*/, InteractionEvent* interactionEvent) -{ +{ const auto* positionEvent = dynamic_cast(interactionEvent); if (nullptr == positionEvent) { diff --git a/Modules/Core/src/Interactions/mitkDisplayActionEventFunctions.cpp b/Modules/Core/src/Interactions/mitkDisplayActionEventFunctions.cpp index 0aca932380f..665c2fba21d 100644 --- a/Modules/Core/src/Interactions/mitkDisplayActionEventFunctions.cpp +++ b/Modules/Core/src/Interactions/mitkDisplayActionEventFunctions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDisplayActionEventFunctions.h" diff --git a/Modules/Core/src/Interactions/mitkDisplayActionEventHandler.cpp b/Modules/Core/src/Interactions/mitkDisplayActionEventHandler.cpp index 5f333bb1a69..c4c14dc2421 100644 --- a/Modules/Core/src/Interactions/mitkDisplayActionEventHandler.cpp +++ b/Modules/Core/src/Interactions/mitkDisplayActionEventHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDisplayActionEventHandler.h" diff --git a/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerDesynchronized.cpp b/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerDesynchronized.cpp index 27a78e9cdb5..5829ee15f5a 100644 --- a/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerDesynchronized.cpp +++ b/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerDesynchronized.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDisplayActionEventHandlerDesynchronized.h" diff --git a/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerStd.cpp b/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerStd.cpp index 649cc7286d7..af0d7c2d611 100644 --- a/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerStd.cpp +++ b/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerStd.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDisplayActionEventHandlerStd.h" diff --git a/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerSynchronized.cpp b/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerSynchronized.cpp index b18c6c85e01..56c64259823 100644 --- a/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerSynchronized.cpp +++ b/Modules/Core/src/Interactions/mitkDisplayActionEventHandlerSynchronized.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDisplayActionEventHandlerSynchronized.h" diff --git a/Modules/Core/src/Interactions/mitkDisplayCoordinateOperation.cpp b/Modules/Core/src/Interactions/mitkDisplayCoordinateOperation.cpp index a9e5c3e53c1..507cd6bd912 100644 --- a/Modules/Core/src/Interactions/mitkDisplayCoordinateOperation.cpp +++ b/Modules/Core/src/Interactions/mitkDisplayCoordinateOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDisplayCoordinateOperation.h" diff --git a/Modules/Core/src/Interactions/mitkDisplayInteractor.cpp b/Modules/Core/src/Interactions/mitkDisplayInteractor.cpp index bcd3dcaf229..3cbe865b7fe 100644 --- a/Modules/Core/src/Interactions/mitkDisplayInteractor.cpp +++ b/Modules/Core/src/Interactions/mitkDisplayInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkDisplayInteractor.h" diff --git a/Modules/Core/src/Interactions/mitkEventConfig.cpp b/Modules/Core/src/Interactions/mitkEventConfig.cpp index f159b27ae06..2ad525cb0e0 100755 --- a/Modules/Core/src/Interactions/mitkEventConfig.cpp +++ b/Modules/Core/src/Interactions/mitkEventConfig.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkEventConfig.h" diff --git a/Modules/Core/src/Interactions/mitkEventFactory.cpp b/Modules/Core/src/Interactions/mitkEventFactory.cpp index 86012729ebe..1680eaffb9e 100755 --- a/Modules/Core/src/Interactions/mitkEventFactory.cpp +++ b/Modules/Core/src/Interactions/mitkEventFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkEventFactory.h" #include diff --git a/Modules/Core/src/Interactions/mitkEventRecorder.cpp b/Modules/Core/src/Interactions/mitkEventRecorder.cpp index 3ccb25974f1..8860ee7b50d 100644 --- a/Modules/Core/src/Interactions/mitkEventRecorder.cpp +++ b/Modules/Core/src/Interactions/mitkEventRecorder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkEventRecorder.h" #include "mitkEventFactory.h" diff --git a/Modules/Core/src/Interactions/mitkEventStateMachine.cpp b/Modules/Core/src/Interactions/mitkEventStateMachine.cpp index 930e0a83542..d372a54fbbb 100644 --- a/Modules/Core/src/Interactions/mitkEventStateMachine.cpp +++ b/Modules/Core/src/Interactions/mitkEventStateMachine.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkEventStateMachine.h" #include "mitkApplicationCursor.h" diff --git a/Modules/Core/src/Interactions/mitkInteractionEvent.cpp b/Modules/Core/src/Interactions/mitkInteractionEvent.cpp index 8be33686f7c..189dc123aa2 100644 --- a/Modules/Core/src/Interactions/mitkInteractionEvent.cpp +++ b/Modules/Core/src/Interactions/mitkInteractionEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkInteractionEvent.h" #include "mitkException.h" diff --git a/Modules/Core/src/Interactions/mitkInteractionEventConst.cpp b/Modules/Core/src/Interactions/mitkInteractionEventConst.cpp index 99f799d1b44..8a102bf2111 100644 --- a/Modules/Core/src/Interactions/mitkInteractionEventConst.cpp +++ b/Modules/Core/src/Interactions/mitkInteractionEventConst.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkInteractionEventConst.h" diff --git a/Modules/Core/src/Interactions/mitkInteractionEventHandler.cpp b/Modules/Core/src/Interactions/mitkInteractionEventHandler.cpp index f8644023e51..461e2cf5694 100644 --- a/Modules/Core/src/Interactions/mitkInteractionEventHandler.cpp +++ b/Modules/Core/src/Interactions/mitkInteractionEventHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkInteractionEventHandler.h" #include "mitkInteractionEvent.h" diff --git a/Modules/Core/src/Interactions/mitkInteractionEventObserver.cpp b/Modules/Core/src/Interactions/mitkInteractionEventObserver.cpp index 9c066aa1380..5879c0c6392 100644 --- a/Modules/Core/src/Interactions/mitkInteractionEventObserver.cpp +++ b/Modules/Core/src/Interactions/mitkInteractionEventObserver.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkInteractionEventObserver.h" diff --git a/Modules/Core/src/Interactions/mitkInteractionKeyEvent.cpp b/Modules/Core/src/Interactions/mitkInteractionKeyEvent.cpp index dbb77c0ee4a..a2f4f1fcf05 100644 --- a/Modules/Core/src/Interactions/mitkInteractionKeyEvent.cpp +++ b/Modules/Core/src/Interactions/mitkInteractionKeyEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkInteractionKeyEvent.h" diff --git a/Modules/Core/src/Interactions/mitkInteractionPositionEvent.cpp b/Modules/Core/src/Interactions/mitkInteractionPositionEvent.cpp index a30a934f956..2e3acc7c03f 100644 --- a/Modules/Core/src/Interactions/mitkInteractionPositionEvent.cpp +++ b/Modules/Core/src/Interactions/mitkInteractionPositionEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkInteractionPositionEvent.h" #include diff --git a/Modules/Core/src/Interactions/mitkInteractionSchemeSwitcher.cpp b/Modules/Core/src/Interactions/mitkInteractionSchemeSwitcher.cpp index 9db3ffb1b4b..7e5e8907edb 100644 --- a/Modules/Core/src/Interactions/mitkInteractionSchemeSwitcher.cpp +++ b/Modules/Core/src/Interactions/mitkInteractionSchemeSwitcher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkInteractionSchemeSwitcher.h" diff --git a/Modules/Core/src/Interactions/mitkInternalEvent.cpp b/Modules/Core/src/Interactions/mitkInternalEvent.cpp index 1a304180c04..affec35dcfb 100644 --- a/Modules/Core/src/Interactions/mitkInternalEvent.cpp +++ b/Modules/Core/src/Interactions/mitkInternalEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkInternalEvent.h" #include "mitkDataInteractor.h" diff --git a/Modules/Core/src/Interactions/mitkMouseDoubleClickEvent.cpp b/Modules/Core/src/Interactions/mitkMouseDoubleClickEvent.cpp index 24664f9c180..f5656aa5f89 100644 --- a/Modules/Core/src/Interactions/mitkMouseDoubleClickEvent.cpp +++ b/Modules/Core/src/Interactions/mitkMouseDoubleClickEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkMouseDoubleClickEvent.h" #include "mitkException.h" diff --git a/Modules/Core/src/Interactions/mitkMouseModeSwitcher.cpp b/Modules/Core/src/Interactions/mitkMouseModeSwitcher.cpp index 260aaa4e123..f9b2c7a70d3 100644 --- a/Modules/Core/src/Interactions/mitkMouseModeSwitcher.cpp +++ b/Modules/Core/src/Interactions/mitkMouseModeSwitcher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkMouseModeSwitcher.h" // us diff --git a/Modules/Core/src/Interactions/mitkMouseMoveEvent.cpp b/Modules/Core/src/Interactions/mitkMouseMoveEvent.cpp index ce700eae42d..42ae0d1892d 100644 --- a/Modules/Core/src/Interactions/mitkMouseMoveEvent.cpp +++ b/Modules/Core/src/Interactions/mitkMouseMoveEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkMouseMoveEvent.h" #include "mitkException.h" diff --git a/Modules/Core/src/Interactions/mitkMousePressEvent.cpp b/Modules/Core/src/Interactions/mitkMousePressEvent.cpp index 96704966fcd..deaedaaff0d 100644 --- a/Modules/Core/src/Interactions/mitkMousePressEvent.cpp +++ b/Modules/Core/src/Interactions/mitkMousePressEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkMousePressEvent.h" #include "mitkException.h" diff --git a/Modules/Core/src/Interactions/mitkMouseReleaseEvent.cpp b/Modules/Core/src/Interactions/mitkMouseReleaseEvent.cpp index ccb15e88bc7..e816423fe96 100644 --- a/Modules/Core/src/Interactions/mitkMouseReleaseEvent.cpp +++ b/Modules/Core/src/Interactions/mitkMouseReleaseEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkMouseReleaseEvent.h" #include "mitkException.h" diff --git a/Modules/Core/src/Interactions/mitkMouseWheelEvent.cpp b/Modules/Core/src/Interactions/mitkMouseWheelEvent.cpp index 1f8a8aaa429..46603204da6 100644 --- a/Modules/Core/src/Interactions/mitkMouseWheelEvent.cpp +++ b/Modules/Core/src/Interactions/mitkMouseWheelEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkMouseWheelEvent.h" diff --git a/Modules/Core/src/Interactions/mitkPointSetDataInteractor.cpp b/Modules/Core/src/Interactions/mitkPointSetDataInteractor.cpp index fe541eefcd0..ac2d921e9a9 100644 --- a/Modules/Core/src/Interactions/mitkPointSetDataInteractor.cpp +++ b/Modules/Core/src/Interactions/mitkPointSetDataInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkPointSetDataInteractor.h" #include "mitkMouseMoveEvent.h" diff --git a/Modules/Core/src/Interactions/mitkSinglePointDataInteractor.cpp b/Modules/Core/src/Interactions/mitkSinglePointDataInteractor.cpp index 5d413d89cea..de8540d84d5 100644 --- a/Modules/Core/src/Interactions/mitkSinglePointDataInteractor.cpp +++ b/Modules/Core/src/Interactions/mitkSinglePointDataInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkSinglePointDataInteractor.h" #include "mitkMouseMoveEvent.h" diff --git a/Modules/Core/src/Interactions/mitkStateMachineAction.cpp b/Modules/Core/src/Interactions/mitkStateMachineAction.cpp index 31e4b88f2c0..d63a4225012 100644 --- a/Modules/Core/src/Interactions/mitkStateMachineAction.cpp +++ b/Modules/Core/src/Interactions/mitkStateMachineAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStateMachineAction.h" diff --git a/Modules/Core/src/Interactions/mitkStateMachineCondition.cpp b/Modules/Core/src/Interactions/mitkStateMachineCondition.cpp index a40641ef541..71a98196a2f 100644 --- a/Modules/Core/src/Interactions/mitkStateMachineCondition.cpp +++ b/Modules/Core/src/Interactions/mitkStateMachineCondition.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStateMachineCondition.h" diff --git a/Modules/Core/src/Interactions/mitkStateMachineContainer.cpp b/Modules/Core/src/Interactions/mitkStateMachineContainer.cpp index 183cf0f9687..9ee08e1573b 100755 --- a/Modules/Core/src/Interactions/mitkStateMachineContainer.cpp +++ b/Modules/Core/src/Interactions/mitkStateMachineContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkStateMachineContainer.h" #include diff --git a/Modules/Core/src/Interactions/mitkStateMachineState.cpp b/Modules/Core/src/Interactions/mitkStateMachineState.cpp index 6ba9fd82b74..a3aa4ddfdb8 100755 --- a/Modules/Core/src/Interactions/mitkStateMachineState.cpp +++ b/Modules/Core/src/Interactions/mitkStateMachineState.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkStateMachineState.h" diff --git a/Modules/Core/src/Interactions/mitkStateMachineTransition.cpp b/Modules/Core/src/Interactions/mitkStateMachineTransition.cpp index 4e8f6dd718c..de8ba01b1ec 100755 --- a/Modules/Core/src/Interactions/mitkStateMachineTransition.cpp +++ b/Modules/Core/src/Interactions/mitkStateMachineTransition.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkStateMachineTransition.h" #include "mitkEventFactory.h" diff --git a/Modules/Core/src/Interactions/mitkVtkEventAdapter.cpp b/Modules/Core/src/Interactions/mitkVtkEventAdapter.cpp index 2b8593b59d6..35e0cc9a3bc 100644 --- a/Modules/Core/src/Interactions/mitkVtkEventAdapter.cpp +++ b/Modules/Core/src/Interactions/mitkVtkEventAdapter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkVtkEventAdapter.h" #include "mitkInteractionEventConst.h" diff --git a/Modules/Core/src/Interactions/mitkVtkInteractorStyle.cxx b/Modules/Core/src/Interactions/mitkVtkInteractorStyle.cxx index 43cd32dda0b..a3076dd01c2 100644 --- a/Modules/Core/src/Interactions/mitkVtkInteractorStyle.cxx +++ b/Modules/Core/src/Interactions/mitkVtkInteractorStyle.cxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkInteractorStyle.h" diff --git a/Modules/Core/src/Interactions/mitkXML2EventParser.cpp b/Modules/Core/src/Interactions/mitkXML2EventParser.cpp index 028fa812c02..56ebe041b9f 100755 --- a/Modules/Core/src/Interactions/mitkXML2EventParser.cpp +++ b/Modules/Core/src/Interactions/mitkXML2EventParser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkXML2EventParser.h" diff --git a/Modules/Core/src/Rendering/mitkAbstractAnnotationRenderer.cpp b/Modules/Core/src/Rendering/mitkAbstractAnnotationRenderer.cpp index abc7b46d2d3..56a26ea5136 100644 --- a/Modules/Core/src/Rendering/mitkAbstractAnnotationRenderer.cpp +++ b/Modules/Core/src/Rendering/mitkAbstractAnnotationRenderer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAbstractAnnotationRenderer.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Core/src/Rendering/mitkAnnotation.cpp b/Modules/Core/src/Rendering/mitkAnnotation.cpp index de3f1e70fef..3da8a601d1f 100644 --- a/Modules/Core/src/Rendering/mitkAnnotation.cpp +++ b/Modules/Core/src/Rendering/mitkAnnotation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAnnotation.h" #include "usGetModuleContext.h" diff --git a/Modules/Core/src/Rendering/mitkAnnotationUtils.cpp b/Modules/Core/src/Rendering/mitkAnnotationUtils.cpp index a053943a52e..256bc14643c 100644 --- a/Modules/Core/src/Rendering/mitkAnnotationUtils.cpp +++ b/Modules/Core/src/Rendering/mitkAnnotationUtils.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAnnotationUtils.h" #include "mitkAnnotation.h" diff --git a/Modules/Core/src/Rendering/mitkBaseRenderer.cpp b/Modules/Core/src/Rendering/mitkBaseRenderer.cpp index e0991e35b5b..cdb8d2c0a32 100644 --- a/Modules/Core/src/Rendering/mitkBaseRenderer.cpp +++ b/Modules/Core/src/Rendering/mitkBaseRenderer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkBaseRenderer.h" #include "mitkMapper.h" diff --git a/Modules/Core/src/Rendering/mitkGradientBackground.cpp b/Modules/Core/src/Rendering/mitkGradientBackground.cpp index 52054a37f7a..62ae9e807be 100644 --- a/Modules/Core/src/Rendering/mitkGradientBackground.cpp +++ b/Modules/Core/src/Rendering/mitkGradientBackground.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGradientBackground.h" #include "mitkVtkLayerController.h" diff --git a/Modules/Core/src/Rendering/mitkImageVtkMapper2D.cpp b/Modules/Core/src/Rendering/mitkImageVtkMapper2D.cpp index c384292b88e..36f6e43230c 100644 --- a/Modules/Core/src/Rendering/mitkImageVtkMapper2D.cpp +++ b/Modules/Core/src/Rendering/mitkImageVtkMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Core/src/Rendering/mitkMapper.cpp b/Modules/Core/src/Rendering/mitkMapper.cpp index 6b5c4c00609..538f5f35792 100644 --- a/Modules/Core/src/Rendering/mitkMapper.cpp +++ b/Modules/Core/src/Rendering/mitkMapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMapper.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Core/src/Rendering/mitkPlaneGeometryDataMapper2D.cpp b/Modules/Core/src/Rendering/mitkPlaneGeometryDataMapper2D.cpp index a539d22d8a6..b5ddd26d2ef 100644 --- a/Modules/Core/src/Rendering/mitkPlaneGeometryDataMapper2D.cpp +++ b/Modules/Core/src/Rendering/mitkPlaneGeometryDataMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneGeometryDataMapper2D.h" diff --git a/Modules/Core/src/Rendering/mitkPlaneGeometryDataVtkMapper3D.cpp b/Modules/Core/src/Rendering/mitkPlaneGeometryDataVtkMapper3D.cpp index b6be815b6c2..dec7e2549fa 100644 --- a/Modules/Core/src/Rendering/mitkPlaneGeometryDataVtkMapper3D.cpp +++ b/Modules/Core/src/Rendering/mitkPlaneGeometryDataVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneGeometryDataVtkMapper3D.h" diff --git a/Modules/Core/src/Rendering/mitkPointSetVtkMapper2D.cpp b/Modules/Core/src/Rendering/mitkPointSetVtkMapper2D.cpp index 81ad158b388..a94ac6b040d 100644 --- a/Modules/Core/src/Rendering/mitkPointSetVtkMapper2D.cpp +++ b/Modules/Core/src/Rendering/mitkPointSetVtkMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetVtkMapper2D.h" diff --git a/Modules/Core/src/Rendering/mitkPointSetVtkMapper3D.cpp b/Modules/Core/src/Rendering/mitkPointSetVtkMapper3D.cpp index 6ed8cdede7e..8c30df1c502 100644 --- a/Modules/Core/src/Rendering/mitkPointSetVtkMapper3D.cpp +++ b/Modules/Core/src/Rendering/mitkPointSetVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetVtkMapper3D.h" #include "mitkColorProperty.h" diff --git a/Modules/Core/src/Rendering/mitkRenderWindow.cpp b/Modules/Core/src/Rendering/mitkRenderWindow.cpp index 23515e14242..c7e64b15aa4 100644 --- a/Modules/Core/src/Rendering/mitkRenderWindow.cpp +++ b/Modules/Core/src/Rendering/mitkRenderWindow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRenderWindow.h" diff --git a/Modules/Core/src/Rendering/mitkRenderWindowBase.cpp b/Modules/Core/src/Rendering/mitkRenderWindowBase.cpp index e6a2c99c6cf..b34a1ba335f 100644 --- a/Modules/Core/src/Rendering/mitkRenderWindowBase.cpp +++ b/Modules/Core/src/Rendering/mitkRenderWindowBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRenderWindowBase.h" #include "mitkRenderingManager.h" diff --git a/Modules/Core/src/Rendering/mitkRenderWindowFrame.cpp b/Modules/Core/src/Rendering/mitkRenderWindowFrame.cpp index ef7d782752e..9f222787539 100644 --- a/Modules/Core/src/Rendering/mitkRenderWindowFrame.cpp +++ b/Modules/Core/src/Rendering/mitkRenderWindowFrame.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRenderWindowFrame.h" #include "mitkVtkLayerController.h" diff --git a/Modules/Core/src/Rendering/mitkSurfaceVtkMapper2D.cpp b/Modules/Core/src/Rendering/mitkSurfaceVtkMapper2D.cpp index b63de2babbb..87709dff10e 100644 --- a/Modules/Core/src/Rendering/mitkSurfaceVtkMapper2D.cpp +++ b/Modules/Core/src/Rendering/mitkSurfaceVtkMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceVtkMapper2D.h" diff --git a/Modules/Core/src/Rendering/mitkSurfaceVtkMapper3D.cpp b/Modules/Core/src/Rendering/mitkSurfaceVtkMapper3D.cpp index 8863172ed2a..25d57dd4935 100644 --- a/Modules/Core/src/Rendering/mitkSurfaceVtkMapper3D.cpp +++ b/Modules/Core/src/Rendering/mitkSurfaceVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceVtkMapper3D.h" #include diff --git a/Modules/Core/src/Rendering/mitkVtkEventProvider.cpp b/Modules/Core/src/Rendering/mitkVtkEventProvider.cpp index 60d9692b9b0..e75c406175c 100644 --- a/Modules/Core/src/Rendering/mitkVtkEventProvider.cpp +++ b/Modules/Core/src/Rendering/mitkVtkEventProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkVtkEventProvider.h" #include "mitkVtkEventAdapter.h" diff --git a/Modules/Core/src/Rendering/mitkVtkMapper.cpp b/Modules/Core/src/Rendering/mitkVtkMapper.cpp index 6f54da45096..6cfd6189ff3 100644 --- a/Modules/Core/src/Rendering/mitkVtkMapper.cpp +++ b/Modules/Core/src/Rendering/mitkVtkMapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkMapper.h" diff --git a/Modules/Core/src/Rendering/mitkVtkPropRenderer.cpp b/Modules/Core/src/Rendering/mitkVtkPropRenderer.cpp index c24052db548..923dbe1dd3e 100644 --- a/Modules/Core/src/Rendering/mitkVtkPropRenderer.cpp +++ b/Modules/Core/src/Rendering/mitkVtkPropRenderer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkPropRenderer.h" diff --git a/Modules/Core/src/Rendering/mitkVtkWidgetRendering.cpp b/Modules/Core/src/Rendering/mitkVtkWidgetRendering.cpp index 067e784a5b9..a30c1bdb9e7 100644 --- a/Modules/Core/src/Rendering/mitkVtkWidgetRendering.cpp +++ b/Modules/Core/src/Rendering/mitkVtkWidgetRendering.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkWidgetRendering.h" diff --git a/Modules/Core/src/Rendering/vtkMitkLevelWindowFilter.cpp b/Modules/Core/src/Rendering/vtkMitkLevelWindowFilter.cpp index 961b52f6ee9..e439ac89684 100644 --- a/Modules/Core/src/Rendering/vtkMitkLevelWindowFilter.cpp +++ b/Modules/Core/src/Rendering/vtkMitkLevelWindowFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkMitkLevelWindowFilter.h" #include "vtkObjectFactory.h" diff --git a/Modules/Core/src/Rendering/vtkMitkRectangleProp.cpp b/Modules/Core/src/Rendering/vtkMitkRectangleProp.cpp index 2661c1dc8ed..0f66bd9ddfb 100644 --- a/Modules/Core/src/Rendering/vtkMitkRectangleProp.cpp +++ b/Modules/Core/src/Rendering/vtkMitkRectangleProp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkMitkRectangleProp.h" diff --git a/Modules/Core/src/Rendering/vtkMitkRenderProp.cpp b/Modules/Core/src/Rendering/vtkMitkRenderProp.cpp index eaf97d9faf1..ce2e0e740c8 100644 --- a/Modules/Core/src/Rendering/vtkMitkRenderProp.cpp +++ b/Modules/Core/src/Rendering/vtkMitkRenderProp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkMitkRenderProp.h" diff --git a/Modules/Core/src/Rendering/vtkMitkThickSlicesFilter.cpp b/Modules/Core/src/Rendering/vtkMitkThickSlicesFilter.cpp index 1f2ab93affa..5486b6340d6 100644 --- a/Modules/Core/src/Rendering/vtkMitkThickSlicesFilter.cpp +++ b/Modules/Core/src/Rendering/vtkMitkThickSlicesFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkMitkThickSlicesFilter.h" diff --git a/Modules/Core/src/Rendering/vtkNeverTranslucentTexture.cpp b/Modules/Core/src/Rendering/vtkNeverTranslucentTexture.cpp index c34469aeb2e..2061c88143f 100644 --- a/Modules/Core/src/Rendering/vtkNeverTranslucentTexture.cpp +++ b/Modules/Core/src/Rendering/vtkNeverTranslucentTexture.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkNeverTranslucentTexture.h" diff --git a/Modules/Core/src/mitkCoreActivator.cpp b/Modules/Core/src/mitkCoreActivator.cpp index 12f59e65fdd..17a64bf8ae8 100644 --- a/Modules/Core/src/mitkCoreActivator.cpp +++ b/Modules/Core/src/mitkCoreActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCoreActivator.h" diff --git a/Modules/Core/src/mitkCoreActivator.h b/Modules/Core/src/mitkCoreActivator.h index e0a010576dc..4a77077c8b8 100644 --- a/Modules/Core/src/mitkCoreActivator.h +++ b/Modules/Core/src/mitkCoreActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOREACTIVATOR_H_ #define MITKCOREACTIVATOR_H_ diff --git a/Modules/Core/src/mitkCoreObjectFactory.cpp b/Modules/Core/src/mitkCoreObjectFactory.cpp index 4a382c7819b..bc3ccef8a5c 100644 --- a/Modules/Core/src/mitkCoreObjectFactory.cpp +++ b/Modules/Core/src/mitkCoreObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCoreObjectFactory.h" #include "mitkConfig.h" diff --git a/Modules/Core/src/mitkCoreObjectFactoryBase.cpp b/Modules/Core/src/mitkCoreObjectFactoryBase.cpp index 18f826fcdf1..32cf6111ca4 100644 --- a/Modules/Core/src/mitkCoreObjectFactoryBase.cpp +++ b/Modules/Core/src/mitkCoreObjectFactoryBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCoreObjectFactoryBase.h" diff --git a/Modules/Core/src/mitkCoreServices.cpp b/Modules/Core/src/mitkCoreServices.cpp index 26263f436b9..4470ec796c9 100644 --- a/Modules/Core/src/mitkCoreServices.cpp +++ b/Modules/Core/src/mitkCoreServices.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCoreServices.h" diff --git a/Modules/Core/src/mitkException.cpp b/Modules/Core/src/mitkException.cpp index 681d94a7828..297d3042c9d 100644 --- a/Modules/Core/src/mitkException.cpp +++ b/Modules/Core/src/mitkException.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkException.h" diff --git a/Modules/Core/test/DirectOverlayTest.cpp b/Modules/Core/test/DirectOverlayTest.cpp index 620160f5931..79d3ea74064 100644 --- a/Modules/Core/test/DirectOverlayTest.cpp +++ b/Modules/Core/test/DirectOverlayTest.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include #include diff --git a/Modules/Core/test/mitkAbstractTransformGeometryTest.cpp b/Modules/Core/test/mitkAbstractTransformGeometryTest.cpp index efa221f73f7..ff8defb0c34 100644 --- a/Modules/Core/test/mitkAbstractTransformGeometryTest.cpp +++ b/Modules/Core/test/mitkAbstractTransformGeometryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExternAbstractTransformGeometry.h" #include "mitkImage.h" diff --git a/Modules/Core/test/mitkAbstractTransformPlaneGeometryTest.cpp b/Modules/Core/test/mitkAbstractTransformPlaneGeometryTest.cpp index 36163ced1a7..fdd87e7df8d 100644 --- a/Modules/Core/test/mitkAbstractTransformPlaneGeometryTest.cpp +++ b/Modules/Core/test/mitkAbstractTransformPlaneGeometryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImage.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/Core/test/mitkAccessByItkTest.cpp b/Modules/Core/test/mitkAccessByItkTest.cpp index 295e1153398..54bba9295e8 100644 --- a/Modules/Core/test/mitkAccessByItkTest.cpp +++ b/Modules/Core/test/mitkAccessByItkTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/test/mitkActionTest.cpp b/Modules/Core/test/mitkActionTest.cpp index 03b56b30706..e09b31a682b 100644 --- a/Modules/Core/test/mitkActionTest.cpp +++ b/Modules/Core/test/mitkActionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkAffineTransformBaseTest.cpp b/Modules/Core/test/mitkAffineTransformBaseTest.cpp index de12bd9e9a9..30fe660ba09 100644 --- a/Modules/Core/test/mitkAffineTransformBaseTest.cpp +++ b/Modules/Core/test/mitkAffineTransformBaseTest.cpp @@ -1,20 +1,16 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkScalableAffineTransform.h" #include "mitkMatrixConvert.h" diff --git a/Modules/Core/test/mitkArbitraryTimeGeometryTest.cpp b/Modules/Core/test/mitkArbitraryTimeGeometryTest.cpp index 02d69c243bc..f25f0e4377d 100644 --- a/Modules/Core/test/mitkArbitraryTimeGeometryTest.cpp +++ b/Modules/Core/test/mitkArbitraryTimeGeometryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkArbitraryTimeGeometry.h" #include "mitkGeometry3D.h" diff --git a/Modules/Core/test/mitkArrayTypeConversionTest.cpp b/Modules/Core/test/mitkArrayTypeConversionTest.cpp index f43faf29a34..5f30855980f 100644 --- a/Modules/Core/test/mitkArrayTypeConversionTest.cpp +++ b/Modules/Core/test/mitkArrayTypeConversionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestFixture.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkBaseDataTest.cpp b/Modules/Core/test/mitkBaseDataTest.cpp index 550dd039a7a..0e7be674172 100644 --- a/Modules/Core/test/mitkBaseDataTest.cpp +++ b/Modules/Core/test/mitkBaseDataTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkBaseGeometryTest.cpp b/Modules/Core/test/mitkBaseGeometryTest.cpp index 8614323d429..79af25a94d7 100644 --- a/Modules/Core/test/mitkBaseGeometryTest.cpp +++ b/Modules/Core/test/mitkBaseGeometryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Core/test/mitkClippedSurfaceBoundsCalculatorTest.cpp b/Modules/Core/test/mitkClippedSurfaceBoundsCalculatorTest.cpp index 9987d1a2f09..3afe051d94d 100644 --- a/Modules/Core/test/mitkClippedSurfaceBoundsCalculatorTest.cpp +++ b/Modules/Core/test/mitkClippedSurfaceBoundsCalculatorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Core/test/mitkCompositePixelValueToStringTest.cpp b/Modules/Core/test/mitkCompositePixelValueToStringTest.cpp index 5d4e8826081..bb2571fa892 100644 --- a/Modules/Core/test/mitkCompositePixelValueToStringTest.cpp +++ b/Modules/Core/test/mitkCompositePixelValueToStringTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Core/test/mitkCoreObjectFactoryTest.cpp b/Modules/Core/test/mitkCoreObjectFactoryTest.cpp index 7b3d12bb3d7..17d93533bab 100644 --- a/Modules/Core/test/mitkCoreObjectFactoryTest.cpp +++ b/Modules/Core/test/mitkCoreObjectFactoryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCoreObjectFactory.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkDataNodeTest.cpp b/Modules/Core/test/mitkDataNodeTest.cpp index ecd27ae6416..65438394c66 100644 --- a/Modules/Core/test/mitkDataNodeTest.cpp +++ b/Modules/Core/test/mitkDataNodeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataNode.h" diff --git a/Modules/Core/test/mitkDataStorageTest.cpp b/Modules/Core/test/mitkDataStorageTest.cpp index 815dcd668cc..ac24c8ea2f4 100644 --- a/Modules/Core/test/mitkDataStorageTest.cpp +++ b/Modules/Core/test/mitkDataStorageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkDispatcherTest.cpp b/Modules/Core/test/mitkDispatcherTest.cpp index 8b5e84935b1..87169dd3194 100644 --- a/Modules/Core/test/mitkDispatcherTest.cpp +++ b/Modules/Core/test/mitkDispatcherTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "itkLightObject.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Core/test/mitkEnumerationPropertyTest.cpp b/Modules/Core/test/mitkEnumerationPropertyTest.cpp index 7d99d08bff5..ee3343b12d6 100644 --- a/Modules/Core/test/mitkEnumerationPropertyTest.cpp +++ b/Modules/Core/test/mitkEnumerationPropertyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkEnumerationProperty.h" #include "mitkVtkInterpolationProperty.h" diff --git a/Modules/Core/test/mitkEqualTest.cpp b/Modules/Core/test/mitkEqualTest.cpp index 86d1767d250..417601c98a3 100644 --- a/Modules/Core/test/mitkEqualTest.cpp +++ b/Modules/Core/test/mitkEqualTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Core/test/mitkEventConfigTest.cpp b/Modules/Core/test/mitkEventConfigTest.cpp index 05cce3afe55..10687260f96 100644 --- a/Modules/Core/test/mitkEventConfigTest.cpp +++ b/Modules/Core/test/mitkEventConfigTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkEventConfig.h" #include "mitkInteractionEvent.h" diff --git a/Modules/Core/test/mitkExceptionTest.cpp b/Modules/Core/test/mitkExceptionTest.cpp index 77c2f497313..ca22e0a12ff 100644 --- a/Modules/Core/test/mitkExceptionTest.cpp +++ b/Modules/Core/test/mitkExceptionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkExtractSliceFilterTest.cpp b/Modules/Core/test/mitkExtractSliceFilterTest.cpp index b0193d8cf8d..ce21ea7eef3 100644 --- a/Modules/Core/test/mitkExtractSliceFilterTest.cpp +++ b/Modules/Core/test/mitkExtractSliceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkFileReaderRegistryTest.cpp b/Modules/Core/test/mitkFileReaderRegistryTest.cpp index f54b7d58094..66670f36c3d 100644 --- a/Modules/Core/test/mitkFileReaderRegistryTest.cpp +++ b/Modules/Core/test/mitkFileReaderRegistryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAbstractFileReader.h" #include "mitkFileReaderRegistry.h" diff --git a/Modules/Core/test/mitkFileWriterRegistryTest.cpp b/Modules/Core/test/mitkFileWriterRegistryTest.cpp index cac65e532de..cf811c6487d 100644 --- a/Modules/Core/test/mitkFileWriterRegistryTest.cpp +++ b/Modules/Core/test/mitkFileWriterRegistryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkFloatToStringTest.cpp b/Modules/Core/test/mitkFloatToStringTest.cpp index bbb53654ebd..4ec4b700023 100644 --- a/Modules/Core/test/mitkFloatToStringTest.cpp +++ b/Modules/Core/test/mitkFloatToStringTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestFixture.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkGenericIDRelationRuleTest.cpp b/Modules/Core/test/mitkGenericIDRelationRuleTest.cpp index 88da5c31f24..9bd1b7a0756 100644 --- a/Modules/Core/test/mitkGenericIDRelationRuleTest.cpp +++ b/Modules/Core/test/mitkGenericIDRelationRuleTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGenericIDRelationRule.h" diff --git a/Modules/Core/test/mitkGenericPropertyTest.cpp b/Modules/Core/test/mitkGenericPropertyTest.cpp index d51ace1e4b8..93447affc8b 100644 --- a/Modules/Core/test/mitkGenericPropertyTest.cpp +++ b/Modules/Core/test/mitkGenericPropertyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGenericProperty.h" #include "mitkNumericTypes.h" diff --git a/Modules/Core/test/mitkGeometry3DEqualTest.cpp b/Modules/Core/test/mitkGeometry3DEqualTest.cpp index a5acfa0aa80..345b7637c89 100644 --- a/Modules/Core/test/mitkGeometry3DEqualTest.cpp +++ b/Modules/Core/test/mitkGeometry3DEqualTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometry3D.h" #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkGeometry3DTest.cpp b/Modules/Core/test/mitkGeometry3DTest.cpp index 2c445038164..5e93e0064c3 100644 --- a/Modules/Core/test/mitkGeometry3DTest.cpp +++ b/Modules/Core/test/mitkGeometry3DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometry3D.h" diff --git a/Modules/Core/test/mitkGeometryDataIOTest.cpp b/Modules/Core/test/mitkGeometryDataIOTest.cpp index 1068ecaf2b4..f7970340898 100644 --- a/Modules/Core/test/mitkGeometryDataIOTest.cpp +++ b/Modules/Core/test/mitkGeometryDataIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestFixture.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkGeometryDataToSurfaceFilterTest.cpp b/Modules/Core/test/mitkGeometryDataToSurfaceFilterTest.cpp index 281fe4c55f9..391c3d4119f 100644 --- a/Modules/Core/test/mitkGeometryDataToSurfaceFilterTest.cpp +++ b/Modules/Core/test/mitkGeometryDataToSurfaceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneGeometryDataToSurfaceFilter.h" diff --git a/Modules/Core/test/mitkGrabItkImageMemoryTest.cpp b/Modules/Core/test/mitkGrabItkImageMemoryTest.cpp index 7adb687145d..af4e83d959c 100644 --- a/Modules/Core/test/mitkGrabItkImageMemoryTest.cpp +++ b/Modules/Core/test/mitkGrabItkImageMemoryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkITKImageImport.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkIOUtilTest.cpp b/Modules/Core/test/mitkIOUtilTest.cpp index dc057908faf..e1e1f73e982 100644 --- a/Modules/Core/test/mitkIOUtilTest.cpp +++ b/Modules/Core/test/mitkIOUtilTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Core/test/mitkITKThreadingTest.cpp b/Modules/Core/test/mitkITKThreadingTest.cpp index e38488b5846..c86b11d4c40 100644 --- a/Modules/Core/test/mitkITKThreadingTest.cpp +++ b/Modules/Core/test/mitkITKThreadingTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkImageAccessorTest.cpp b/Modules/Core/test/mitkImageAccessorTest.cpp index be617bf5da0..e85fb2a72c6 100644 --- a/Modules/Core/test/mitkImageAccessorTest.cpp +++ b/Modules/Core/test/mitkImageAccessorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkBarrier.h" #include "mitkIOUtil.h" diff --git a/Modules/Core/test/mitkImageCastTest.cpp b/Modules/Core/test/mitkImageCastTest.cpp index 884258fbae1..c1ff1f59135 100644 --- a/Modules/Core/test/mitkImageCastTest.cpp +++ b/Modules/Core/test/mitkImageCastTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestFixture.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkImageDataItemTest.cpp b/Modules/Core/test/mitkImageDataItemTest.cpp index c17d46b8a77..ca41528e5f6 100644 --- a/Modules/Core/test/mitkImageDataItemTest.cpp +++ b/Modules/Core/test/mitkImageDataItemTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/test/mitkImageDimensionConverterTest.cpp b/Modules/Core/test/mitkImageDimensionConverterTest.cpp index 8e771a06e77..85330086efc 100644 --- a/Modules/Core/test/mitkImageDimensionConverterTest.cpp +++ b/Modules/Core/test/mitkImageDimensionConverterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkTestingConfig.h" diff --git a/Modules/Core/test/mitkImageEqualTest.cpp b/Modules/Core/test/mitkImageEqualTest.cpp index 2a8e8c7c957..5c0c412ec66 100644 --- a/Modules/Core/test/mitkImageEqualTest.cpp +++ b/Modules/Core/test/mitkImageEqualTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImage.h" #include "mitkImageGenerator.h" diff --git a/Modules/Core/test/mitkImageGeneratorTest.cpp b/Modules/Core/test/mitkImageGeneratorTest.cpp index 700dae0f02c..aeaed85d9aa 100644 --- a/Modules/Core/test/mitkImageGeneratorTest.cpp +++ b/Modules/Core/test/mitkImageGeneratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImage.h" #include "mitkImageGenerator.h" diff --git a/Modules/Core/test/mitkImageSliceSelectorTest.cpp b/Modules/Core/test/mitkImageSliceSelectorTest.cpp index 5e8a1a02e32..6881f5cdbd6 100644 --- a/Modules/Core/test/mitkImageSliceSelectorTest.cpp +++ b/Modules/Core/test/mitkImageSliceSelectorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkImageTest.cpp b/Modules/Core/test/mitkImageTest.cpp index 1a0186d0480..bd863985411 100644 --- a/Modules/Core/test/mitkImageTest.cpp +++ b/Modules/Core/test/mitkImageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkException.h" diff --git a/Modules/Core/test/mitkImageTimeSelectorTest.cpp b/Modules/Core/test/mitkImageTimeSelectorTest.cpp index 011545d4cf3..591f00c1ba5 100644 --- a/Modules/Core/test/mitkImageTimeSelectorTest.cpp +++ b/Modules/Core/test/mitkImageTimeSelectorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImage.h" #include "mitkImageGenerator.h" diff --git a/Modules/Core/test/mitkImageToItkTest.cpp b/Modules/Core/test/mitkImageToItkTest.cpp index 54f1bd577cb..a5633761ac8 100644 --- a/Modules/Core/test/mitkImageToItkTest.cpp +++ b/Modules/Core/test/mitkImageToItkTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkDiffusionTensor3D.h" #include "mitkITKImageImport.h" diff --git a/Modules/Core/test/mitkImageToSurfaceFilterTest.cpp b/Modules/Core/test/mitkImageToSurfaceFilterTest.cpp index 1119b2a8846..7288503d2be 100644 --- a/Modules/Core/test/mitkImageToSurfaceFilterTest.cpp +++ b/Modules/Core/test/mitkImageToSurfaceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkException.h" #include "mitkImageToSurfaceFilter.h" #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DColorTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DColorTest.cpp index 376cbc6082e..e45b0afdcbd 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DColorTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DColorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DLevelWindowTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DLevelWindowTest.cpp index a264f9afba7..6204bdb49b0 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DLevelWindowTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DLevelWindowTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DLookupTableTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DLookupTableTest.cpp index 3492ae52995..dd6804fccbf 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DLookupTableTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DLookupTableTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DOpacityTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DOpacityTest.cpp index 3495b87bbb6..8ad5170b3b5 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DOpacityTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DOpacityTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DOpacityTransferFunctionTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DOpacityTransferFunctionTest.cpp index c523c0f1ff4..a29037f9e36 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DOpacityTransferFunctionTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DOpacityTransferFunctionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DResliceInterpolationPropertyTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DResliceInterpolationPropertyTest.cpp index feb38477483..fe18d6cbde9 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DResliceInterpolationPropertyTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DResliceInterpolationPropertyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkDataNode.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DSwivelTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DSwivelTest.cpp index 8df34b3e248..69ab654ca00 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DSwivelTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DSwivelTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkImage.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DTest.cpp index cb331dc30e7..7c8ca50441c 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkImageVtkMapper2DTransferFunctionTest.cpp b/Modules/Core/test/mitkImageVtkMapper2DTransferFunctionTest.cpp index e4a32f59917..00ae5f23ad6 100644 --- a/Modules/Core/test/mitkImageVtkMapper2DTransferFunctionTest.cpp +++ b/Modules/Core/test/mitkImageVtkMapper2DTransferFunctionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkImportItkImageTest.cpp b/Modules/Core/test/mitkImportItkImageTest.cpp index 8517770ee6b..90afbe80f37 100644 --- a/Modules/Core/test/mitkImportItkImageTest.cpp +++ b/Modules/Core/test/mitkImportItkImageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkITKImageImport.h" #include "mitkImageCast.h" diff --git a/Modules/Core/test/mitkInstantiateAccessFunctionTest.cpp b/Modules/Core/test/mitkInstantiateAccessFunctionTest.cpp index 539be56bd30..d38b65a62bf 100644 --- a/Modules/Core/test/mitkInstantiateAccessFunctionTest.cpp +++ b/Modules/Core/test/mitkInstantiateAccessFunctionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkInteractionEventTest.cpp b/Modules/Core/test/mitkInteractionEventTest.cpp index 6f5fb309b52..a042082ce04 100644 --- a/Modules/Core/test/mitkInteractionEventTest.cpp +++ b/Modules/Core/test/mitkInteractionEventTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkInteractionEventConst.h" #include "mitkMouseMoveEvent.h" diff --git a/Modules/Core/test/mitkItkImageIOTest.cpp b/Modules/Core/test/mitkItkImageIOTest.cpp index 87322a0cd85..1c27efa7490 100644 --- a/Modules/Core/test/mitkItkImageIOTest.cpp +++ b/Modules/Core/test/mitkItkImageIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkException.h" #include diff --git a/Modules/Core/test/mitkLevelWindowManagerCppUnitTest.cpp b/Modules/Core/test/mitkLevelWindowManagerCppUnitTest.cpp index 8b44acc49f5..ece270c2933 100644 --- a/Modules/Core/test/mitkLevelWindowManagerCppUnitTest.cpp +++ b/Modules/Core/test/mitkLevelWindowManagerCppUnitTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Core/test/mitkLevelWindowManagerTest.cpp b/Modules/Core/test/mitkLevelWindowManagerTest.cpp index 11902e1ac36..1d7de8c01e8 100644 --- a/Modules/Core/test/mitkLevelWindowManagerTest.cpp +++ b/Modules/Core/test/mitkLevelWindowManagerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkMersenneTwisterRandomVariateGenerator.h" #include "mitkLevelWindowManager.h" diff --git a/Modules/Core/test/mitkLevelWindowTest.cpp b/Modules/Core/test/mitkLevelWindowTest.cpp index a4f855ed80b..0953bb9c49c 100644 --- a/Modules/Core/test/mitkLevelWindowTest.cpp +++ b/Modules/Core/test/mitkLevelWindowTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageWriteAccessor.h" #include "mitkLevelWindow.h" @@ -967,4 +963,4 @@ int mitkLevelWindowTest(int, char *[]) std::cout << "[PASSED]" << std::endl; std::cout << "[TEST DONE]" << std::endl; return EXIT_SUCCESS; -} \ No newline at end of file +} diff --git a/Modules/Core/test/mitkLineTest.cpp b/Modules/Core/test/mitkLineTest.cpp index b3ffa0e0a8f..7eabc3c52d3 100644 --- a/Modules/Core/test/mitkLineTest.cpp +++ b/Modules/Core/test/mitkLineTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkLogTest.cpp b/Modules/Core/test/mitkLogTest.cpp index d84f86b7592..119855e4817 100644 --- a/Modules/Core/test/mitkLogTest.cpp +++ b/Modules/Core/test/mitkLogTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommon.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkLoggingAdapterTest.cpp b/Modules/Core/test/mitkLoggingAdapterTest.cpp index 8afb259e994..b0a75d004c5 100644 --- a/Modules/Core/test/mitkLoggingAdapterTest.cpp +++ b/Modules/Core/test/mitkLoggingAdapterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Core/test/mitkLookupTableTest.cpp b/Modules/Core/test/mitkLookupTableTest.cpp index 13090a9c540..cddfa8ffe24 100644 --- a/Modules/Core/test/mitkLookupTableTest.cpp +++ b/Modules/Core/test/mitkLookupTableTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/test/mitkMaterialTest.cpp b/Modules/Core/test/mitkMaterialTest.cpp index ce059232dec..06691962469 100644 --- a/Modules/Core/test/mitkMaterialTest.cpp +++ b/Modules/Core/test/mitkMaterialTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBaseProperty.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Core/test/mitkMatrixTypeConversionTest.cpp b/Modules/Core/test/mitkMatrixTypeConversionTest.cpp index d5096ba0b7d..93ac4d08a76 100644 --- a/Modules/Core/test/mitkMatrixTypeConversionTest.cpp +++ b/Modules/Core/test/mitkMatrixTypeConversionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/test/mitkMessageTest.cpp b/Modules/Core/test/mitkMessageTest.cpp index 62cbef11093..891aba839d3 100644 --- a/Modules/Core/test/mitkMessageTest.cpp +++ b/Modules/Core/test/mitkMessageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMessage.h" diff --git a/Modules/Core/test/mitkMultiComponentImageDataComparisonFilterTest.cpp b/Modules/Core/test/mitkMultiComponentImageDataComparisonFilterTest.cpp index 40025975f1e..66c2046006d 100644 --- a/Modules/Core/test/mitkMultiComponentImageDataComparisonFilterTest.cpp +++ b/Modules/Core/test/mitkMultiComponentImageDataComparisonFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkIOUtil.h" diff --git a/Modules/Core/test/mitkNodePredicateDataPropertyTest.cpp b/Modules/Core/test/mitkNodePredicateDataPropertyTest.cpp index d7c44d12731..6beaf493480 100644 --- a/Modules/Core/test/mitkNodePredicateDataPropertyTest.cpp +++ b/Modules/Core/test/mitkNodePredicateDataPropertyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometry3D.h" #include "mitkBaseDataTestImplementation.h" diff --git a/Modules/Core/test/mitkNodePredicateFunctionTest.cpp b/Modules/Core/test/mitkNodePredicateFunctionTest.cpp index 0c236c1b5bd..691b533dc07 100644 --- a/Modules/Core/test/mitkNodePredicateFunctionTest.cpp +++ b/Modules/Core/test/mitkNodePredicateFunctionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkNodePredicateGeometryTest.cpp b/Modules/Core/test/mitkNodePredicateGeometryTest.cpp index dc90682e100..c0968c49693 100644 --- a/Modules/Core/test/mitkNodePredicateGeometryTest.cpp +++ b/Modules/Core/test/mitkNodePredicateGeometryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometry3D.h" #include "mitkBaseDataTestImplementation.h" diff --git a/Modules/Core/test/mitkNodePredicateSourceTest.cpp b/Modules/Core/test/mitkNodePredicateSourceTest.cpp index ba2d36f78f6..22a769e09c9 100644 --- a/Modules/Core/test/mitkNodePredicateSourceTest.cpp +++ b/Modules/Core/test/mitkNodePredicateSourceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicateSource.h" #include "mitkStandaloneDataStorage.h" diff --git a/Modules/Core/test/mitkPixelTypeTest.cpp b/Modules/Core/test/mitkPixelTypeTest.cpp index c83e2c5bb5d..a5596f94516 100644 --- a/Modules/Core/test/mitkPixelTypeTest.cpp +++ b/Modules/Core/test/mitkPixelTypeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPixelType.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkPlaneGeometryDataMapper2DTest.cpp b/Modules/Core/test/mitkPlaneGeometryDataMapper2DTest.cpp index 4bff66ede1c..20c53138230 100644 --- a/Modules/Core/test/mitkPlaneGeometryDataMapper2DTest.cpp +++ b/Modules/Core/test/mitkPlaneGeometryDataMapper2DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkPlaneGeometryTest.cpp b/Modules/Core/test/mitkPlaneGeometryTest.cpp index 10ea8ad1592..b10f0e1887f 100644 --- a/Modules/Core/test/mitkPlaneGeometryTest.cpp +++ b/Modules/Core/test/mitkPlaneGeometryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAffineTransform3D.h" #include "mitkBaseGeometry.h" diff --git a/Modules/Core/test/mitkPlanePositionManagerTest.cpp b/Modules/Core/test/mitkPlanePositionManagerTest.cpp index 5677151ee06..39197042d57 100644 --- a/Modules/Core/test/mitkPlanePositionManagerTest.cpp +++ b/Modules/Core/test/mitkPlanePositionManagerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBaseProperty.h" #include "mitkDataNode.h" #include "mitkGeometry3D.h" diff --git a/Modules/Core/test/mitkPointSetDataInteractorTest.cpp b/Modules/Core/test/mitkPointSetDataInteractorTest.cpp index 8897425364e..9ae06c04320 100644 --- a/Modules/Core/test/mitkPointSetDataInteractorTest.cpp +++ b/Modules/Core/test/mitkPointSetDataInteractorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Core/test/mitkPointSetEqualTest.cpp b/Modules/Core/test/mitkPointSetEqualTest.cpp index 4ac4aeb606a..d00871cfd4e 100644 --- a/Modules/Core/test/mitkPointSetEqualTest.cpp +++ b/Modules/Core/test/mitkPointSetEqualTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSet.h" #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkPointSetFileIOTest.cpp b/Modules/Core/test/mitkPointSetFileIOTest.cpp index ea1023dc00d..bce30fd5c60 100644 --- a/Modules/Core/test/mitkPointSetFileIOTest.cpp +++ b/Modules/Core/test/mitkPointSetFileIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileWriterRegistry.h" #include "mitkIOUtil.h" diff --git a/Modules/Core/test/mitkPointSetLocaleTest.cpp b/Modules/Core/test/mitkPointSetLocaleTest.cpp index 7a26e57d2aa..4e8882d480a 100644 --- a/Modules/Core/test/mitkPointSetLocaleTest.cpp +++ b/Modules/Core/test/mitkPointSetLocaleTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkPointSetOnEmptyTest.cpp b/Modules/Core/test/mitkPointSetOnEmptyTest.cpp index f044749ee67..5f77c3cfe3b 100644 --- a/Modules/Core/test/mitkPointSetOnEmptyTest.cpp +++ b/Modules/Core/test/mitkPointSetOnEmptyTest.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + /* * mitkPointSetTestOnEmpty.cpp * diff --git a/Modules/Core/test/mitkPointSetPointOperationsTest.cpp b/Modules/Core/test/mitkPointSetPointOperationsTest.cpp index 744c28ac597..aac57733447 100644 --- a/Modules/Core/test/mitkPointSetPointOperationsTest.cpp +++ b/Modules/Core/test/mitkPointSetPointOperationsTest.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + /* * mitkPoinSetPointOperationsTest.cpp * diff --git a/Modules/Core/test/mitkPointSetReaderTest.cpp b/Modules/Core/test/mitkPointSetReaderTest.cpp index 31681987a7b..dc47793a734 100644 --- a/Modules/Core/test/mitkPointSetReaderTest.cpp +++ b/Modules/Core/test/mitkPointSetReaderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileReaderRegistry.h" #include "mitkMimeType.h" diff --git a/Modules/Core/test/mitkPointSetTest.cpp b/Modules/Core/test/mitkPointSetTest.cpp index 4b2d6f00e6f..661ef934f90 100644 --- a/Modules/Core/test/mitkPointSetTest.cpp +++ b/Modules/Core/test/mitkPointSetTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestFixture.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkPointSetVtkMapper2DGlyphTypeTest.cpp b/Modules/Core/test/mitkPointSetVtkMapper2DGlyphTypeTest.cpp index 60d0ef6faa8..72a37f47bd5 100644 --- a/Modules/Core/test/mitkPointSetVtkMapper2DGlyphTypeTest.cpp +++ b/Modules/Core/test/mitkPointSetVtkMapper2DGlyphTypeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" @@ -68,4 +64,4 @@ int mitkPointSetVtkMapper2DGlyphTypeTest(int argc, char *argv[]) } MITK_TEST_END(); -} \ No newline at end of file +} diff --git a/Modules/Core/test/mitkPointSetVtkMapper2DImageTest.cpp b/Modules/Core/test/mitkPointSetVtkMapper2DImageTest.cpp index 19a1cd6b284..a7fd54153f5 100644 --- a/Modules/Core/test/mitkPointSetVtkMapper2DImageTest.cpp +++ b/Modules/Core/test/mitkPointSetVtkMapper2DImageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkPointSetVtkMapper2DTest.cpp b/Modules/Core/test/mitkPointSetVtkMapper2DTest.cpp index 4e7144bd9fe..e7fbd73671a 100644 --- a/Modules/Core/test/mitkPointSetVtkMapper2DTest.cpp +++ b/Modules/Core/test/mitkPointSetVtkMapper2DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/Core/test/mitkPointSetVtkMapper2DTransformedPointsTest.cpp b/Modules/Core/test/mitkPointSetVtkMapper2DTransformedPointsTest.cpp index 1e122822fcb..66704a596ca 100644 --- a/Modules/Core/test/mitkPointSetVtkMapper2DTransformedPointsTest.cpp +++ b/Modules/Core/test/mitkPointSetVtkMapper2DTransformedPointsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" @@ -77,4 +73,4 @@ int mitkPointSetVtkMapper2DTransformedPointsTest(int argc, char *argv[]) } MITK_TEST_END(); -} \ No newline at end of file +} diff --git a/Modules/Core/test/mitkPointSetWriterTest.cpp b/Modules/Core/test/mitkPointSetWriterTest.cpp index 0f86266ffb3..75bcbcb32bc 100644 --- a/Modules/Core/test/mitkPointSetWriterTest.cpp +++ b/Modules/Core/test/mitkPointSetWriterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSet.h" diff --git a/Modules/Core/test/mitkPointTypeConversionTest.cpp b/Modules/Core/test/mitkPointTypeConversionTest.cpp index 71d17302a48..9b706c1e03a 100644 --- a/Modules/Core/test/mitkPointTypeConversionTest.cpp +++ b/Modules/Core/test/mitkPointTypeConversionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkPreferenceListReaderOptionsFunctorTest.cpp b/Modules/Core/test/mitkPreferenceListReaderOptionsFunctorTest.cpp index e0b880769c3..c779a6aefcc 100644 --- a/Modules/Core/test/mitkPreferenceListReaderOptionsFunctorTest.cpp +++ b/Modules/Core/test/mitkPreferenceListReaderOptionsFunctorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPreferenceListReaderOptionsFunctor.h" #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkProgressBarTest.cpp b/Modules/Core/test/mitkProgressBarTest.cpp index f292dc8c5fb..a853812d6ba 100644 --- a/Modules/Core/test/mitkProgressBarTest.cpp +++ b/Modules/Core/test/mitkProgressBarTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkPropertyAliasesTest.cpp b/Modules/Core/test/mitkPropertyAliasesTest.cpp index 506b2630296..22dd5d8ec0c 100644 --- a/Modules/Core/test/mitkPropertyAliasesTest.cpp +++ b/Modules/Core/test/mitkPropertyAliasesTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkPropertyDescriptionsTest.cpp b/Modules/Core/test/mitkPropertyDescriptionsTest.cpp index ee16f25e668..6b7e98b5f05 100644 --- a/Modules/Core/test/mitkPropertyDescriptionsTest.cpp +++ b/Modules/Core/test/mitkPropertyDescriptionsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkPropertyExtensionsTest.cpp b/Modules/Core/test/mitkPropertyExtensionsTest.cpp index 00aeb9d58d3..8404dcc0cb5 100644 --- a/Modules/Core/test/mitkPropertyExtensionsTest.cpp +++ b/Modules/Core/test/mitkPropertyExtensionsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkPropertyFiltersTest.cpp b/Modules/Core/test/mitkPropertyFiltersTest.cpp index 19b7da274a7..2eba270d66c 100644 --- a/Modules/Core/test/mitkPropertyFiltersTest.cpp +++ b/Modules/Core/test/mitkPropertyFiltersTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkPropertyKeyPathTest.cpp b/Modules/Core/test/mitkPropertyKeyPathTest.cpp index d736da9ea04..338df2a20fe 100644 --- a/Modules/Core/test/mitkPropertyKeyPathTest.cpp +++ b/Modules/Core/test/mitkPropertyKeyPathTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyKeyPath.h" diff --git a/Modules/Core/test/mitkPropertyListTest.cpp b/Modules/Core/test/mitkPropertyListTest.cpp index b11dbb5ac6c..b3546489c11 100644 --- a/Modules/Core/test/mitkPropertyListTest.cpp +++ b/Modules/Core/test/mitkPropertyListTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLookupTables.h" #include "mitkProperties.h" diff --git a/Modules/Core/test/mitkPropertyNameHelperTest.cpp b/Modules/Core/test/mitkPropertyNameHelperTest.cpp index f4bd9cd9d3a..76de20f35d9 100644 --- a/Modules/Core/test/mitkPropertyNameHelperTest.cpp +++ b/Modules/Core/test/mitkPropertyNameHelperTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyNameHelper.h" #include "mitkStringProperty.h" diff --git a/Modules/Core/test/mitkPropertyPersistenceInfoTest.cpp b/Modules/Core/test/mitkPropertyPersistenceInfoTest.cpp index 4c37ae4b9b5..b635d81dc1b 100644 --- a/Modules/Core/test/mitkPropertyPersistenceInfoTest.cpp +++ b/Modules/Core/test/mitkPropertyPersistenceInfoTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOMimeTypes.h" #include "mitkPropertyPersistenceInfo.h" diff --git a/Modules/Core/test/mitkPropertyPersistenceTest.cpp b/Modules/Core/test/mitkPropertyPersistenceTest.cpp index 15c2ac257f1..c4b0bc305a7 100644 --- a/Modules/Core/test/mitkPropertyPersistenceTest.cpp +++ b/Modules/Core/test/mitkPropertyPersistenceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOMimeTypes.h" #include "mitkPropertyPersistence.h" diff --git a/Modules/Core/test/mitkPropertyRelationRuleBaseTest.cpp b/Modules/Core/test/mitkPropertyRelationRuleBaseTest.cpp index 6ef8df3be17..04768c9a2d8 100644 --- a/Modules/Core/test/mitkPropertyRelationRuleBaseTest.cpp +++ b/Modules/Core/test/mitkPropertyRelationRuleBaseTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyRelationRuleBase.h" diff --git a/Modules/Core/test/mitkPropertyRelationsTest.cpp b/Modules/Core/test/mitkPropertyRelationsTest.cpp index c46062ae659..882b3fc7efe 100644 --- a/Modules/Core/test/mitkPropertyRelationsTest.cpp +++ b/Modules/Core/test/mitkPropertyRelationsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyRelations.h" diff --git a/Modules/Core/test/mitkPropertyTest.cpp b/Modules/Core/test/mitkPropertyTest.cpp index 47a7ac4c400..01a23ef6ec6 100644 --- a/Modules/Core/test/mitkPropertyTest.cpp +++ b/Modules/Core/test/mitkPropertyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkProportionalTimeGeometryTest.cpp b/Modules/Core/test/mitkProportionalTimeGeometryTest.cpp index 1eb33bb8609..fc2845abff5 100644 --- a/Modules/Core/test/mitkProportionalTimeGeometryTest.cpp +++ b/Modules/Core/test/mitkProportionalTimeGeometryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometry3D.h" #include "mitkProportionalTimeGeometry.h" diff --git a/Modules/Core/test/mitkRawImageFileReaderTest.cpp b/Modules/Core/test/mitkRawImageFileReaderTest.cpp index 395561e0e0b..018481299f8 100644 --- a/Modules/Core/test/mitkRawImageFileReaderTest.cpp +++ b/Modules/Core/test/mitkRawImageFileReaderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOConstants.h" #include "mitkIOUtil.h" diff --git a/Modules/Core/test/mitkRegistrationBaseTest.cpp b/Modules/Core/test/mitkRegistrationBaseTest.cpp index 692e7276583..098ba190936 100644 --- a/Modules/Core/test/mitkRegistrationBaseTest.cpp +++ b/Modules/Core/test/mitkRegistrationBaseTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImage.h" #include "mitkRegistrationBase.h" diff --git a/Modules/Core/test/mitkRenderingManagerTest.cpp b/Modules/Core/test/mitkRenderingManagerTest.cpp index d2cbd2a5869..da36cc4f9fa 100644 --- a/Modules/Core/test/mitkRenderingManagerTest.cpp +++ b/Modules/Core/test/mitkRenderingManagerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkRenderingManager.h" diff --git a/Modules/Core/test/mitkRotatedSlice4DTest.cpp b/Modules/Core/test/mitkRotatedSlice4DTest.cpp index 61a684c702f..0fdd8f5caab 100644 --- a/Modules/Core/test/mitkRotatedSlice4DTest.cpp +++ b/Modules/Core/test/mitkRotatedSlice4DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtractSliceFilter.h" #include "mitkIOUtil.h" diff --git a/Modules/Core/test/mitkSTLFileReaderTest.cpp b/Modules/Core/test/mitkSTLFileReaderTest.cpp index 5e064018b46..aa2823ea1a5 100644 --- a/Modules/Core/test/mitkSTLFileReaderTest.cpp +++ b/Modules/Core/test/mitkSTLFileReaderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOUtil.h" #include "mitkImage.h" diff --git a/Modules/Core/test/mitkSliceNavigationControllerTest.cpp b/Modules/Core/test/mitkSliceNavigationControllerTest.cpp index 74976b23a0c..df1861e2bb4 100644 --- a/Modules/Core/test/mitkSliceNavigationControllerTest.cpp +++ b/Modules/Core/test/mitkSliceNavigationControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkSlicedGeometry3DTest.cpp b/Modules/Core/test/mitkSlicedGeometry3DTest.cpp index a5378b6c782..ce273f21ffb 100644 --- a/Modules/Core/test/mitkSlicedGeometry3DTest.cpp +++ b/Modules/Core/test/mitkSlicedGeometry3DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImage.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/Core/test/mitkSourceImageRelationRuleTest.cpp b/Modules/Core/test/mitkSourceImageRelationRuleTest.cpp index bb97c0baf05..2494c9c7923 100644 --- a/Modules/Core/test/mitkSourceImageRelationRuleTest.cpp +++ b/Modules/Core/test/mitkSourceImageRelationRuleTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSourceImageRelationRule.h" @@ -705,7 +701,7 @@ class mitkSourceImageRelationRuleTestSuite : public mitk::TestFixture CPPUNIT_ASSERT_MESSAGE( "Destination uid was not stored with the correct key. Already existing session should be used.", prop); CPPUNIT_ASSERT_MESSAGE("Incorrect destination uid was stored.", prop->GetValueAsString() == dest_1->GetUID()); - + name = "MITK.Relations.1.ruleID"; prop = source_data_1->GetProperty(name.c_str()); CPPUNIT_ASSERT_MESSAGE("Incorrect ruleID was stored.", prop->GetValueAsString() == rule->GetRuleID()); diff --git a/Modules/Core/test/mitkStateMachineContainerTest.cpp b/Modules/Core/test/mitkStateMachineContainerTest.cpp index 22114ff88e1..1ade8d2ec4c 100644 --- a/Modules/Core/test/mitkStateMachineContainerTest.cpp +++ b/Modules/Core/test/mitkStateMachineContainerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkStateMachineAction.h" #include "mitkStateMachineContainer.h" diff --git a/Modules/Core/test/mitkStepperTest.cpp b/Modules/Core/test/mitkStepperTest.cpp index 6b43be4cd8c..d802f7e6525 100644 --- a/Modules/Core/test/mitkStepperTest.cpp +++ b/Modules/Core/test/mitkStepperTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStepper.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkSurfaceDepthSortingTest.cpp b/Modules/Core/test/mitkSurfaceDepthSortingTest.cpp index 7ff63b72eeb..08c515f0e0e 100644 --- a/Modules/Core/test/mitkSurfaceDepthSortingTest.cpp +++ b/Modules/Core/test/mitkSurfaceDepthSortingTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" @@ -59,4 +55,4 @@ int mitkSurfaceDepthSortingTest(int argc, char *argv[]) "CompareRenderWindowAgainstReference test result positive?"); MITK_TEST_END(); -} \ No newline at end of file +} diff --git a/Modules/Core/test/mitkSurfaceEqualTest.cpp b/Modules/Core/test/mitkSurfaceEqualTest.cpp index 738715ae6f1..5cfaebe32b6 100644 --- a/Modules/Core/test/mitkSurfaceEqualTest.cpp +++ b/Modules/Core/test/mitkSurfaceEqualTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurface.h" #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkSurfaceTest.cpp b/Modules/Core/test/mitkSurfaceTest.cpp index 76a03aa7828..1d7cd6b92d4 100644 --- a/Modules/Core/test/mitkSurfaceTest.cpp +++ b/Modules/Core/test/mitkSurfaceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkSurfaceToImageFilterTest.cpp b/Modules/Core/test/mitkSurfaceToImageFilterTest.cpp index 86f6964139b..2139114345a 100644 --- a/Modules/Core/test/mitkSurfaceToImageFilterTest.cpp +++ b/Modules/Core/test/mitkSurfaceToImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkSurfaceToSurfaceFilterTest.cpp b/Modules/Core/test/mitkSurfaceToSurfaceFilterTest.cpp index 9f4ab2fc71d..d40a6f89287 100644 --- a/Modules/Core/test/mitkSurfaceToSurfaceFilterTest.cpp +++ b/Modules/Core/test/mitkSurfaceToSurfaceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommon.h" #include "mitkNumericTypes.h" diff --git a/Modules/Core/test/mitkSurfaceVtkMapper2D3DTest.cpp b/Modules/Core/test/mitkSurfaceVtkMapper2D3DTest.cpp index 6523c1b219c..92181e5bd04 100644 --- a/Modules/Core/test/mitkSurfaceVtkMapper2D3DTest.cpp +++ b/Modules/Core/test/mitkSurfaceVtkMapper2D3DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Core/test/mitkSurfaceVtkMapper2DTest.cpp b/Modules/Core/test/mitkSurfaceVtkMapper2DTest.cpp index abbf8ba6d5e..f89c7f81854 100644 --- a/Modules/Core/test/mitkSurfaceVtkMapper2DTest.cpp +++ b/Modules/Core/test/mitkSurfaceVtkMapper2DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/Core/test/mitkSurfaceVtkMapper3DTest.cpp b/Modules/Core/test/mitkSurfaceVtkMapper3DTest.cpp index fc0e281b198..4e575dc43fc 100644 --- a/Modules/Core/test/mitkSurfaceVtkMapper3DTest.cpp +++ b/Modules/Core/test/mitkSurfaceVtkMapper3DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkSurfaceVtkWriterTest.cpp b/Modules/Core/test/mitkSurfaceVtkWriterTest.cpp index 10e481d40b7..509e0605fef 100644 --- a/Modules/Core/test/mitkSurfaceVtkWriterTest.cpp +++ b/Modules/Core/test/mitkSurfaceVtkWriterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOUtil.h" #include "mitkSurface.h" diff --git a/Modules/Core/test/mitkTemporoSpatialStringPropertyTest.cpp b/Modules/Core/test/mitkTemporoSpatialStringPropertyTest.cpp index b2923fdd7d2..e0962e9f771 100644 --- a/Modules/Core/test/mitkTemporoSpatialStringPropertyTest.cpp +++ b/Modules/Core/test/mitkTemporoSpatialStringPropertyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTemporoSpatialStringProperty.h" #include "mitkTestFixture.h" diff --git a/Modules/Core/test/mitkTestUtilSharedLibrary.cpp b/Modules/Core/test/mitkTestUtilSharedLibrary.cpp index fd3459fb1db..d7839ae2394 100644 --- a/Modules/Core/test/mitkTestUtilSharedLibrary.cpp +++ b/Modules/Core/test/mitkTestUtilSharedLibrary.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkTimeGeometryTest.cpp b/Modules/Core/test/mitkTimeGeometryTest.cpp index 46de07bea09..332311a1b74 100644 --- a/Modules/Core/test/mitkTimeGeometryTest.cpp +++ b/Modules/Core/test/mitkTimeGeometryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometry3D.h" #include "mitkTimeGeometry.h" diff --git a/Modules/Core/test/mitkTinyXMLTest.cpp b/Modules/Core/test/mitkTinyXMLTest.cpp index 21f551681c0..db5273b47df 100644 --- a/Modules/Core/test/mitkTinyXMLTest.cpp +++ b/Modules/Core/test/mitkTinyXMLTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" #include diff --git a/Modules/Core/test/mitkTransferFunctionTest.cpp b/Modules/Core/test/mitkTransferFunctionTest.cpp index 3d9930ee636..74f6279339e 100644 --- a/Modules/Core/test/mitkTransferFunctionTest.cpp +++ b/Modules/Core/test/mitkTransferFunctionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTransferFunction.h" #include "mitkTransferFunctionInitializer.h" diff --git a/Modules/Core/test/mitkUIDGeneratorTest.cpp b/Modules/Core/test/mitkUIDGeneratorTest.cpp index 20508c0deac..84b7f866409 100644 --- a/Modules/Core/test/mitkUIDGeneratorTest.cpp +++ b/Modules/Core/test/mitkUIDGeneratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUIDGenerator.h" #include diff --git a/Modules/Core/test/mitkUndoControllerTest.cpp b/Modules/Core/test/mitkUndoControllerTest.cpp index 4b3d3dfd07a..7210fa23f09 100644 --- a/Modules/Core/test/mitkUndoControllerTest.cpp +++ b/Modules/Core/test/mitkUndoControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUndoController.h" #include "mitkVerboseLimitedLinearUndo.h" diff --git a/Modules/Core/test/mitkVTKRenderWindowSizeTest.cpp b/Modules/Core/test/mitkVTKRenderWindowSizeTest.cpp index b3cdeebb235..17e681b6bb2 100644 --- a/Modules/Core/test/mitkVTKRenderWindowSizeTest.cpp +++ b/Modules/Core/test/mitkVTKRenderWindowSizeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Core/test/mitkVectorPropertyTest.cpp b/Modules/Core/test/mitkVectorPropertyTest.cpp index 4446f6dfa49..63599200618 100644 --- a/Modules/Core/test/mitkVectorPropertyTest.cpp +++ b/Modules/Core/test/mitkVectorPropertyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestFixture.h" #include "mitkTestingMacros.h" diff --git a/Modules/Core/test/mitkVectorTest.cpp b/Modules/Core/test/mitkVectorTest.cpp index 6431e7ef240..8f24bfe60e8 100644 --- a/Modules/Core/test/mitkVectorTest.cpp +++ b/Modules/Core/test/mitkVectorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" #include diff --git a/Modules/Core/test/mitkVectorTypeConversionTest.cpp b/Modules/Core/test/mitkVectorTypeConversionTest.cpp index 687a8f3dd35..6fbbabf3da8 100644 --- a/Modules/Core/test/mitkVectorTypeConversionTest.cpp +++ b/Modules/Core/test/mitkVectorTypeConversionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Core/test/mitkVerboseLimitedLinearUndoTest.cpp b/Modules/Core/test/mitkVerboseLimitedLinearUndoTest.cpp index c223b1f5d75..f5a00644ecb 100644 --- a/Modules/Core/test/mitkVerboseLimitedLinearUndoTest.cpp +++ b/Modules/Core/test/mitkVerboseLimitedLinearUndoTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkInteractionConst.h" #include "mitkOperation.h" diff --git a/Modules/Core/test/mitkVolumeCalculatorTest.cpp b/Modules/Core/test/mitkVolumeCalculatorTest.cpp index f238adf2671..12fdcc33813 100644 --- a/Modules/Core/test/mitkVolumeCalculatorTest.cpp +++ b/Modules/Core/test/mitkVolumeCalculatorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOUtil.h" #include "mitkImage.h" diff --git a/Modules/Core/test/mitkVtkPropRendererTest.cpp b/Modules/Core/test/mitkVtkPropRendererTest.cpp index d8b26a2e4ff..e884fc91b99 100644 --- a/Modules/Core/test/mitkVtkPropRendererTest.cpp +++ b/Modules/Core/test/mitkVtkPropRendererTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkActor.h" #include "vtkPolyDataMapper.h" diff --git a/Modules/Core/test/mitkVtkWidgetRenderingTest.cpp b/Modules/Core/test/mitkVtkWidgetRenderingTest.cpp index 63c39f00659..08735dcd7a3 100644 --- a/Modules/Core/test/mitkVtkWidgetRenderingTest.cpp +++ b/Modules/Core/test/mitkVtkWidgetRenderingTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkWidgetRendering.h" #include diff --git a/Modules/Core/test/mitkWeakPointerTest.cpp b/Modules/Core/test/mitkWeakPointerTest.cpp index 1543c4a4bfc..d95aab46bd4 100644 --- a/Modules/Core/test/mitkWeakPointerTest.cpp +++ b/Modules/Core/test/mitkWeakPointerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Modules/Core/test/vtkMitkThickSlicesFilterTest.cpp b/Modules/Core/test/vtkMitkThickSlicesFilterTest.cpp index 636bcc088db..6fa42db9ef3 100644 --- a/Modules/Core/test/vtkMitkThickSlicesFilterTest.cpp +++ b/Modules/Core/test/vtkMitkThickSlicesFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" diff --git a/Modules/CppMicroServices/cmake/usCMakeResourceDependencies.cpp b/Modules/CppMicroServices/cmake/usCMakeResourceDependencies.cpp index 7276b1a4b10..03703b6bb6e 100644 --- a/Modules/CppMicroServices/cmake/usCMakeResourceDependencies.cpp +++ b/Modules/CppMicroServices/cmake/usCMakeResourceDependencies.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ namespace { diff --git a/Modules/CppMicroServices/cmake/usModuleInit.cpp b/Modules/CppMicroServices/cmake/usModuleInit.cpp index 13cc7500d05..d8c7483773d 100644 --- a/Modules/CppMicroServices/cmake/usModuleInit.cpp +++ b/Modules/CppMicroServices/cmake/usModuleInit.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/doc/snippets/uServices-staticmodules/MyStaticModule.cpp b/Modules/CppMicroServices/core/doc/snippets/uServices-staticmodules/MyStaticModule.cpp index ddbef8d7732..ca70b39ecb6 100644 --- a/Modules/CppMicroServices/core/doc/snippets/uServices-staticmodules/MyStaticModule.cpp +++ b/Modules/CppMicroServices/core/doc/snippets/uServices-staticmodules/MyStaticModule.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/examples/dictionaryclient/Activator.cpp b/Modules/CppMicroServices/core/examples/dictionaryclient/Activator.cpp index 0da637fc4b4..45f97827012 100644 --- a/Modules/CppMicroServices/core/examples/dictionaryclient/Activator.cpp +++ b/Modules/CppMicroServices/core/examples/dictionaryclient/Activator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ //! [Activator] #include "IDictionaryService.h" diff --git a/Modules/CppMicroServices/core/examples/dictionaryclient2/Activator.cpp b/Modules/CppMicroServices/core/examples/dictionaryclient2/Activator.cpp index 28df9efd73f..bd3b2d5da63 100644 --- a/Modules/CppMicroServices/core/examples/dictionaryclient2/Activator.cpp +++ b/Modules/CppMicroServices/core/examples/dictionaryclient2/Activator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ //! [Activator] #include "IDictionaryService.h" diff --git a/Modules/CppMicroServices/core/examples/dictionaryclient3/Activator.cpp b/Modules/CppMicroServices/core/examples/dictionaryclient3/Activator.cpp index 93efe128c59..f3c86169932 100644 --- a/Modules/CppMicroServices/core/examples/dictionaryclient3/Activator.cpp +++ b/Modules/CppMicroServices/core/examples/dictionaryclient3/Activator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ //! [Activator] #include "IDictionaryService.h" diff --git a/Modules/CppMicroServices/core/examples/dictionaryservice/Activator.cpp b/Modules/CppMicroServices/core/examples/dictionaryservice/Activator.cpp index 6626bbec0f1..3a00e7fde51 100644 --- a/Modules/CppMicroServices/core/examples/dictionaryservice/Activator.cpp +++ b/Modules/CppMicroServices/core/examples/dictionaryservice/Activator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ //! [Activator] #include "IDictionaryService.h" diff --git a/Modules/CppMicroServices/core/examples/dictionaryservice/IDictionaryService.cpp b/Modules/CppMicroServices/core/examples/dictionaryservice/IDictionaryService.cpp index ef0ba43dcb9..c375ff0cc55 100644 --- a/Modules/CppMicroServices/core/examples/dictionaryservice/IDictionaryService.cpp +++ b/Modules/CppMicroServices/core/examples/dictionaryservice/IDictionaryService.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "IDictionaryService.h" diff --git a/Modules/CppMicroServices/core/examples/dictionaryservice/IDictionaryService.h b/Modules/CppMicroServices/core/examples/dictionaryservice/IDictionaryService.h index df085b5d71f..58d288748c8 100644 --- a/Modules/CppMicroServices/core/examples/dictionaryservice/IDictionaryService.h +++ b/Modules/CppMicroServices/core/examples/dictionaryservice/IDictionaryService.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef IDICTIONARYSERVICE_H #define IDICTIONARYSERVICE_H diff --git a/Modules/CppMicroServices/core/examples/driver/main.cpp b/Modules/CppMicroServices/core/examples/driver/main.cpp index 3c87a5768af..5949a084a07 100644 --- a/Modules/CppMicroServices/core/examples/driver/main.cpp +++ b/Modules/CppMicroServices/core/examples/driver/main.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/examples/driver/usCoreExamplesDriverConfig.h.in b/Modules/CppMicroServices/core/examples/driver/usCoreExamplesDriverConfig.h.in index 144d1a6f08d..95af0c8cc38 100644 --- a/Modules/CppMicroServices/core/examples/driver/usCoreExamplesDriverConfig.h.in +++ b/Modules/CppMicroServices/core/examples/driver/usCoreExamplesDriverConfig.h.in @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USEXAMPLEDRIVERCONFIG_H #define USEXAMPLEDRIVERCONFIG_H diff --git a/Modules/CppMicroServices/core/examples/eventlistener/Activator.cpp b/Modules/CppMicroServices/core/examples/eventlistener/Activator.cpp index af97ea85de4..a4462a73397 100644 --- a/Modules/CppMicroServices/core/examples/eventlistener/Activator.cpp +++ b/Modules/CppMicroServices/core/examples/eventlistener/Activator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ //! [Activator] #include diff --git a/Modules/CppMicroServices/core/examples/frenchdictionary/Activator.cpp b/Modules/CppMicroServices/core/examples/frenchdictionary/Activator.cpp index c0fa01f67cd..009b45f2f31 100644 --- a/Modules/CppMicroServices/core/examples/frenchdictionary/Activator.cpp +++ b/Modules/CppMicroServices/core/examples/frenchdictionary/Activator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ //! [Activator] #include "IDictionaryService.h" diff --git a/Modules/CppMicroServices/core/examples/spellcheckclient/Activator.cpp b/Modules/CppMicroServices/core/examples/spellcheckclient/Activator.cpp index 3b42f249db0..11cabc37482 100644 --- a/Modules/CppMicroServices/core/examples/spellcheckclient/Activator.cpp +++ b/Modules/CppMicroServices/core/examples/spellcheckclient/Activator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ //! [Activator] #include "ISpellCheckService.h" diff --git a/Modules/CppMicroServices/core/examples/spellcheckservice/Activator.cpp b/Modules/CppMicroServices/core/examples/spellcheckservice/Activator.cpp index f70b867d5a8..3aba6c53d6c 100644 --- a/Modules/CppMicroServices/core/examples/spellcheckservice/Activator.cpp +++ b/Modules/CppMicroServices/core/examples/spellcheckservice/Activator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ //! [Activator] #include "IDictionaryService.h" diff --git a/Modules/CppMicroServices/core/examples/spellcheckservice/ISpellCheckService.cpp b/Modules/CppMicroServices/core/examples/spellcheckservice/ISpellCheckService.cpp index 4a2d238a386..7041dd070b4 100644 --- a/Modules/CppMicroServices/core/examples/spellcheckservice/ISpellCheckService.cpp +++ b/Modules/CppMicroServices/core/examples/spellcheckservice/ISpellCheckService.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "ISpellCheckService.h" diff --git a/Modules/CppMicroServices/core/examples/spellcheckservice/ISpellCheckService.h b/Modules/CppMicroServices/core/examples/spellcheckservice/ISpellCheckService.h index 0f4875d1243..47e35399fe8 100644 --- a/Modules/CppMicroServices/core/examples/spellcheckservice/ISpellCheckService.h +++ b/Modules/CppMicroServices/core/examples/spellcheckservice/ISpellCheckService.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef ISPELLCHECKSERVICE_H #define ISPELLCHECKSERVICE_H diff --git a/Modules/CppMicroServices/core/include/usGetModuleContext.h b/Modules/CppMicroServices/core/include/usGetModuleContext.h index 04003f2f335..77b70cc7baf 100644 --- a/Modules/CppMicroServices/core/include/usGetModuleContext.h +++ b/Modules/CppMicroServices/core/include/usGetModuleContext.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USGETMODULECONTEXT_H diff --git a/Modules/CppMicroServices/core/include/usLDAPFilter.h b/Modules/CppMicroServices/core/include/usLDAPFilter.h index 9456c4a4755..e9ee9223663 100644 --- a/Modules/CppMicroServices/core/include/usLDAPFilter.h +++ b/Modules/CppMicroServices/core/include/usLDAPFilter.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USLDAPFILTER_H #define USLDAPFILTER_H diff --git a/Modules/CppMicroServices/core/include/usLDAPProp.h b/Modules/CppMicroServices/core/include/usLDAPProp.h index e508b39a060..e0a03ababd5 100644 --- a/Modules/CppMicroServices/core/include/usLDAPProp.h +++ b/Modules/CppMicroServices/core/include/usLDAPProp.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USLDAPPROP_H #define USLDAPPROP_H diff --git a/Modules/CppMicroServices/core/include/usModule.h b/Modules/CppMicroServices/core/include/usModule.h index 397ab0f18f3..489f98eb245 100644 --- a/Modules/CppMicroServices/core/include/usModule.h +++ b/Modules/CppMicroServices/core/include/usModule.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULE_H diff --git a/Modules/CppMicroServices/core/include/usModuleActivator.h b/Modules/CppMicroServices/core/include/usModuleActivator.h index 41691efd28f..6231f065ff3 100644 --- a/Modules/CppMicroServices/core/include/usModuleActivator.h +++ b/Modules/CppMicroServices/core/include/usModuleActivator.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEACTIVATOR_H_ #define USMODULEACTIVATOR_H_ diff --git a/Modules/CppMicroServices/core/include/usModuleContext.h b/Modules/CppMicroServices/core/include/usModuleContext.h index 0180097b544..dfcae418d5d 100644 --- a/Modules/CppMicroServices/core/include/usModuleContext.h +++ b/Modules/CppMicroServices/core/include/usModuleContext.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULECONTEXT_H_ #define USMODULECONTEXT_H_ diff --git a/Modules/CppMicroServices/core/include/usModuleEvent.h b/Modules/CppMicroServices/core/include/usModuleEvent.h index bd3a9ce4d86..03d7007d30e 100644 --- a/Modules/CppMicroServices/core/include/usModuleEvent.h +++ b/Modules/CppMicroServices/core/include/usModuleEvent.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEEVENT_H #define USMODULEEVENT_H diff --git a/Modules/CppMicroServices/core/include/usModuleEventHook.h b/Modules/CppMicroServices/core/include/usModuleEventHook.h index e86fd4b3690..6ccebe0c463 100644 --- a/Modules/CppMicroServices/core/include/usModuleEventHook.h +++ b/Modules/CppMicroServices/core/include/usModuleEventHook.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEEVENTHOOK_H #define USMODULEEVENTHOOK_H diff --git a/Modules/CppMicroServices/core/include/usModuleFindHook.h b/Modules/CppMicroServices/core/include/usModuleFindHook.h index ff02e1d6991..c5a5324ec52 100644 --- a/Modules/CppMicroServices/core/include/usModuleFindHook.h +++ b/Modules/CppMicroServices/core/include/usModuleFindHook.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEFINDHOOK_H #define USMODULEFINDHOOK_H diff --git a/Modules/CppMicroServices/core/include/usModuleImport.h b/Modules/CppMicroServices/core/include/usModuleImport.h index d72acf05037..f503118e41b 100644 --- a/Modules/CppMicroServices/core/include/usModuleImport.h +++ b/Modules/CppMicroServices/core/include/usModuleImport.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEIMPORT_H #define USMODULEIMPORT_H diff --git a/Modules/CppMicroServices/core/include/usModuleInfo.h b/Modules/CppMicroServices/core/include/usModuleInfo.h index 66310ed0434..175b41d8c7b 100644 --- a/Modules/CppMicroServices/core/include/usModuleInfo.h +++ b/Modules/CppMicroServices/core/include/usModuleInfo.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEINFO_H diff --git a/Modules/CppMicroServices/core/include/usModuleInitialization.h b/Modules/CppMicroServices/core/include/usModuleInitialization.h index 0c422cf39b6..c8691e0233e 100644 --- a/Modules/CppMicroServices/core/include/usModuleInitialization.h +++ b/Modules/CppMicroServices/core/include/usModuleInitialization.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef US_MODULE_NAME #error Missing US_MODULE_NAME preprocessor define diff --git a/Modules/CppMicroServices/core/include/usModuleRegistry.h b/Modules/CppMicroServices/core/include/usModuleRegistry.h index 3ac2176804d..587a2a8e06d 100644 --- a/Modules/CppMicroServices/core/include/usModuleRegistry.h +++ b/Modules/CppMicroServices/core/include/usModuleRegistry.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEREGISTRY_H #define USMODULEREGISTRY_H diff --git a/Modules/CppMicroServices/core/include/usModuleResource.h b/Modules/CppMicroServices/core/include/usModuleResource.h index b76a5bfd0b8..ffbe66c728f 100644 --- a/Modules/CppMicroServices/core/include/usModuleResource.h +++ b/Modules/CppMicroServices/core/include/usModuleResource.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULERESOURCE_H diff --git a/Modules/CppMicroServices/core/include/usModuleResourceStream.h b/Modules/CppMicroServices/core/include/usModuleResourceStream.h index 0598e7bb44c..1522423c351 100644 --- a/Modules/CppMicroServices/core/include/usModuleResourceStream.h +++ b/Modules/CppMicroServices/core/include/usModuleResourceStream.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULERESOURCESTREAM_H #define USMODULERESOURCESTREAM_H diff --git a/Modules/CppMicroServices/core/include/usModuleSettings.h b/Modules/CppMicroServices/core/include/usModuleSettings.h index 9be332bac87..71e5e5c216e 100644 --- a/Modules/CppMicroServices/core/include/usModuleSettings.h +++ b/Modules/CppMicroServices/core/include/usModuleSettings.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULESETTINGS_H diff --git a/Modules/CppMicroServices/core/include/usModuleVersion.h b/Modules/CppMicroServices/core/include/usModuleVersion.h index 01b27558ffc..90eca373e98 100644 --- a/Modules/CppMicroServices/core/include/usModuleVersion.h +++ b/Modules/CppMicroServices/core/include/usModuleVersion.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEVERSION_H #define USMODULEVERSION_H diff --git a/Modules/CppMicroServices/core/include/usPrototypeServiceFactory.h b/Modules/CppMicroServices/core/include/usPrototypeServiceFactory.h index 6dd707e11a6..2558f053c4b 100644 --- a/Modules/CppMicroServices/core/include/usPrototypeServiceFactory.h +++ b/Modules/CppMicroServices/core/include/usPrototypeServiceFactory.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USPROTOTYPESERVICEFACTORY_H #define USPROTOTYPESERVICEFACTORY_H diff --git a/Modules/CppMicroServices/core/include/usServiceEvent.h b/Modules/CppMicroServices/core/include/usServiceEvent.h index 39035d269c0..4243c122750 100644 --- a/Modules/CppMicroServices/core/include/usServiceEvent.h +++ b/Modules/CppMicroServices/core/include/usServiceEvent.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEEVENT_H #define USSERVICEEVENT_H diff --git a/Modules/CppMicroServices/core/include/usServiceEventListenerHook.h b/Modules/CppMicroServices/core/include/usServiceEventListenerHook.h index 128f1c4077a..949f6df8a81 100644 --- a/Modules/CppMicroServices/core/include/usServiceEventListenerHook.h +++ b/Modules/CppMicroServices/core/include/usServiceEventListenerHook.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEEVENTLISTENERHOOK_H #define USSERVICEEVENTLISTENERHOOK_H diff --git a/Modules/CppMicroServices/core/include/usServiceException.h b/Modules/CppMicroServices/core/include/usServiceException.h index 085fc51cd28..0004e25398d 100644 --- a/Modules/CppMicroServices/core/include/usServiceException.h +++ b/Modules/CppMicroServices/core/include/usServiceException.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEEXCEPTION_H diff --git a/Modules/CppMicroServices/core/include/usServiceFactory.h b/Modules/CppMicroServices/core/include/usServiceFactory.h index 0d8076ae6d5..906c4570940 100644 --- a/Modules/CppMicroServices/core/include/usServiceFactory.h +++ b/Modules/CppMicroServices/core/include/usServiceFactory.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEFACTORY_H #define USSERVICEFACTORY_H diff --git a/Modules/CppMicroServices/core/include/usServiceFindHook.h b/Modules/CppMicroServices/core/include/usServiceFindHook.h index 98378ed7b97..5ffb9ec048b 100644 --- a/Modules/CppMicroServices/core/include/usServiceFindHook.h +++ b/Modules/CppMicroServices/core/include/usServiceFindHook.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEFINDHOOK_H #define USSERVICEFINDHOOK_H diff --git a/Modules/CppMicroServices/core/include/usServiceInterface.h b/Modules/CppMicroServices/core/include/usServiceInterface.h index 7134a7b2d72..66a2b4afe70 100644 --- a/Modules/CppMicroServices/core/include/usServiceInterface.h +++ b/Modules/CppMicroServices/core/include/usServiceInterface.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEINTERFACE_H diff --git a/Modules/CppMicroServices/core/include/usServiceListenerHook.h b/Modules/CppMicroServices/core/include/usServiceListenerHook.h index 0c7c0776212..599af5b1968 100644 --- a/Modules/CppMicroServices/core/include/usServiceListenerHook.h +++ b/Modules/CppMicroServices/core/include/usServiceListenerHook.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICELISTENERHOOK_H #define USSERVICELISTENERHOOK_H diff --git a/Modules/CppMicroServices/core/include/usServiceObjects.h b/Modules/CppMicroServices/core/include/usServiceObjects.h index 3b529308b47..4a3bd1bcaf2 100644 --- a/Modules/CppMicroServices/core/include/usServiceObjects.h +++ b/Modules/CppMicroServices/core/include/usServiceObjects.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEOBJECTS_H #define USSERVICEOBJECTS_H diff --git a/Modules/CppMicroServices/core/include/usServiceProperties.h b/Modules/CppMicroServices/core/include/usServiceProperties.h index 9a443b2c174..c72545a8367 100644 --- a/Modules/CppMicroServices/core/include/usServiceProperties.h +++ b/Modules/CppMicroServices/core/include/usServiceProperties.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef US_SERVICE_PROPERTIES_H diff --git a/Modules/CppMicroServices/core/include/usServiceReference.h b/Modules/CppMicroServices/core/include/usServiceReference.h index 8ad00e8a0ca..031f774d854 100644 --- a/Modules/CppMicroServices/core/include/usServiceReference.h +++ b/Modules/CppMicroServices/core/include/usServiceReference.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEREFERENCE_H #define USSERVICEREFERENCE_H diff --git a/Modules/CppMicroServices/core/include/usServiceReferenceBase.h b/Modules/CppMicroServices/core/include/usServiceReferenceBase.h index 249d93f9982..69b78b5c081 100644 --- a/Modules/CppMicroServices/core/include/usServiceReferenceBase.h +++ b/Modules/CppMicroServices/core/include/usServiceReferenceBase.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEREFERENCEBASE_H #define USSERVICEREFERENCEBASE_H diff --git a/Modules/CppMicroServices/core/include/usServiceRegistration.h b/Modules/CppMicroServices/core/include/usServiceRegistration.h index d847321ce45..34be9ee3dd1 100644 --- a/Modules/CppMicroServices/core/include/usServiceRegistration.h +++ b/Modules/CppMicroServices/core/include/usServiceRegistration.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEREGISTRATION_H #define USSERVICEREGISTRATION_H diff --git a/Modules/CppMicroServices/core/include/usServiceRegistrationBase.h b/Modules/CppMicroServices/core/include/usServiceRegistrationBase.h index 7b083935487..e6c5072ba4c 100644 --- a/Modules/CppMicroServices/core/include/usServiceRegistrationBase.h +++ b/Modules/CppMicroServices/core/include/usServiceRegistrationBase.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEREGISTRATIONBASE_H #define USSERVICEREGISTRATIONBASE_H diff --git a/Modules/CppMicroServices/core/include/usServiceTracker.h b/Modules/CppMicroServices/core/include/usServiceTracker.h index 8735e0b43c7..49a309fd22e 100644 --- a/Modules/CppMicroServices/core/include/usServiceTracker.h +++ b/Modules/CppMicroServices/core/include/usServiceTracker.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICETRACKER_H diff --git a/Modules/CppMicroServices/core/include/usServiceTrackerCustomizer.h b/Modules/CppMicroServices/core/include/usServiceTrackerCustomizer.h index b6f067bdf45..8c728d6f5a0 100644 --- a/Modules/CppMicroServices/core/include/usServiceTrackerCustomizer.h +++ b/Modules/CppMicroServices/core/include/usServiceTrackerCustomizer.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICETRACKERCUSTOMIZER_H diff --git a/Modules/CppMicroServices/core/include/usSharedData.h b/Modules/CppMicroServices/core/include/usSharedData.h index 46626aee43f..33a442ce7f4 100644 --- a/Modules/CppMicroServices/core/include/usSharedData.h +++ b/Modules/CppMicroServices/core/include/usSharedData.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,6 +17,9 @@ See the License for the specific language governing permissions and limitations under the License. +============================================================================*/ + +/*============================================================================ Modified version of qshareddata.h from Qt 4.7.3 for CppMicroServices. Original copyright (c) Nokia Corporation. Usage covered by the @@ -24,7 +27,7 @@ GNU Lesser General Public License version 2.1 (http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) and the Nokia Qt LGPL Exception version 1.1 (file LGPL_EXCEPTION.txt in Qt 4.7.3 package). -=========================================================================*/ +============================================================================*/ #ifndef USSHAREDDATA_H #define USSHAREDDATA_H diff --git a/Modules/CppMicroServices/core/include/usSharedLibrary.h b/Modules/CppMicroServices/core/include/usSharedLibrary.h index b0e12b348c9..81a7981aa94 100644 --- a/Modules/CppMicroServices/core/include/usSharedLibrary.h +++ b/Modules/CppMicroServices/core/include/usSharedLibrary.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSHAREDLIBRARY_H #define USSHAREDLIBRARY_H diff --git a/Modules/CppMicroServices/core/include/usShrinkableMap.h b/Modules/CppMicroServices/core/include/usShrinkableMap.h index d490f941898..604e6c6e248 100644 --- a/Modules/CppMicroServices/core/include/usShrinkableMap.h +++ b/Modules/CppMicroServices/core/include/usShrinkableMap.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSHRINKABLEMAP_H #define USSHRINKABLEMAP_H diff --git a/Modules/CppMicroServices/core/include/usShrinkableVector.h b/Modules/CppMicroServices/core/include/usShrinkableVector.h index 881da3358d8..b823650c173 100644 --- a/Modules/CppMicroServices/core/include/usShrinkableVector.h +++ b/Modules/CppMicroServices/core/include/usShrinkableVector.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSHRINKABLEVECTOR_H #define USSHRINKABLEVECTOR_H diff --git a/Modules/CppMicroServices/core/src/module/usCoreModuleActivator.cpp b/Modules/CppMicroServices/core/src/module/usCoreModuleActivator.cpp index 87d028c852e..c5064e1f4b3 100644 --- a/Modules/CppMicroServices/core/src/module/usCoreModuleActivator.cpp +++ b/Modules/CppMicroServices/core/src/module/usCoreModuleActivator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleActivator.h" diff --git a/Modules/CppMicroServices/core/src/module/usCoreModuleContext.cpp b/Modules/CppMicroServices/core/src/module/usCoreModuleContext.cpp index 9f19565031a..b48ee75cc73 100644 --- a/Modules/CppMicroServices/core/src/module/usCoreModuleContext.cpp +++ b/Modules/CppMicroServices/core/src/module/usCoreModuleContext.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/src/module/usCoreModuleContext_p.h b/Modules/CppMicroServices/core/src/module/usCoreModuleContext_p.h index 15d16a2377e..ee01d8bf1e6 100644 --- a/Modules/CppMicroServices/core/src/module/usCoreModuleContext_p.h +++ b/Modules/CppMicroServices/core/src/module/usCoreModuleContext_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USCOREMODULECONTEXT_H diff --git a/Modules/CppMicroServices/core/src/module/usModule.cpp b/Modules/CppMicroServices/core/src/module/usModule.cpp index d6ffa74b42d..9b4fb91d13d 100644 --- a/Modules/CppMicroServices/core/src/module/usModule.cpp +++ b/Modules/CppMicroServices/core/src/module/usModule.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModule.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleAbstractTracked.tpp b/Modules/CppMicroServices/core/src/module/usModuleAbstractTracked.tpp index 258f9354e7c..ae1a27f8bd9 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleAbstractTracked.tpp +++ b/Modules/CppMicroServices/core/src/module/usModuleAbstractTracked.tpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/src/module/usModuleAbstractTracked_p.h b/Modules/CppMicroServices/core/src/module/usModuleAbstractTracked_p.h index 426679e51ae..1f09be6aa13 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleAbstractTracked_p.h +++ b/Modules/CppMicroServices/core/src/module/usModuleAbstractTracked_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEABSTRACTTRACKED_H diff --git a/Modules/CppMicroServices/core/src/module/usModuleContext.cpp b/Modules/CppMicroServices/core/src/module/usModuleContext.cpp index 8aef196c6c1..05ffd4c5f50 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleContext.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleContext.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleContext.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleEvent.cpp b/Modules/CppMicroServices/core/src/module/usModuleEvent.cpp index cf4b30d7065..3378fa788ee 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleEvent.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleEvent.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleEvent.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleEventHook.cpp b/Modules/CppMicroServices/core/src/module/usModuleEventHook.cpp index fdfbe5d70db..f49842e6fab 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleEventHook.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleEventHook.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleEventHook.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleFindHook.cpp b/Modules/CppMicroServices/core/src/module/usModuleFindHook.cpp index f146504bc6f..93c98802717 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleFindHook.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleFindHook.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleFindHook.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleHooks.cpp b/Modules/CppMicroServices/core/src/module/usModuleHooks.cpp index 943f67f4a0e..3014222275d 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleHooks.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleHooks.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleHooks_p.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleHooks_p.h b/Modules/CppMicroServices/core/src/module/usModuleHooks_p.h index ec500a932bb..d32bad924a6 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleHooks_p.h +++ b/Modules/CppMicroServices/core/src/module/usModuleHooks_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEHOOKS_P_H #define USMODULEHOOKS_P_H diff --git a/Modules/CppMicroServices/core/src/module/usModuleInfo.cpp b/Modules/CppMicroServices/core/src/module/usModuleInfo.cpp index 90334976e53..36b13cf4159 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleInfo.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleInfo.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleInfo.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleManifest.cpp b/Modules/CppMicroServices/core/src/module/usModuleManifest.cpp index 97260243bb7..8ae2699cabb 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleManifest.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleManifest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleManifest_p.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleManifest_p.h b/Modules/CppMicroServices/core/src/module/usModuleManifest_p.h index 71d54e7136d..8a1b8717806 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleManifest_p.h +++ b/Modules/CppMicroServices/core/src/module/usModuleManifest_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEMANIFEST_P_H #define USMODULEMANIFEST_P_H diff --git a/Modules/CppMicroServices/core/src/module/usModulePrivate.cpp b/Modules/CppMicroServices/core/src/module/usModulePrivate.cpp index 01a143c7f17..21fcabbb3ad 100644 --- a/Modules/CppMicroServices/core/src/module/usModulePrivate.cpp +++ b/Modules/CppMicroServices/core/src/module/usModulePrivate.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModulePrivate.h" diff --git a/Modules/CppMicroServices/core/src/module/usModulePrivate.h b/Modules/CppMicroServices/core/src/module/usModulePrivate.h index 7ef4ff773df..a61b7928f19 100644 --- a/Modules/CppMicroServices/core/src/module/usModulePrivate.h +++ b/Modules/CppMicroServices/core/src/module/usModulePrivate.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEPRIVATE_H #define USMODULEPRIVATE_H diff --git a/Modules/CppMicroServices/core/src/module/usModuleRegistry.cpp b/Modules/CppMicroServices/core/src/module/usModuleRegistry.cpp index 92b8ff76300..d70a4d4616d 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleRegistry.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleRegistry.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleRegistry.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleResource.cpp b/Modules/CppMicroServices/core/src/module/usModuleResource.cpp index 678e1d50785..7485267b3fd 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleResource.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleResource.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleResource.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleResourceBuffer.cpp b/Modules/CppMicroServices/core/src/module/usModuleResourceBuffer.cpp index 56790e2a0ee..456ccf590a4 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleResourceBuffer.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleResourceBuffer.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleResourceBuffer_p.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleResourceBuffer_p.h b/Modules/CppMicroServices/core/src/module/usModuleResourceBuffer_p.h index 9ea0a4947de..63fa6f29118 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleResourceBuffer_p.h +++ b/Modules/CppMicroServices/core/src/module/usModuleResourceBuffer_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULERESOURCEBUFFER_P_H #define USMODULERESOURCEBUFFER_P_H diff --git a/Modules/CppMicroServices/core/src/module/usModuleResourceContainer.cpp b/Modules/CppMicroServices/core/src/module/usModuleResourceContainer.cpp index 929d8ff798d..6068e9900a4 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleResourceContainer.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleResourceContainer.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleResourceContainer_p.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleResourceContainer_p.h b/Modules/CppMicroServices/core/src/module/usModuleResourceContainer_p.h index 31827c52f41..9692c25cebd 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleResourceContainer_p.h +++ b/Modules/CppMicroServices/core/src/module/usModuleResourceContainer_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULERESOURCECONTAINER_P_H #define USMODULERESOURCECONTAINER_P_H diff --git a/Modules/CppMicroServices/core/src/module/usModuleResourceStream.cpp b/Modules/CppMicroServices/core/src/module/usModuleResourceStream.cpp index b9970b15f29..21b84b43821 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleResourceStream.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleResourceStream.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleResourceStream.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleSettings.cpp b/Modules/CppMicroServices/core/src/module/usModuleSettings.cpp index 7e3a8151af0..cf3176d3068 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleSettings.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleSettings.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleSettings.h" #include "usThreads_p.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleUtils.cpp b/Modules/CppMicroServices/core/src/module/usModuleUtils.cpp index 2ee7a139532..8cf8e7fedbd 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleUtils.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleUtils.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleUtils_p.h" diff --git a/Modules/CppMicroServices/core/src/module/usModuleUtils_p.h b/Modules/CppMicroServices/core/src/module/usModuleUtils_p.h index efd7d86b29d..c5291e22f68 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleUtils_p.h +++ b/Modules/CppMicroServices/core/src/module/usModuleUtils_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEUTILS_H diff --git a/Modules/CppMicroServices/core/src/module/usModuleVersion.cpp b/Modules/CppMicroServices/core/src/module/usModuleVersion.cpp index f27640943be..6ecc56ed03f 100644 --- a/Modules/CppMicroServices/core/src/module/usModuleVersion.cpp +++ b/Modules/CppMicroServices/core/src/module/usModuleVersion.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usModuleVersion.h" diff --git a/Modules/CppMicroServices/core/src/service/usLDAPExpr.cpp b/Modules/CppMicroServices/core/src/service/usLDAPExpr.cpp index d9befbf95ba..3fd2d4186d1 100644 --- a/Modules/CppMicroServices/core/src/service/usLDAPExpr.cpp +++ b/Modules/CppMicroServices/core/src/service/usLDAPExpr.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usLDAPExpr_p.h" diff --git a/Modules/CppMicroServices/core/src/service/usLDAPExpr_p.h b/Modules/CppMicroServices/core/src/service/usLDAPExpr_p.h index f9be03ffaed..1240592b0f5 100644 --- a/Modules/CppMicroServices/core/src/service/usLDAPExpr_p.h +++ b/Modules/CppMicroServices/core/src/service/usLDAPExpr_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USLDAPEXPR_H diff --git a/Modules/CppMicroServices/core/src/service/usLDAPFilter.cpp b/Modules/CppMicroServices/core/src/service/usLDAPFilter.cpp index 30968a45480..b755633f621 100644 --- a/Modules/CppMicroServices/core/src/service/usLDAPFilter.cpp +++ b/Modules/CppMicroServices/core/src/service/usLDAPFilter.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usLDAPFilter.h" #include "usLDAPExpr_p.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceEvent.cpp b/Modules/CppMicroServices/core/src/service/usServiceEvent.cpp index a2fd65ef64b..2c8521a416e 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceEvent.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceEvent.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceEvent.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceEventListenerHook.cpp b/Modules/CppMicroServices/core/src/service/usServiceEventListenerHook.cpp index 3aae20bd361..484fa270426 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceEventListenerHook.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceEventListenerHook.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceEventListenerHook.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceException.cpp b/Modules/CppMicroServices/core/src/service/usServiceException.cpp index 89e9e19bc2f..20beb9ad220 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceException.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceException.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceException.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceFindHook.cpp b/Modules/CppMicroServices/core/src/service/usServiceFindHook.cpp index 5a95f236482..f2307a9a7d5 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceFindHook.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceFindHook.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceFindHook.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceHooks.cpp b/Modules/CppMicroServices/core/src/service/usServiceHooks.cpp index b7d60b987b8..29f35310b68 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceHooks.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceHooks.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceHooks_p.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceHooks_p.h b/Modules/CppMicroServices/core/src/service/usServiceHooks_p.h index edff5cf3a8f..a7f0546edbb 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceHooks_p.h +++ b/Modules/CppMicroServices/core/src/service/usServiceHooks_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEHOOKS_P_H #define USSERVICEHOOKS_P_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceListenerEntry.cpp b/Modules/CppMicroServices/core/src/service/usServiceListenerEntry.cpp index aa72db5d84f..f281c846fb7 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceListenerEntry.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceListenerEntry.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceListenerEntry_p.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceListenerEntry_p.h b/Modules/CppMicroServices/core/src/service/usServiceListenerEntry_p.h index dea22828f60..1fa9d11dc11 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceListenerEntry_p.h +++ b/Modules/CppMicroServices/core/src/service/usServiceListenerEntry_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICELISTENERENTRY_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceListenerHook.cpp b/Modules/CppMicroServices/core/src/service/usServiceListenerHook.cpp index 28666187855..90615efba00 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceListenerHook.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceListenerHook.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceListenerHook.h" #include "usServiceListenerHook_p.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceListenerHook_p.h b/Modules/CppMicroServices/core/src/service/usServiceListenerHook_p.h index 083a693ec38..22050a3c78f 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceListenerHook_p.h +++ b/Modules/CppMicroServices/core/src/service/usServiceListenerHook_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICELISTENERHOOK_P_H #define USSERVICELISTENERHOOK_P_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceListeners.cpp b/Modules/CppMicroServices/core/src/service/usServiceListeners.cpp index 29b46e008a9..e134fe8e27c 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceListeners.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceListeners.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usUtils_p.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceListeners_p.h b/Modules/CppMicroServices/core/src/service/usServiceListeners_p.h index 1bd9c107036..34e2280f67b 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceListeners_p.h +++ b/Modules/CppMicroServices/core/src/service/usServiceListeners_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICELISTENERS_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceObjects.cpp b/Modules/CppMicroServices/core/src/service/usServiceObjects.cpp index e1066c8fe46..797c4b6ba20 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceObjects.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceObjects.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceObjects.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceProperties.cpp b/Modules/CppMicroServices/core/src/service/usServiceProperties.cpp index c7927fc7b8a..699d8ff4bdf 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceProperties.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceProperties.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceProperties.h" diff --git a/Modules/CppMicroServices/core/src/service/usServicePropertiesImpl.cpp b/Modules/CppMicroServices/core/src/service/usServicePropertiesImpl.cpp index 1784213a632..05d99761929 100644 --- a/Modules/CppMicroServices/core/src/service/usServicePropertiesImpl.cpp +++ b/Modules/CppMicroServices/core/src/service/usServicePropertiesImpl.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServicePropertiesImpl_p.h" diff --git a/Modules/CppMicroServices/core/src/service/usServicePropertiesImpl_p.h b/Modules/CppMicroServices/core/src/service/usServicePropertiesImpl_p.h index 4012d1042ea..de4bf3de17f 100644 --- a/Modules/CppMicroServices/core/src/service/usServicePropertiesImpl_p.h +++ b/Modules/CppMicroServices/core/src/service/usServicePropertiesImpl_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEPROPERTIESIMPL_P_H #define USSERVICEPROPERTIESIMPL_P_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceReferenceBase.cpp b/Modules/CppMicroServices/core/src/service/usServiceReferenceBase.cpp index e2ce07362e3..9c670520515 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceReferenceBase.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceReferenceBase.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceReferenceBase.h" #include "usServiceReferenceBasePrivate.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceReferenceBasePrivate.cpp b/Modules/CppMicroServices/core/src/service/usServiceReferenceBasePrivate.cpp index 21d4e1dc8b8..0a560ef5c7e 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceReferenceBasePrivate.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceReferenceBasePrivate.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceReferenceBasePrivate.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceReferenceBasePrivate.h b/Modules/CppMicroServices/core/src/service/usServiceReferenceBasePrivate.h index 39f99514359..77804c7b460 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceReferenceBasePrivate.h +++ b/Modules/CppMicroServices/core/src/service/usServiceReferenceBasePrivate.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEREFERENCEBASEPRIVATE_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceRegistrationBase.cpp b/Modules/CppMicroServices/core/src/service/usServiceRegistrationBase.cpp index e92dbc469c2..033457ed0ae 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceRegistrationBase.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceRegistrationBase.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceRegistrationBase.h" #include "usServiceRegistrationBasePrivate.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceRegistrationBasePrivate.cpp b/Modules/CppMicroServices/core/src/service/usServiceRegistrationBasePrivate.cpp index 8111d96ac97..8e89eb9ede4 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceRegistrationBasePrivate.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceRegistrationBasePrivate.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceRegistrationBasePrivate.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceRegistrationBasePrivate.h b/Modules/CppMicroServices/core/src/service/usServiceRegistrationBasePrivate.h index 5a70e504f42..5ac69b95457 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceRegistrationBasePrivate.h +++ b/Modules/CppMicroServices/core/src/service/usServiceRegistrationBasePrivate.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEREGISTRATIONBASEPRIVATE_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceRegistry.cpp b/Modules/CppMicroServices/core/src/service/usServiceRegistry.cpp index 9afcecdec7a..023e7e574d1 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceRegistry.cpp +++ b/Modules/CppMicroServices/core/src/service/usServiceRegistry.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/src/service/usServiceRegistry_p.h b/Modules/CppMicroServices/core/src/service/usServiceRegistry_p.h index cffec3eff4c..e91aaabf9a9 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceRegistry_p.h +++ b/Modules/CppMicroServices/core/src/service/usServiceRegistry_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICEREGISTRY_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceTracker.tpp b/Modules/CppMicroServices/core/src/service/usServiceTracker.tpp index 53d8d90040d..04f12e74546 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceTracker.tpp +++ b/Modules/CppMicroServices/core/src/service/usServiceTracker.tpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usServiceTrackerPrivate.h" diff --git a/Modules/CppMicroServices/core/src/service/usServiceTrackerPrivate.h b/Modules/CppMicroServices/core/src/service/usServiceTrackerPrivate.h index 1ec0ffb1d6a..282798710aa 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceTrackerPrivate.h +++ b/Modules/CppMicroServices/core/src/service/usServiceTrackerPrivate.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICETRACKERPRIVATE_H diff --git a/Modules/CppMicroServices/core/src/service/usServiceTrackerPrivate.tpp b/Modules/CppMicroServices/core/src/service/usServiceTrackerPrivate.tpp index 89a8710c41e..616eec9fe13 100644 --- a/Modules/CppMicroServices/core/src/service/usServiceTrackerPrivate.tpp +++ b/Modules/CppMicroServices/core/src/service/usServiceTrackerPrivate.tpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTrackedService_p.h" diff --git a/Modules/CppMicroServices/core/src/service/usTrackedService.tpp b/Modules/CppMicroServices/core/src/service/usTrackedService.tpp index 4de42283865..6cef9feec19 100644 --- a/Modules/CppMicroServices/core/src/service/usTrackedService.tpp +++ b/Modules/CppMicroServices/core/src/service/usTrackedService.tpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ US_BEGIN_NAMESPACE diff --git a/Modules/CppMicroServices/core/src/service/usTrackedServiceListener_p.h b/Modules/CppMicroServices/core/src/service/usTrackedServiceListener_p.h index 7870bdbfd58..17847259a38 100644 --- a/Modules/CppMicroServices/core/src/service/usTrackedServiceListener_p.h +++ b/Modules/CppMicroServices/core/src/service/usTrackedServiceListener_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTRACKEDSERVICELISTENER_H diff --git a/Modules/CppMicroServices/core/src/service/usTrackedService_p.h b/Modules/CppMicroServices/core/src/service/usTrackedService_p.h index 474429bb043..f589353944c 100644 --- a/Modules/CppMicroServices/core/src/service/usTrackedService_p.h +++ b/Modules/CppMicroServices/core/src/service/usTrackedService_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTRACKEDSERVICE_H diff --git a/Modules/CppMicroServices/core/src/util/usAny.cpp b/Modules/CppMicroServices/core/src/util/usAny.cpp index 723477b1459..e1ae1e5ce0f 100644 --- a/Modules/CppMicroServices/core/src/util/usAny.cpp +++ b/Modules/CppMicroServices/core/src/util/usAny.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usAny.h" diff --git a/Modules/CppMicroServices/core/src/util/usAtomicInt_p.h b/Modules/CppMicroServices/core/src/util/usAtomicInt_p.h index 7f4cb098a89..6cdf4ad46a6 100644 --- a/Modules/CppMicroServices/core/src/util/usAtomicInt_p.h +++ b/Modules/CppMicroServices/core/src/util/usAtomicInt_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USATOMICINT_H diff --git a/Modules/CppMicroServices/core/src/util/usLDAPProp.cpp b/Modules/CppMicroServices/core/src/util/usLDAPProp.cpp index 2340dc702de..a7e1c0c916b 100644 --- a/Modules/CppMicroServices/core/src/util/usLDAPProp.cpp +++ b/Modules/CppMicroServices/core/src/util/usLDAPProp.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usLDAPProp.h" diff --git a/Modules/CppMicroServices/core/src/util/usListenerFunctors_p.h b/Modules/CppMicroServices/core/src/util/usListenerFunctors_p.h index 581d281ed8a..f8364127ac0 100644 --- a/Modules/CppMicroServices/core/src/util/usListenerFunctors_p.h +++ b/Modules/CppMicroServices/core/src/util/usListenerFunctors_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USLISTENERFUNCTORS_P_H #define USLISTENERFUNCTORS_P_H diff --git a/Modules/CppMicroServices/core/src/util/usLog_p.h b/Modules/CppMicroServices/core/src/util/usLog_p.h index ff9304d0b99..533027b6a05 100644 --- a/Modules/CppMicroServices/core/src/util/usLog_p.h +++ b/Modules/CppMicroServices/core/src/util/usLog_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USLOG_P_H #define USLOG_P_H diff --git a/Modules/CppMicroServices/core/src/util/usSharedLibrary.cpp b/Modules/CppMicroServices/core/src/util/usSharedLibrary.cpp index 3c4abcdd524..032946d706f 100644 --- a/Modules/CppMicroServices/core/src/util/usSharedLibrary.cpp +++ b/Modules/CppMicroServices/core/src/util/usSharedLibrary.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usSharedLibrary.h" diff --git a/Modules/CppMicroServices/core/src/util/usStaticInit_p.h b/Modules/CppMicroServices/core/src/util/usStaticInit_p.h index f8019e2018e..72011ff32b5 100644 --- a/Modules/CppMicroServices/core/src/util/usStaticInit_p.h +++ b/Modules/CppMicroServices/core/src/util/usStaticInit_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,6 +17,9 @@ See the License for the specific language governing permissions and limitations under the License. +============================================================================*/ + +/*============================================================================ Extracted from qglobal.h from Qt 4.7.3 and adapted for CppMicroServices. Original copyright (c) Nokia Corporation. Usage covered by the @@ -24,7 +27,7 @@ GNU Lesser General Public License version 2.1 (http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) and the Nokia Qt LGPL Exception version 1.1 (file LGPL_EXCEPTION.txt in Qt 4.7.3 package). -=========================================================================*/ +============================================================================*/ #ifndef US_STATIC_INIT_H #define US_STATIC_INIT_H diff --git a/Modules/CppMicroServices/core/src/util/usThreads_p.h b/Modules/CppMicroServices/core/src/util/usThreads_p.h index 7f87fc4fbe3..9eaeca1d4ee 100644 --- a/Modules/CppMicroServices/core/src/util/usThreads_p.h +++ b/Modules/CppMicroServices/core/src/util/usThreads_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTHREADINGMODEL_H diff --git a/Modules/CppMicroServices/core/src/util/usUtils.cpp b/Modules/CppMicroServices/core/src/util/usUtils.cpp index 035937d0869..4e01fb9ef06 100644 --- a/Modules/CppMicroServices/core/src/util/usUtils.cpp +++ b/Modules/CppMicroServices/core/src/util/usUtils.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usUtils_p.h" diff --git a/Modules/CppMicroServices/core/src/util/usUtils_p.h b/Modules/CppMicroServices/core/src/util/usUtils_p.h index 778bca52911..34e2bc3a00b 100644 --- a/Modules/CppMicroServices/core/src/util/usUtils_p.h +++ b/Modules/CppMicroServices/core/src/util/usUtils_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USUTILS_H diff --git a/Modules/CppMicroServices/core/src/util/usWaitCondition_p.h b/Modules/CppMicroServices/core/src/util/usWaitCondition_p.h index 2ddcc93bde8..f58201eb696 100644 --- a/Modules/CppMicroServices/core/src/util/usWaitCondition_p.h +++ b/Modules/CppMicroServices/core/src/util/usWaitCondition_p.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USWAITCONDITION_P_H #define USWAITCONDITION_P_H diff --git a/Modules/CppMicroServices/core/test/modules/libA/usTestModuleA.cpp b/Modules/CppMicroServices/core/test/modules/libA/usTestModuleA.cpp index fd8cec3512a..556c1acb042 100644 --- a/Modules/CppMicroServices/core/test/modules/libA/usTestModuleA.cpp +++ b/Modules/CppMicroServices/core/test/modules/libA/usTestModuleA.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTestModuleAService.h" diff --git a/Modules/CppMicroServices/core/test/modules/libA/usTestModuleAService.h b/Modules/CppMicroServices/core/test/modules/libA/usTestModuleAService.h index 5aa89a6e6ec..d7a5ec7dfb3 100644 --- a/Modules/CppMicroServices/core/test/modules/libA/usTestModuleAService.h +++ b/Modules/CppMicroServices/core/test/modules/libA/usTestModuleAService.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTMODULEASERVICE_H diff --git a/Modules/CppMicroServices/core/test/modules/libA2/usTestModuleA2.cpp b/Modules/CppMicroServices/core/test/modules/libA2/usTestModuleA2.cpp index cda719e8d21..13fc6a192aa 100644 --- a/Modules/CppMicroServices/core/test/modules/libA2/usTestModuleA2.cpp +++ b/Modules/CppMicroServices/core/test/modules/libA2/usTestModuleA2.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTestModuleA2Service.h" diff --git a/Modules/CppMicroServices/core/test/modules/libA2/usTestModuleA2Service.h b/Modules/CppMicroServices/core/test/modules/libA2/usTestModuleA2Service.h index 93be47ab887..8323712fd06 100644 --- a/Modules/CppMicroServices/core/test/modules/libA2/usTestModuleA2Service.h +++ b/Modules/CppMicroServices/core/test/modules/libA2/usTestModuleA2Service.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTMODULEA2SERVICE_H diff --git a/Modules/CppMicroServices/core/test/modules/libAL/libAL_1/usTestModuleAL_1.cpp b/Modules/CppMicroServices/core/test/modules/libAL/libAL_1/usTestModuleAL_1.cpp index c9ece19da6c..d2892ff0a8d 100644 --- a/Modules/CppMicroServices/core/test/modules/libAL/libAL_1/usTestModuleAL_1.cpp +++ b/Modules/CppMicroServices/core/test/modules/libAL/libAL_1/usTestModuleAL_1.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/modules/libAL/usTestModuleAL.cpp b/Modules/CppMicroServices/core/test/modules/libAL/usTestModuleAL.cpp index 3104ca9f88e..d5d6b61c245 100644 --- a/Modules/CppMicroServices/core/test/modules/libAL/usTestModuleAL.cpp +++ b/Modules/CppMicroServices/core/test/modules/libAL/usTestModuleAL.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/modules/libAL2/libAL2_1/usTestModuleAL2_1.cpp b/Modules/CppMicroServices/core/test/modules/libAL2/libAL2_1/usTestModuleAL2_1.cpp index ece8edfd677..4f8dd1fcfc0 100644 --- a/Modules/CppMicroServices/core/test/modules/libAL2/libAL2_1/usTestModuleAL2_1.cpp +++ b/Modules/CppMicroServices/core/test/modules/libAL2/libAL2_1/usTestModuleAL2_1.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/modules/libAL2/usTestModuleAL2.cpp b/Modules/CppMicroServices/core/test/modules/libAL2/usTestModuleAL2.cpp index 3ed52531158..139f18cc11c 100644 --- a/Modules/CppMicroServices/core/test/modules/libAL2/usTestModuleAL2.cpp +++ b/Modules/CppMicroServices/core/test/modules/libAL2/usTestModuleAL2.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleB.cpp b/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleB.cpp index 8728304f9b1..afb095675b8 100644 --- a/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleB.cpp +++ b/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleB.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTestModuleBService.h" diff --git a/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleBService.h b/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleBService.h index 441ccfb14df..084912a926f 100644 --- a/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleBService.h +++ b/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleBService.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTMODULEBSERVICE_H diff --git a/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleImportedByB.cpp b/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleImportedByB.cpp index a8369d09c25..80f6a7bb918 100644 --- a/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleImportedByB.cpp +++ b/Modules/CppMicroServices/core/test/modules/libBWithStatic/usTestModuleImportedByB.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTestModuleBService.h" diff --git a/Modules/CppMicroServices/core/test/modules/libH/usTestModuleH.cpp b/Modules/CppMicroServices/core/test/modules/libH/usTestModuleH.cpp index 7103269b8e3..1effdf75de2 100644 --- a/Modules/CppMicroServices/core/test/modules/libH/usTestModuleH.cpp +++ b/Modules/CppMicroServices/core/test/modules/libH/usTestModuleH.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/modules/libM/usTestModuleM.cpp b/Modules/CppMicroServices/core/test/modules/libM/usTestModuleM.cpp index ceec0d89f27..aef358ac732 100644 --- a/Modules/CppMicroServices/core/test/modules/libM/usTestModuleM.cpp +++ b/Modules/CppMicroServices/core/test/modules/libM/usTestModuleM.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleS.cpp b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleS.cpp index 46e52c48187..f8d444d48b4 100644 --- a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleS.cpp +++ b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleS.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "../../usServiceControlInterface.h" diff --git a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService0.h b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService0.h index 82a0b7e22d2..c37a109410b 100644 --- a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService0.h +++ b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService0.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTMODULESSERVICE0_H diff --git a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService1.h b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService1.h index 84a56b7793f..ac37600bfde 100644 --- a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService1.h +++ b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService1.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTMODULESSERVICE1_H diff --git a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService2.h b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService2.h index 07e66332543..c43989d0162 100644 --- a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService2.h +++ b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService2.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTMODULESSERVICE2_H diff --git a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService3.h b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService3.h index 360e83d3a5c..2be388b717c 100644 --- a/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService3.h +++ b/Modules/CppMicroServices/core/test/modules/libS/usTestModuleSService3.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTMODULESSERVICE3_H diff --git a/Modules/CppMicroServices/core/test/modules/libSL1/usActivatorSL1.cpp b/Modules/CppMicroServices/core/test/modules/libSL1/usActivatorSL1.cpp index 3837d932e1a..d6d38ba2e43 100644 --- a/Modules/CppMicroServices/core/test/modules/libSL1/usActivatorSL1.cpp +++ b/Modules/CppMicroServices/core/test/modules/libSL1/usActivatorSL1.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/modules/libSL1/usFooService.h b/Modules/CppMicroServices/core/test/modules/libSL1/usFooService.h index 8432d0de5e3..3e3d12096d5 100644 --- a/Modules/CppMicroServices/core/test/modules/libSL1/usFooService.h +++ b/Modules/CppMicroServices/core/test/modules/libSL1/usFooService.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USFOOSERVICE_H diff --git a/Modules/CppMicroServices/core/test/modules/libSL3/usActivatorSL3.cpp b/Modules/CppMicroServices/core/test/modules/libSL3/usActivatorSL3.cpp index 5ee4fb2c353..e1b49c68e73 100644 --- a/Modules/CppMicroServices/core/test/modules/libSL3/usActivatorSL3.cpp +++ b/Modules/CppMicroServices/core/test/modules/libSL3/usActivatorSL3.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/modules/libSL4/usActivatorSL4.cpp b/Modules/CppMicroServices/core/test/modules/libSL4/usActivatorSL4.cpp index 5f86992e514..e31548d5376 100644 --- a/Modules/CppMicroServices/core/test/modules/libSL4/usActivatorSL4.cpp +++ b/Modules/CppMicroServices/core/test/modules/libSL4/usActivatorSL4.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/usAnyTest.cpp b/Modules/CppMicroServices/core/test/usAnyTest.cpp index 8282484089d..137db91e44d 100644 --- a/Modules/CppMicroServices/core/test/usAnyTest.cpp +++ b/Modules/CppMicroServices/core/test/usAnyTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/usLDAPFilterTest.cpp b/Modules/CppMicroServices/core/test/usLDAPFilterTest.cpp index e86ac4451b5..9e9f74ea2f7 100644 --- a/Modules/CppMicroServices/core/test/usLDAPFilterTest.cpp +++ b/Modules/CppMicroServices/core/test/usLDAPFilterTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usLogTest.cpp b/Modules/CppMicroServices/core/test/usLogTest.cpp index c812a0d724d..ea9b601b043 100644 --- a/Modules/CppMicroServices/core/test/usLogTest.cpp +++ b/Modules/CppMicroServices/core/test/usLogTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/usModuleAutoLoadTest.cpp b/Modules/CppMicroServices/core/test/usModuleAutoLoadTest.cpp index bfe74240c8d..2a252a1fe60 100644 --- a/Modules/CppMicroServices/core/test/usModuleAutoLoadTest.cpp +++ b/Modules/CppMicroServices/core/test/usModuleAutoLoadTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usModuleHooksTest.cpp b/Modules/CppMicroServices/core/test/usModuleHooksTest.cpp index 3ea644f605c..e9b05620f4a 100644 --- a/Modules/CppMicroServices/core/test/usModuleHooksTest.cpp +++ b/Modules/CppMicroServices/core/test/usModuleHooksTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usModuleManifestTest.cpp b/Modules/CppMicroServices/core/test/usModuleManifestTest.cpp index 7273d9d9ffe..51f201efdc9 100644 --- a/Modules/CppMicroServices/core/test/usModuleManifestTest.cpp +++ b/Modules/CppMicroServices/core/test/usModuleManifestTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usModulePropsInterface.h b/Modules/CppMicroServices/core/test/usModulePropsInterface.h index d5254ecf091..7755ea9cbdc 100644 --- a/Modules/CppMicroServices/core/test/usModulePropsInterface.h +++ b/Modules/CppMicroServices/core/test/usModulePropsInterface.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USMODULEPROPSINTERFACE_H diff --git a/Modules/CppMicroServices/core/test/usModuleResourceTest.cpp b/Modules/CppMicroServices/core/test/usModuleResourceTest.cpp index f465d889198..0cced3fc620 100644 --- a/Modules/CppMicroServices/core/test/usModuleResourceTest.cpp +++ b/Modules/CppMicroServices/core/test/usModuleResourceTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usModuleTest.cpp b/Modules/CppMicroServices/core/test/usModuleTest.cpp index 1eab5159c30..683ad97c37d 100644 --- a/Modules/CppMicroServices/core/test/usModuleTest.cpp +++ b/Modules/CppMicroServices/core/test/usModuleTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usServiceControlInterface.h b/Modules/CppMicroServices/core/test/usServiceControlInterface.h index 5ed36ca6bd6..07b09b39ec1 100644 --- a/Modules/CppMicroServices/core/test/usServiceControlInterface.h +++ b/Modules/CppMicroServices/core/test/usServiceControlInterface.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSERVICECONTROLINTERFACE_H diff --git a/Modules/CppMicroServices/core/test/usServiceFactoryTest.cpp b/Modules/CppMicroServices/core/test/usServiceFactoryTest.cpp index cd865d4fd76..2c3cf29f73a 100644 --- a/Modules/CppMicroServices/core/test/usServiceFactoryTest.cpp +++ b/Modules/CppMicroServices/core/test/usServiceFactoryTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usServiceHooksTest.cpp b/Modules/CppMicroServices/core/test/usServiceHooksTest.cpp index cdbc44c4962..3818374da0f 100644 --- a/Modules/CppMicroServices/core/test/usServiceHooksTest.cpp +++ b/Modules/CppMicroServices/core/test/usServiceHooksTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usServiceListenerTest.cpp b/Modules/CppMicroServices/core/test/usServiceListenerTest.cpp index 312d34b5474..fe8ac3a2eb6 100644 --- a/Modules/CppMicroServices/core/test/usServiceListenerTest.cpp +++ b/Modules/CppMicroServices/core/test/usServiceListenerTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usServiceRegistryPerformanceTest.cpp b/Modules/CppMicroServices/core/test/usServiceRegistryPerformanceTest.cpp index 2081214469c..f763e0cdf20 100644 --- a/Modules/CppMicroServices/core/test/usServiceRegistryPerformanceTest.cpp +++ b/Modules/CppMicroServices/core/test/usServiceRegistryPerformanceTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTestingMacros.h" diff --git a/Modules/CppMicroServices/core/test/usServiceRegistryTest.cpp b/Modules/CppMicroServices/core/test/usServiceRegistryTest.cpp index a755db97bff..c25fe315cf8 100644 --- a/Modules/CppMicroServices/core/test/usServiceRegistryTest.cpp +++ b/Modules/CppMicroServices/core/test/usServiceRegistryTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/usServiceTemplateTest.cpp b/Modules/CppMicroServices/core/test/usServiceTemplateTest.cpp index a4838218620..da83dfd118a 100644 --- a/Modules/CppMicroServices/core/test/usServiceTemplateTest.cpp +++ b/Modules/CppMicroServices/core/test/usServiceTemplateTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usServiceTrackerTest.cpp b/Modules/CppMicroServices/core/test/usServiceTrackerTest.cpp index 5cfb67a9c0d..38d4dccaade 100644 --- a/Modules/CppMicroServices/core/test/usServiceTrackerTest.cpp +++ b/Modules/CppMicroServices/core/test/usServiceTrackerTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usSharedLibraryTest.cpp b/Modules/CppMicroServices/core/test/usSharedLibraryTest.cpp index ef17097ddab..b700afa6ff9 100644 --- a/Modules/CppMicroServices/core/test/usSharedLibraryTest.cpp +++ b/Modules/CppMicroServices/core/test/usSharedLibraryTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include diff --git a/Modules/CppMicroServices/core/test/usStaticModuleResourceTest.cpp b/Modules/CppMicroServices/core/test/usStaticModuleResourceTest.cpp index 45e20491940..c13f5c64814 100644 --- a/Modules/CppMicroServices/core/test/usStaticModuleResourceTest.cpp +++ b/Modules/CppMicroServices/core/test/usStaticModuleResourceTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usStaticModuleTest.cpp b/Modules/CppMicroServices/core/test/usStaticModuleTest.cpp index 8b6994f189e..424ddd7c7fc 100644 --- a/Modules/CppMicroServices/core/test/usStaticModuleTest.cpp +++ b/Modules/CppMicroServices/core/test/usStaticModuleTest.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/core/test/usTestDriverActivator.cpp b/Modules/CppMicroServices/core/test/usTestDriverActivator.cpp index 336e00f3517..4f6a420f0f9 100644 --- a/Modules/CppMicroServices/core/test/usTestDriverActivator.cpp +++ b/Modules/CppMicroServices/core/test/usTestDriverActivator.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTestDriverActivator.h" #include "usModuleImport.h" diff --git a/Modules/CppMicroServices/core/test/usTestDriverActivator.h b/Modules/CppMicroServices/core/test/usTestDriverActivator.h index 5ef86f56c8f..97b0cda48d5 100644 --- a/Modules/CppMicroServices/core/test/usTestDriverActivator.h +++ b/Modules/CppMicroServices/core/test/usTestDriverActivator.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTDRIVERACTIVATOR_H #define USTESTDRIVERACTIVATOR_H diff --git a/Modules/CppMicroServices/core/test/usTestManager.cpp b/Modules/CppMicroServices/core/test/usTestManager.cpp index 7bc5deadaf8..1423d899dae 100644 --- a/Modules/CppMicroServices/core/test/usTestManager.cpp +++ b/Modules/CppMicroServices/core/test/usTestManager.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTestManager.h" diff --git a/Modules/CppMicroServices/core/test/usTestManager.h b/Modules/CppMicroServices/core/test/usTestManager.h index 75f5ccbcbc1..44308228cbe 100644 --- a/Modules/CppMicroServices/core/test/usTestManager.h +++ b/Modules/CppMicroServices/core/test/usTestManager.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef US_TESTMANAGER_H_INCLUDED #define US_TESTMANAGER_H_INCLUDED diff --git a/Modules/CppMicroServices/core/test/usTestUtilModuleListener.cpp b/Modules/CppMicroServices/core/test/usTestUtilModuleListener.cpp index 90987084624..75967289dce 100644 --- a/Modules/CppMicroServices/core/test/usTestUtilModuleListener.cpp +++ b/Modules/CppMicroServices/core/test/usTestUtilModuleListener.cpp @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "usTestUtilModuleListener.h" diff --git a/Modules/CppMicroServices/core/test/usTestUtilModuleListener.h b/Modules/CppMicroServices/core/test/usTestUtilModuleListener.h index dd3e3132447..82dc0c4946b 100644 --- a/Modules/CppMicroServices/core/test/usTestUtilModuleListener.h +++ b/Modules/CppMicroServices/core/test/usTestUtilModuleListener.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTUTILMODULELISTENER_H #define USTESTUTILMODULELISTENER_H diff --git a/Modules/CppMicroServices/core/test/usTestingMacros.h b/Modules/CppMicroServices/core/test/usTestingMacros.h index b8ce72e9a1d..b415f8471ac 100644 --- a/Modules/CppMicroServices/core/test/usTestingMacros.h +++ b/Modules/CppMicroServices/core/test/usTestingMacros.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USTESTINGMACROS_H_ #define USTESTINGMACROS_H_ diff --git a/Modules/CppMicroServices/doc/CMakeDoxygenFilter.cpp b/Modules/CppMicroServices/doc/CMakeDoxygenFilter.cpp index 5da36ee54be..98911ce4073 100644 --- a/Modules/CppMicroServices/doc/CMakeDoxygenFilter.cpp +++ b/Modules/CppMicroServices/doc/CMakeDoxygenFilter.cpp @@ -1,7 +1,9 @@ -/*============================================================================= +/*============================================================================ - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Library: CppMicroServices + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/CppMicroServices/third_party/us_stdint.h b/Modules/CppMicroServices/third_party/us_stdint.h index c10813498a4..66532802e04 100644 --- a/Modules/CppMicroServices/third_party/us_stdint.h +++ b/Modules/CppMicroServices/third_party/us_stdint.h @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #ifndef USSTDINT_H #define USSTDINT_H diff --git a/Modules/CppMicroServices/tools/usResourceCompiler.c b/Modules/CppMicroServices/tools/usResourceCompiler.c index 05a5a3743a8..641f51e7bea 100644 --- a/Modules/CppMicroServices/tools/usResourceCompiler.c +++ b/Modules/CppMicroServices/tools/usResourceCompiler.c @@ -1,9 +1,9 @@ -/*============================================================================= +/*============================================================================ Library: CppMicroServices - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ See the License for the specific language governing permissions and limitations under the License. -=============================================================================*/ +============================================================================*/ #include "miniz.h" diff --git a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIO.cpp b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIO.cpp index 2cba88fbcc7..805ff425d8b 100644 --- a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIO.cpp +++ b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkDICOMPMIO__cpp #define __mitkDICOMPMIO__cpp @@ -56,7 +52,7 @@ namespace mitk { if (AbstractFileIO::GetWriterConfidenceLevel() == Unsupported) return Unsupported; - + const Image *PMinput = static_cast(this->GetInput()); if (PMinput) { @@ -124,17 +120,17 @@ namespace mitk } mitk::Image *mitkPMImage = const_cast(PMinput); - // Cast input PMinput to itk image + // Cast input PMinput to itk image ImageToItk::Pointer PMimageToItkFilter = ImageToItk::New(); PMimageToItkFilter->SetInput(mitkPMImage); - + // Cast from original itk type to dcmqi input itk image type typedef itk::CastImageFilter castItkImageFilterType; castItkImageFilterType::Pointer castFilter = castItkImageFilterType::New(); castFilter->SetInput(PMimageToItkFilter->GetOutput()); castFilter->Update(); PMitkInternalImageType::Pointer itkParamapImage = castFilter->GetOutput(); - + // Create PM meta information const std::string tmpMetaInfoFile = this->CreateMetaDataJsonFilePM(); // Convert itk PM images to dicom image @@ -144,7 +140,7 @@ namespace mitk // convert from unique to raw pointer vector rawVecDataset; for ( const auto& dcmDataSet : dcmDatasetsSourceImage ) { rawVecDataset.push_back( dcmDataSet.get() ); } - + std::unique_ptr PMconverter(new dcmqi::ParaMapConverter()); std::unique_ptr PMresult (PMconverter->itkimage2paramap(itkParamapImage, rawVecDataset, tmpMetaInfoFile)); // Write dicom file @@ -159,15 +155,15 @@ namespace mitk MITK_ERROR << "An error occurred during writing the DICOM Paramap: " << e.what() << endl; return; } - + } - + const std::string mitk::DICOMPMIO::CreateMetaDataJsonFilePM() const - { + { const mitk::Image *PMimage = dynamic_cast(this->GetInput()); dcmqi::JSONParametricMapMetaInformationHandler PMhandler; - + // Get Metadata from modelFitConstants std::string parameterName; PMimage->GetPropertyList()->GetStringProperty(ModelFitConstants::PARAMETER_NAME_PROPERTY_NAME().c_str(), parameterName); @@ -179,11 +175,11 @@ namespace mitk pmPresets->LoadPreset(); auto pmType_parameterName = pmPresets->GetType(parameterName); auto pmType_modelName = pmPresets->GetType(modelName); - + // Pass codes to Paramap Converter PMhandler.setDerivedPixelContrast("TCS"); PMhandler.setFrameLaterality("U"); - PMhandler.setQuantityValueCode(pmType_parameterName.codeValue, pmType_parameterName.codeScheme, parameterName); + PMhandler.setQuantityValueCode(pmType_parameterName.codeValue, pmType_parameterName.codeScheme, parameterName); PMhandler.setMeasurementMethodCode(pmType_modelName.codeValue, pmType_modelName.codeScheme, modelName); PMhandler.setMeasurementUnitsCode("/min", "UCUM", "/m"); PMhandler.setSeriesNumber("1"); @@ -191,7 +187,7 @@ namespace mitk PMhandler.setDerivationCode("129104", "DCM", "Perfusion image analysis"); PMhandler.setRealWorldValueSlope(1); - + return PMhandler.getJSONOutputAsString(); diff --git a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIO.h b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIO.h index 0b9a1865dd9..f7ecd5cb52d 100644 --- a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIO.h +++ b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkDICOMPMIO_h #define __mitkDICOMPMIO_h @@ -33,8 +29,8 @@ namespace mitk class DICOMPMIO : public mitk::AbstractFileIO { public: - - + + DICOMPMIO(); // -------------- AbstractFileReader ------------- diff --git a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOActivator.cpp b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOActivator.cpp index f4097cf8595..2e55f30ee42 100644 --- a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOActivator.cpp +++ b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOMimeTypes.cpp b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOMimeTypes.cpp index 419a362865d..63e303070e6 100644 --- a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOMimeTypes.cpp +++ b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOMimeTypes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMPMIOMimeTypes.h" #include "mitkIOMimeTypes.h" @@ -116,6 +112,6 @@ namespace mitk static std::string name = IOMimeTypes::DEFAULT_BASE_NAME() + ".image.dicom.pm"; return name; } - + } diff --git a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOMimeTypes.h b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOMimeTypes.h index 8e9cb9baa8d..7ca0ecb0fcf 100644 --- a/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOMimeTypes.h +++ b/Modules/DICOMPM/autoload/DICOMPMIO/mitkDICOMPMIOMimeTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDICOMPMIOMIMETYPES_H #define MITKDICOMPMIOMIMETYPES_H @@ -44,7 +40,7 @@ namespace mitk static MitkDICOMPMMimeType DICOMPM_MIMETYPE(); static std::string DICOMPM_MIMETYPE_NAME(); - + // Get all Mime Types static std::vector Get(); diff --git a/Modules/DICOMPM/include/mitkParamapPresetsParser.h b/Modules/DICOMPM/include/mitkParamapPresetsParser.h index ec44a4128f3..213dbac02af 100644 --- a/Modules/DICOMPM/include/mitkParamapPresetsParser.h +++ b/Modules/DICOMPM/include/mitkParamapPresetsParser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PARAMAPPRESETS_H_HEADER #define PARAMAPPRESETS_H_HEADER diff --git a/Modules/DICOMPM/src/mitkParamapPresetsParser.cpp b/Modules/DICOMPM/src/mitkParamapPresetsParser.cpp index 6e4c35172dd..4d4d9b42ad0 100644 --- a/Modules/DICOMPM/src/mitkParamapPresetsParser.cpp +++ b/Modules/DICOMPM/src/mitkParamapPresetsParser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkParamapPresetsParser.h" #include @@ -116,7 +112,7 @@ namespace mitk { return m_Type; } - + diff --git a/Modules/DICOMQI/mitkDICOMPMPropertyHelper.cpp b/Modules/DICOMQI/mitkDICOMPMPropertyHelper.cpp index 6118ef30536..1af46da02e1 100644 --- a/Modules/DICOMQI/mitkDICOMPMPropertyHelper.cpp +++ b/Modules/DICOMQI/mitkDICOMPMPropertyHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -35,7 +31,7 @@ namespace mitk void DICOMPMPropertyHelper::DeriveDICOMPMProperties(BaseData *derivedDICOMImage) { PropertyList::Pointer propertyList = derivedDICOMImage->GetPropertyList(); - + // Add DICOM Tag (0008, 0060) Modality "PM" propertyList->SetProperty(GeneratePropertyNameForDICOMTag(0x0008, 0x0060).c_str(), TemporoSpatialStringProperty::New("PM")); @@ -53,7 +49,7 @@ namespace mitk } - + } // namespace mitk diff --git a/Modules/DICOMQI/mitkDICOMPMPropertyHelper.h b/Modules/DICOMQI/mitkDICOMPMPropertyHelper.h index 969b5e00d4d..cba51b0167a 100644 --- a/Modules/DICOMQI/mitkDICOMPMPropertyHelper.h +++ b/Modules/DICOMQI/mitkDICOMPMPropertyHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef DICOMSEGMENTATIONPROPERTYHELPER_H_ #define DICOMSEGMENTATIONPROPERTYHELPER_H_ diff --git a/Modules/DICOMQI/mitkDICOMQIPropertyHelper.cpp b/Modules/DICOMQI/mitkDICOMQIPropertyHelper.cpp index 54c58a7a95e..c05902009b2 100644 --- a/Modules/DICOMQI/mitkDICOMQIPropertyHelper.cpp +++ b/Modules/DICOMQI/mitkDICOMQIPropertyHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -83,7 +79,7 @@ namespace mitk // Get DICOM property from referenced image BaseProperty::Pointer originalProperty = referencedPropertyList->GetProperty(tagString.c_str()); - + // if property exists, copy the informtaion to the derived image if (originalProperty.IsNotNull()) propertyList->SetProperty(tagString.c_str(), originalProperty); diff --git a/Modules/DICOMQI/mitkDICOMQIPropertyHelper.h b/Modules/DICOMQI/mitkDICOMQIPropertyHelper.h index 99566963883..4f17a13aaf9 100644 --- a/Modules/DICOMQI/mitkDICOMQIPropertyHelper.h +++ b/Modules/DICOMQI/mitkDICOMQIPropertyHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef DICOMQIPROPERTYHELPER_H_ #define DICOMQIPROPERTYHELPER_H_ diff --git a/Modules/DICOMReader/include/mitkBaseDICOMReaderService.h b/Modules/DICOMReader/include/mitkBaseDICOMReaderService.h index 8a191076e95..ed9be045296 100644 --- a/Modules/DICOMReader/include/mitkBaseDICOMReaderService.h +++ b/Modules/DICOMReader/include/mitkBaseDICOMReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKBASEDICOMREADERSERVICE_H #define MITKBASEDICOMREADERSERVICE_H diff --git a/Modules/DICOMReader/include/mitkClassicDICOMSeriesReader.h b/Modules/DICOMReader/include/mitkClassicDICOMSeriesReader.h index 16cd3050c7b..5e19e2901fe 100644 --- a/Modules/DICOMReader/include/mitkClassicDICOMSeriesReader.h +++ b/Modules/DICOMReader/include/mitkClassicDICOMSeriesReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkClassicDICOMSeriesReader_h #define mitkClassicDICOMSeriesReader_h diff --git a/Modules/DICOMReader/include/mitkDICOMDCMTKTagScanner.h b/Modules/DICOMReader/include/mitkDICOMDCMTKTagScanner.h index 5e9211cfba2..fd7248478e4 100644 --- a/Modules/DICOMReader/include/mitkDICOMDCMTKTagScanner.h +++ b/Modules/DICOMReader/include/mitkDICOMDCMTKTagScanner.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMDCMTKTagScanner_h #define mitkDICOMDCMTKTagScanner_h diff --git a/Modules/DICOMReader/include/mitkDICOMDatasetAccess.h b/Modules/DICOMReader/include/mitkDICOMDatasetAccess.h index c816fe0eefe..6b33ec8b6f4 100644 --- a/Modules/DICOMReader/include/mitkDICOMDatasetAccess.h +++ b/Modules/DICOMReader/include/mitkDICOMDatasetAccess.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMDatasetAccess_h #define mitkDICOMDatasetAccess_h diff --git a/Modules/DICOMReader/include/mitkDICOMDatasetAccessingImageFrameInfo.h b/Modules/DICOMReader/include/mitkDICOMDatasetAccessingImageFrameInfo.h index 0d87ee361de..938e7d791ea 100644 --- a/Modules/DICOMReader/include/mitkDICOMDatasetAccessingImageFrameInfo.h +++ b/Modules/DICOMReader/include/mitkDICOMDatasetAccessingImageFrameInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMDatasetAccessingImageFrameInfo_h #define mitkDICOMDatasetAccessingImageFrameInfo_h diff --git a/Modules/DICOMReader/include/mitkDICOMDatasetSorter.h b/Modules/DICOMReader/include/mitkDICOMDatasetSorter.h index 373c6b3b0cc..b01de13fb68 100644 --- a/Modules/DICOMReader/include/mitkDICOMDatasetSorter.h +++ b/Modules/DICOMReader/include/mitkDICOMDatasetSorter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMDatasetSorter_h #define mitkDICOMDatasetSorter_h diff --git a/Modules/DICOMReader/include/mitkDICOMEnums.h b/Modules/DICOMReader/include/mitkDICOMEnums.h index 3dc047ec80c..48152667ce0 100644 --- a/Modules/DICOMReader/include/mitkDICOMEnums.h +++ b/Modules/DICOMReader/include/mitkDICOMEnums.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMEnums_h #define mitkDICOMEnums_h diff --git a/Modules/DICOMReader/include/mitkDICOMFileReader.h b/Modules/DICOMReader/include/mitkDICOMFileReader.h index 4a37f82bd4d..91407ffa883 100644 --- a/Modules/DICOMReader/include/mitkDICOMFileReader.h +++ b/Modules/DICOMReader/include/mitkDICOMFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMFileReader_h #define mitkDICOMFileReader_h diff --git a/Modules/DICOMReader/include/mitkDICOMFileReaderSelector.h b/Modules/DICOMReader/include/mitkDICOMFileReaderSelector.h index ec4800c1b52..1d23bf1135b 100644 --- a/Modules/DICOMReader/include/mitkDICOMFileReaderSelector.h +++ b/Modules/DICOMReader/include/mitkDICOMFileReaderSelector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMFileReaderSelector_h #define mitkDICOMFileReaderSelector_h diff --git a/Modules/DICOMReader/include/mitkDICOMFilesHelper.h b/Modules/DICOMReader/include/mitkDICOMFilesHelper.h index fd4db83a431..5a80333bd43 100644 --- a/Modules/DICOMReader/include/mitkDICOMFilesHelper.h +++ b/Modules/DICOMReader/include/mitkDICOMFilesHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDICOMFILESHELPER_H #define MITKDICOMFILESHELPER_H diff --git a/Modules/DICOMReader/include/mitkDICOMGDCMImageFrameInfo.h b/Modules/DICOMReader/include/mitkDICOMGDCMImageFrameInfo.h index 73aa948890f..e756fc18b5e 100644 --- a/Modules/DICOMReader/include/mitkDICOMGDCMImageFrameInfo.h +++ b/Modules/DICOMReader/include/mitkDICOMGDCMImageFrameInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMGDCMImageFrameInfo_h #define mitkDICOMGDCMImageFrameInfo_h diff --git a/Modules/DICOMReader/include/mitkDICOMGDCMTagCache.h b/Modules/DICOMReader/include/mitkDICOMGDCMTagCache.h index ccc07e9be42..ffc8eace60a 100644 --- a/Modules/DICOMReader/include/mitkDICOMGDCMTagCache.h +++ b/Modules/DICOMReader/include/mitkDICOMGDCMTagCache.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMGDCMTagCache_h #define mitkDICOMGDCMTagCache_h diff --git a/Modules/DICOMReader/include/mitkDICOMGDCMTagScanner.h b/Modules/DICOMReader/include/mitkDICOMGDCMTagScanner.h index a8be94a5781..fa07590ddb3 100644 --- a/Modules/DICOMReader/include/mitkDICOMGDCMTagScanner.h +++ b/Modules/DICOMReader/include/mitkDICOMGDCMTagScanner.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMGDCMTagScanner_h #define mitkDICOMGDCMTagScanner_h diff --git a/Modules/DICOMReader/include/mitkDICOMGenericImageFrameInfo.h b/Modules/DICOMReader/include/mitkDICOMGenericImageFrameInfo.h index e8ea2eb600e..66a8269f0c3 100644 --- a/Modules/DICOMReader/include/mitkDICOMGenericImageFrameInfo.h +++ b/Modules/DICOMReader/include/mitkDICOMGenericImageFrameInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMGenericImageFrameInfo_h #define mitkDICOMGenericImageFrameInfo_h diff --git a/Modules/DICOMReader/include/mitkDICOMGenericTagCache.h b/Modules/DICOMReader/include/mitkDICOMGenericTagCache.h index d90d1ca25a3..e9b9406c4c6 100644 --- a/Modules/DICOMReader/include/mitkDICOMGenericTagCache.h +++ b/Modules/DICOMReader/include/mitkDICOMGenericTagCache.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMGenericTagCache_h #define mitkDICOMGenericTagCache_h diff --git a/Modules/DICOMReader/include/mitkDICOMIOHelper.h b/Modules/DICOMReader/include/mitkDICOMIOHelper.h index 48b0b7bfb1a..b2ffca389b0 100644 --- a/Modules/DICOMReader/include/mitkDICOMIOHelper.h +++ b/Modules/DICOMReader/include/mitkDICOMIOHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDICOMIOHelper_H #define MITKDICOMIOHelper_H diff --git a/Modules/DICOMReader/include/mitkDICOMITKSeriesGDCMReader.h b/Modules/DICOMReader/include/mitkDICOMITKSeriesGDCMReader.h index 38aeb15eeb8..6f768d24a83 100644 --- a/Modules/DICOMReader/include/mitkDICOMITKSeriesGDCMReader.h +++ b/Modules/DICOMReader/include/mitkDICOMITKSeriesGDCMReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMITKSeriesGDCMReader_h #define mitkDICOMITKSeriesGDCMReader_h @@ -274,7 +270,7 @@ class MITKDICOMREADER_EXPORT DICOMITKSeriesGDCMReader : public DICOMFileReader static int GetDefaultDecimalPlacesForOrientation() { - return m_DefaultDecimalPlacesForOrientation; + return m_DefaultDecimalPlacesForOrientation; } static bool GetDefaultSimpleVolumeImport() diff --git a/Modules/DICOMReader/include/mitkDICOMImageBlockDescriptor.h b/Modules/DICOMReader/include/mitkDICOMImageBlockDescriptor.h index b5a7b99c8b8..90ae54f6af9 100644 --- a/Modules/DICOMReader/include/mitkDICOMImageBlockDescriptor.h +++ b/Modules/DICOMReader/include/mitkDICOMImageBlockDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMImageBlockDescriptor_h #define mitkDICOMImageBlockDescriptor_h diff --git a/Modules/DICOMReader/include/mitkDICOMImageFrameInfo.h b/Modules/DICOMReader/include/mitkDICOMImageFrameInfo.h index 48b65f8f6c6..6b4ab690497 100644 --- a/Modules/DICOMReader/include/mitkDICOMImageFrameInfo.h +++ b/Modules/DICOMReader/include/mitkDICOMImageFrameInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMImageFrameInfo_h #define mitkDICOMImageFrameInfo_h diff --git a/Modules/DICOMReader/include/mitkDICOMProperty.h b/Modules/DICOMReader/include/mitkDICOMProperty.h index 5b014fc125a..895c9e8cda1 100644 --- a/Modules/DICOMReader/include/mitkDICOMProperty.h +++ b/Modules/DICOMReader/include/mitkDICOMProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMProperty_h #define mitkDICOMProperty_h diff --git a/Modules/DICOMReader/include/mitkDICOMReaderConfigurator.h b/Modules/DICOMReader/include/mitkDICOMReaderConfigurator.h index 475cbcf4d76..791c2ef5794 100644 --- a/Modules/DICOMReader/include/mitkDICOMReaderConfigurator.h +++ b/Modules/DICOMReader/include/mitkDICOMReaderConfigurator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMReaderConfigurator_h #define mitkDICOMReaderConfigurator_h diff --git a/Modules/DICOMReader/include/mitkDICOMSortByTag.h b/Modules/DICOMReader/include/mitkDICOMSortByTag.h index 37f02d038be..b97726f3f18 100644 --- a/Modules/DICOMReader/include/mitkDICOMSortByTag.h +++ b/Modules/DICOMReader/include/mitkDICOMSortByTag.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMSortByTag_h #define mitkDICOMSortByTag_h diff --git a/Modules/DICOMReader/include/mitkDICOMSortCriterion.h b/Modules/DICOMReader/include/mitkDICOMSortCriterion.h index f61ddf00170..7997de89c1b 100644 --- a/Modules/DICOMReader/include/mitkDICOMSortCriterion.h +++ b/Modules/DICOMReader/include/mitkDICOMSortCriterion.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMSortCriterion_h #define mitkDICOMSortCriterion_h diff --git a/Modules/DICOMReader/include/mitkDICOMTag.h b/Modules/DICOMReader/include/mitkDICOMTag.h index 0f0ad330aeb..19b67c2e1e0 100644 --- a/Modules/DICOMReader/include/mitkDICOMTag.h +++ b/Modules/DICOMReader/include/mitkDICOMTag.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkTag_h #define mitkTag_h diff --git a/Modules/DICOMReader/include/mitkDICOMTagBasedSorter.h b/Modules/DICOMReader/include/mitkDICOMTagBasedSorter.h index 5f516fe5198..fb42f29aeec 100644 --- a/Modules/DICOMReader/include/mitkDICOMTagBasedSorter.h +++ b/Modules/DICOMReader/include/mitkDICOMTagBasedSorter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMTagBasedSorter_h #define mitkDICOMTagBasedSorter_h diff --git a/Modules/DICOMReader/include/mitkDICOMTagCache.h b/Modules/DICOMReader/include/mitkDICOMTagCache.h index 77791f46978..e16a2b28bb6 100644 --- a/Modules/DICOMReader/include/mitkDICOMTagCache.h +++ b/Modules/DICOMReader/include/mitkDICOMTagCache.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMTagCache_h #define mitkDICOMTagCache_h diff --git a/Modules/DICOMReader/include/mitkDICOMTagPath.h b/Modules/DICOMReader/include/mitkDICOMTagPath.h index e5bd3e6464a..b758384c4a8 100644 --- a/Modules/DICOMReader/include/mitkDICOMTagPath.h +++ b/Modules/DICOMReader/include/mitkDICOMTagPath.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMTagPath_h #define mitkDICOMTagPath_h diff --git a/Modules/DICOMReader/include/mitkDICOMTagScanner.h b/Modules/DICOMReader/include/mitkDICOMTagScanner.h index a2dd42b42ea..84a9a9defd4 100644 --- a/Modules/DICOMReader/include/mitkDICOMTagScanner.h +++ b/Modules/DICOMReader/include/mitkDICOMTagScanner.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMTagScanner_h #define mitkDICOMTagScanner_h diff --git a/Modules/DICOMReader/include/mitkDICOMTagsOfInterestHelper.h b/Modules/DICOMReader/include/mitkDICOMTagsOfInterestHelper.h index 9476794681b..90682849674 100644 --- a/Modules/DICOMReader/include/mitkDICOMTagsOfInterestHelper.h +++ b/Modules/DICOMReader/include/mitkDICOMTagsOfInterestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMTagsOfInterestHelper_h #define mitkDICOMTagsOfInterestHelper_h diff --git a/Modules/DICOMReader/include/mitkEquiDistantBlocksSorter.h b/Modules/DICOMReader/include/mitkEquiDistantBlocksSorter.h index 5f7d5b0e90f..e35ef5c3819 100644 --- a/Modules/DICOMReader/include/mitkEquiDistantBlocksSorter.h +++ b/Modules/DICOMReader/include/mitkEquiDistantBlocksSorter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkEquiDistantBlocksSorter_h #define mitkEquiDistantBlocksSorter_h diff --git a/Modules/DICOMReader/include/mitkGantryTiltInformation.h b/Modules/DICOMReader/include/mitkGantryTiltInformation.h index 578c82044de..a2134953722 100644 --- a/Modules/DICOMReader/include/mitkGantryTiltInformation.h +++ b/Modules/DICOMReader/include/mitkGantryTiltInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGantryTiltInformation_h #define mitkGantryTiltInformation_h diff --git a/Modules/DICOMReader/include/mitkIDICOMTagsOfInterest.h b/Modules/DICOMReader/include/mitkIDICOMTagsOfInterest.h index 72dba79b74e..410fdb5f404 100644 --- a/Modules/DICOMReader/include/mitkIDICOMTagsOfInterest.h +++ b/Modules/DICOMReader/include/mitkIDICOMTagsOfInterest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIDICOMTagsOfInterest_h #define mitkIDICOMTagsOfInterest_h diff --git a/Modules/DICOMReader/include/mitkITKDICOMSeriesReaderHelper.h b/Modules/DICOMReader/include/mitkITKDICOMSeriesReaderHelper.h index 4b40a4ffe66..aadf91259bb 100644 --- a/Modules/DICOMReader/include/mitkITKDICOMSeriesReaderHelper.h +++ b/Modules/DICOMReader/include/mitkITKDICOMSeriesReaderHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMSeriesReaderHelper_h #define mitkDICOMSeriesReaderHelper_h diff --git a/Modules/DICOMReader/include/mitkITKDICOMSeriesReaderHelper.txx b/Modules/DICOMReader/include/mitkITKDICOMSeriesReaderHelper.txx index b3d2ec91f00..f38cd26acb3 100644 --- a/Modules/DICOMReader/include/mitkITKDICOMSeriesReaderHelper.txx +++ b/Modules/DICOMReader/include/mitkITKDICOMSeriesReaderHelper.txx @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkITKDICOMSeriesReaderHelper.h" diff --git a/Modules/DICOMReader/include/mitkNormalDirectionConsistencySorter.h b/Modules/DICOMReader/include/mitkNormalDirectionConsistencySorter.h index 7aa3450db81..7138f002034 100644 --- a/Modules/DICOMReader/include/mitkNormalDirectionConsistencySorter.h +++ b/Modules/DICOMReader/include/mitkNormalDirectionConsistencySorter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkNormalDirectionConsistencySorter_h #define mitkNormalDirectionConsistencySorter_h diff --git a/Modules/DICOMReader/include/mitkSortByImagePositionPatient.h b/Modules/DICOMReader/include/mitkSortByImagePositionPatient.h index cd4601a0a76..4806155ea79 100644 --- a/Modules/DICOMReader/include/mitkSortByImagePositionPatient.h +++ b/Modules/DICOMReader/include/mitkSortByImagePositionPatient.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSortByImagePositionPatient_h #define mitkSortByImagePositionPatient_h diff --git a/Modules/DICOMReader/include/mitkThreeDnTDICOMSeriesReader.h b/Modules/DICOMReader/include/mitkThreeDnTDICOMSeriesReader.h index 94f7d2a57f8..d6da52f1eec 100644 --- a/Modules/DICOMReader/include/mitkThreeDnTDICOMSeriesReader.h +++ b/Modules/DICOMReader/include/mitkThreeDnTDICOMSeriesReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkThreeDnTDICOMSeriesReader_h #define mitkThreeDnTDICOMSeriesReader_h diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSR_GantryTiltInformation.cpp b/Modules/DICOMReader/src/legacy/mitkDicomSR_GantryTiltInformation.cpp index 29d6c1fd756..4038c821f0b 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSR_GantryTiltInformation.cpp +++ b/Modules/DICOMReader/src/legacy/mitkDicomSR_GantryTiltInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSR_ImageBlockDescriptor.cpp b/Modules/DICOMReader/src/legacy/mitkDicomSR_ImageBlockDescriptor.cpp index 6f12bb6f2f6..13ff60630c8 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSR_ImageBlockDescriptor.cpp +++ b/Modules/DICOMReader/src/legacy/mitkDicomSR_ImageBlockDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMRGBPixel.cpp b/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMRGBPixel.cpp index 592ca8ac4c0..11b1d88ecf1 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMRGBPixel.cpp +++ b/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMRGBPixel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDicomSeriesReader.txx" diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMRGBPixel4D.cpp b/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMRGBPixel4D.cpp index 199742ba3e8..1c6d31bb1ff 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMRGBPixel4D.cpp +++ b/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMRGBPixel4D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDicomSeriesReader.txx" diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMScalar.cpp b/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMScalar.cpp index 1b3b77bf632..46c8dc61b49 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMScalar.cpp +++ b/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMScalar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDicomSeriesReader.txx" diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMScalar4D.cpp b/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMScalar4D.cpp index 9ddde9bd8ce..e5239e4d6c4 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMScalar4D.cpp +++ b/Modules/DICOMReader/src/legacy/mitkDicomSR_LoadDICOMScalar4D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDicomSeriesReader.txx" diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSR_SliceGroupingResult.cpp b/Modules/DICOMReader/src/legacy/mitkDicomSR_SliceGroupingResult.cpp index 72a29863e9e..31473d726d0 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSR_SliceGroupingResult.cpp +++ b/Modules/DICOMReader/src/legacy/mitkDicomSR_SliceGroupingResult.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.cpp b/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.cpp index 2ac53e24f08..ac3cf8bbe5d 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.cpp +++ b/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // uncomment for learning more about the internal sorting mechanisms //#define MBILOG_ENABLE_DEBUG diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.h b/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.h index 863792524c7..12e83265e88 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.h +++ b/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDicomSeriesReader_h #define mitkDicomSeriesReader_h diff --git a/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.txx b/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.txx index 1ca27290b57..0056269ecc4 100644 --- a/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.txx +++ b/Modules/DICOMReader/src/legacy/mitkDicomSeriesReader.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDICOMSERIESREADER_TXX_ #define MITKDICOMSERIESREADER_TXX_ diff --git a/Modules/DICOMReader/src/mitkBaseDICOMReaderService.cpp b/Modules/DICOMReader/src/mitkBaseDICOMReaderService.cpp index c88d333a49a..4b163773e37 100644 --- a/Modules/DICOMReader/src/mitkBaseDICOMReaderService.cpp +++ b/Modules/DICOMReader/src/mitkBaseDICOMReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBaseDICOMReaderService.h" diff --git a/Modules/DICOMReader/src/mitkClassicDICOMSeriesReader.cpp b/Modules/DICOMReader/src/mitkClassicDICOMSeriesReader.cpp index 012f953827a..5a2fc659853 100644 --- a/Modules/DICOMReader/src/mitkClassicDICOMSeriesReader.cpp +++ b/Modules/DICOMReader/src/mitkClassicDICOMSeriesReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClassicDICOMSeriesReader.h" diff --git a/Modules/DICOMReader/src/mitkDICOMDCMTKTagScanner.cpp b/Modules/DICOMReader/src/mitkDICOMDCMTKTagScanner.cpp index 88c4b1d8edc..97283b6582f 100644 --- a/Modules/DICOMReader/src/mitkDICOMDCMTKTagScanner.cpp +++ b/Modules/DICOMReader/src/mitkDICOMDCMTKTagScanner.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMDCMTKTagScanner.h" #include "mitkDICOMGenericImageFrameInfo.h" diff --git a/Modules/DICOMReader/src/mitkDICOMDatasetAccessingImageFrameInfo.cpp b/Modules/DICOMReader/src/mitkDICOMDatasetAccessingImageFrameInfo.cpp index 926cc34da02..1d83152f50c 100644 --- a/Modules/DICOMReader/src/mitkDICOMDatasetAccessingImageFrameInfo.cpp +++ b/Modules/DICOMReader/src/mitkDICOMDatasetAccessingImageFrameInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMDatasetAccessingImageFrameInfo.h" diff --git a/Modules/DICOMReader/src/mitkDICOMDatasetSorter.cpp b/Modules/DICOMReader/src/mitkDICOMDatasetSorter.cpp index 5864c2510cc..d6af270fe5b 100644 --- a/Modules/DICOMReader/src/mitkDICOMDatasetSorter.cpp +++ b/Modules/DICOMReader/src/mitkDICOMDatasetSorter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMDatasetSorter.h" diff --git a/Modules/DICOMReader/src/mitkDICOMEnums.cpp b/Modules/DICOMReader/src/mitkDICOMEnums.cpp index 766d62b16b1..09a53f15c34 100644 --- a/Modules/DICOMReader/src/mitkDICOMEnums.cpp +++ b/Modules/DICOMReader/src/mitkDICOMEnums.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMEnums.h" diff --git a/Modules/DICOMReader/src/mitkDICOMFileReader.cpp b/Modules/DICOMReader/src/mitkDICOMFileReader.cpp index 3639232224c..8e774692e7b 100644 --- a/Modules/DICOMReader/src/mitkDICOMFileReader.cpp +++ b/Modules/DICOMReader/src/mitkDICOMFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMFileReader.h" diff --git a/Modules/DICOMReader/src/mitkDICOMFileReaderSelector.cpp b/Modules/DICOMReader/src/mitkDICOMFileReaderSelector.cpp index ce5038badc2..bca9f9b9e64 100644 --- a/Modules/DICOMReader/src/mitkDICOMFileReaderSelector.cpp +++ b/Modules/DICOMReader/src/mitkDICOMFileReaderSelector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMFileReaderSelector.h" #include "mitkDICOMReaderConfigurator.h" diff --git a/Modules/DICOMReader/src/mitkDICOMFilesHelper.cpp b/Modules/DICOMReader/src/mitkDICOMFilesHelper.cpp index 84edcb09862..c0faed897cd 100644 --- a/Modules/DICOMReader/src/mitkDICOMFilesHelper.cpp +++ b/Modules/DICOMReader/src/mitkDICOMFilesHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMFilesHelper.h" diff --git a/Modules/DICOMReader/src/mitkDICOMGDCMImageFrameInfo.cpp b/Modules/DICOMReader/src/mitkDICOMGDCMImageFrameInfo.cpp index e072fe0a84a..0d1e7bc67ef 100644 --- a/Modules/DICOMReader/src/mitkDICOMGDCMImageFrameInfo.cpp +++ b/Modules/DICOMReader/src/mitkDICOMGDCMImageFrameInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkDICOMGDCMImageFrameInfo.h" diff --git a/Modules/DICOMReader/src/mitkDICOMGDCMTagCache.cpp b/Modules/DICOMReader/src/mitkDICOMGDCMTagCache.cpp index 1b0eed068cd..9899ddc9374 100644 --- a/Modules/DICOMReader/src/mitkDICOMGDCMTagCache.cpp +++ b/Modules/DICOMReader/src/mitkDICOMGDCMTagCache.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMGDCMTagCache.h" #include "mitkDICOMEnums.h" diff --git a/Modules/DICOMReader/src/mitkDICOMGDCMTagScanner.cpp b/Modules/DICOMReader/src/mitkDICOMGDCMTagScanner.cpp index 2eb92fa7cd2..5d2eaee7aa8 100644 --- a/Modules/DICOMReader/src/mitkDICOMGDCMTagScanner.cpp +++ b/Modules/DICOMReader/src/mitkDICOMGDCMTagScanner.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMGDCMTagScanner.h" #include "mitkDICOMGDCMTagCache.h" diff --git a/Modules/DICOMReader/src/mitkDICOMGenericImageFrameInfo.cpp b/Modules/DICOMReader/src/mitkDICOMGenericImageFrameInfo.cpp index 48f0e51476b..8fbe5e41e3c 100644 --- a/Modules/DICOMReader/src/mitkDICOMGenericImageFrameInfo.cpp +++ b/Modules/DICOMReader/src/mitkDICOMGenericImageFrameInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkDICOMGenericImageFrameInfo.h" #include "mitkException.h" diff --git a/Modules/DICOMReader/src/mitkDICOMGenericTagCache.cpp b/Modules/DICOMReader/src/mitkDICOMGenericTagCache.cpp index 0fc821a369b..35f2b5af0c8 100644 --- a/Modules/DICOMReader/src/mitkDICOMGenericTagCache.cpp +++ b/Modules/DICOMReader/src/mitkDICOMGenericTagCache.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMGenericTagCache.h" #include "mitkDICOMEnums.h" diff --git a/Modules/DICOMReader/src/mitkDICOMIOHelper.cpp b/Modules/DICOMReader/src/mitkDICOMIOHelper.cpp index 477d032bb3f..94c328a90d5 100644 --- a/Modules/DICOMReader/src/mitkDICOMIOHelper.cpp +++ b/Modules/DICOMReader/src/mitkDICOMIOHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMIOHelper.h" diff --git a/Modules/DICOMReader/src/mitkDICOMITKSeriesGDCMReader.cpp b/Modules/DICOMReader/src/mitkDICOMITKSeriesGDCMReader.cpp index 47e374f338b..5bb2224cbdb 100644 --- a/Modules/DICOMReader/src/mitkDICOMITKSeriesGDCMReader.cpp +++ b/Modules/DICOMReader/src/mitkDICOMITKSeriesGDCMReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define MBILOG_ENABLE_DEBUG #define ENABLE_TIMING diff --git a/Modules/DICOMReader/src/mitkDICOMImageBlockDescriptor.cpp b/Modules/DICOMReader/src/mitkDICOMImageBlockDescriptor.cpp index b8bee82a213..59aff7e9fe1 100644 --- a/Modules/DICOMReader/src/mitkDICOMImageBlockDescriptor.cpp +++ b/Modules/DICOMReader/src/mitkDICOMImageBlockDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMImageBlockDescriptor.h" #include "mitkStringProperty.h" diff --git a/Modules/DICOMReader/src/mitkDICOMImageFrameInfo.cpp b/Modules/DICOMReader/src/mitkDICOMImageFrameInfo.cpp index 5b6cd65b2ab..89bc6df1ff8 100644 --- a/Modules/DICOMReader/src/mitkDICOMImageFrameInfo.cpp +++ b/Modules/DICOMReader/src/mitkDICOMImageFrameInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMImageFrameInfo.h" diff --git a/Modules/DICOMReader/src/mitkDICOMProperty.cpp b/Modules/DICOMReader/src/mitkDICOMProperty.cpp index 471b9cb980d..c82c2923ba6 100644 --- a/Modules/DICOMReader/src/mitkDICOMProperty.cpp +++ b/Modules/DICOMReader/src/mitkDICOMProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMProperty.h" diff --git a/Modules/DICOMReader/src/mitkDICOMReaderConfigurator.cpp b/Modules/DICOMReader/src/mitkDICOMReaderConfigurator.cpp index b2ccb809597..90db76fd72e 100644 --- a/Modules/DICOMReader/src/mitkDICOMReaderConfigurator.cpp +++ b/Modules/DICOMReader/src/mitkDICOMReaderConfigurator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMReaderConfigurator.h" diff --git a/Modules/DICOMReader/src/mitkDICOMSortByTag.cpp b/Modules/DICOMReader/src/mitkDICOMSortByTag.cpp index a8275d14833..fcfd09e3544 100644 --- a/Modules/DICOMReader/src/mitkDICOMSortByTag.cpp +++ b/Modules/DICOMReader/src/mitkDICOMSortByTag.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMSortByTag.h" diff --git a/Modules/DICOMReader/src/mitkDICOMSortCriterion.cpp b/Modules/DICOMReader/src/mitkDICOMSortCriterion.cpp index 7086f4305bf..785612e0aae 100644 --- a/Modules/DICOMReader/src/mitkDICOMSortCriterion.cpp +++ b/Modules/DICOMReader/src/mitkDICOMSortCriterion.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMSortCriterion.h" diff --git a/Modules/DICOMReader/src/mitkDICOMTag.cpp b/Modules/DICOMReader/src/mitkDICOMTag.cpp index 24b054b6467..9b6c7aab135 100644 --- a/Modules/DICOMReader/src/mitkDICOMTag.cpp +++ b/Modules/DICOMReader/src/mitkDICOMTag.cpp @@ -1,21 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY -{ -} - without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkDICOMTag.h" diff --git a/Modules/DICOMReader/src/mitkDICOMTagBasedSorter.cpp b/Modules/DICOMReader/src/mitkDICOMTagBasedSorter.cpp index b82d8abdeb8..87c455a4d37 100644 --- a/Modules/DICOMReader/src/mitkDICOMTagBasedSorter.cpp +++ b/Modules/DICOMReader/src/mitkDICOMTagBasedSorter.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkDICOMTagBasedSorter.h" diff --git a/Modules/DICOMReader/src/mitkDICOMTagCache.cpp b/Modules/DICOMReader/src/mitkDICOMTagCache.cpp index 6901a57d583..f4dfa240d07 100644 --- a/Modules/DICOMReader/src/mitkDICOMTagCache.cpp +++ b/Modules/DICOMReader/src/mitkDICOMTagCache.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMTagCache.h" diff --git a/Modules/DICOMReader/src/mitkDICOMTagPath.cpp b/Modules/DICOMReader/src/mitkDICOMTagPath.cpp index 8d28b4b8ea1..b0e2752fe19 100644 --- a/Modules/DICOMReader/src/mitkDICOMTagPath.cpp +++ b/Modules/DICOMReader/src/mitkDICOMTagPath.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -726,4 +722,4 @@ namespace mitk return nameStream.str(); }; -} \ No newline at end of file +} diff --git a/Modules/DICOMReader/src/mitkDICOMTagScanner.cpp b/Modules/DICOMReader/src/mitkDICOMTagScanner.cpp index c5e12ada419..908ba5134f8 100644 --- a/Modules/DICOMReader/src/mitkDICOMTagScanner.cpp +++ b/Modules/DICOMReader/src/mitkDICOMTagScanner.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMTagScanner.h" diff --git a/Modules/DICOMReader/src/mitkDICOMTagsOfInterestHelper.cpp b/Modules/DICOMReader/src/mitkDICOMTagsOfInterestHelper.cpp index cc4be0f0391..6b8c472847f 100644 --- a/Modules/DICOMReader/src/mitkDICOMTagsOfInterestHelper.cpp +++ b/Modules/DICOMReader/src/mitkDICOMTagsOfInterestHelper.cpp @@ -1,21 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY -{ -} - without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkDICOMTagsOfInterestHelper.h" diff --git a/Modules/DICOMReader/src/mitkEquiDistantBlocksSorter.cpp b/Modules/DICOMReader/src/mitkEquiDistantBlocksSorter.cpp index 23ea7fc3ee7..c487257ce07 100644 --- a/Modules/DICOMReader/src/mitkEquiDistantBlocksSorter.cpp +++ b/Modules/DICOMReader/src/mitkEquiDistantBlocksSorter.cpp @@ -1,16 +1,14 @@ -/*=================================================================== The Medical Imaging Interaction Toolkit (MITK) +/*============================================================================ -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. +The Medical Imaging Interaction Toolkit (MITK) -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ //#define MBILOG_ENABLE_DEBUG diff --git a/Modules/DICOMReader/src/mitkGantryTiltInformation.cpp b/Modules/DICOMReader/src/mitkGantryTiltInformation.cpp index 8e85c35ca83..b6efd46967d 100644 --- a/Modules/DICOMReader/src/mitkGantryTiltInformation.cpp +++ b/Modules/DICOMReader/src/mitkGantryTiltInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define MBILOG_ENABLE_DEBUG diff --git a/Modules/DICOMReader/src/mitkIDICOMTagsOfInterest.cpp b/Modules/DICOMReader/src/mitkIDICOMTagsOfInterest.cpp index a25499e8211..5f360fccb86 100644 --- a/Modules/DICOMReader/src/mitkIDICOMTagsOfInterest.cpp +++ b/Modules/DICOMReader/src/mitkIDICOMTagsOfInterest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/DICOMReader/src/mitkITKDICOMSeriesReaderHelper.cpp b/Modules/DICOMReader/src/mitkITKDICOMSeriesReaderHelper.cpp index c280fd4f3a7..4384e0ff384 100644 --- a/Modules/DICOMReader/src/mitkITKDICOMSeriesReaderHelper.cpp +++ b/Modules/DICOMReader/src/mitkITKDICOMSeriesReaderHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define MBILOG_ENABLE_DEBUG diff --git a/Modules/DICOMReader/src/mitkNormalDirectionConsistencySorter.cpp b/Modules/DICOMReader/src/mitkNormalDirectionConsistencySorter.cpp index 90b9e86c4b7..91845033eaf 100644 --- a/Modules/DICOMReader/src/mitkNormalDirectionConsistencySorter.cpp +++ b/Modules/DICOMReader/src/mitkNormalDirectionConsistencySorter.cpp @@ -1,16 +1,14 @@ -/*=================================================================== The Medical Imaging Interaction Toolkit (MITK) +/*============================================================================ -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. +The Medical Imaging Interaction Toolkit (MITK) -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ //#define MBILOG_ENABLE_DEBUG diff --git a/Modules/DICOMReader/src/mitkSortByImagePositionPatient.cpp b/Modules/DICOMReader/src/mitkSortByImagePositionPatient.cpp index 746372888a8..f7a7936914d 100644 --- a/Modules/DICOMReader/src/mitkSortByImagePositionPatient.cpp +++ b/Modules/DICOMReader/src/mitkSortByImagePositionPatient.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSortByImagePositionPatient.h" #include "mitkDICOMTag.h" diff --git a/Modules/DICOMReader/src/mitkThreeDnTDICOMSeriesReader.cpp b/Modules/DICOMReader/src/mitkThreeDnTDICOMSeriesReader.cpp index 44db220ff19..ef35f1aa25d 100644 --- a/Modules/DICOMReader/src/mitkThreeDnTDICOMSeriesReader.cpp +++ b/Modules/DICOMReader/src/mitkThreeDnTDICOMSeriesReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkThreeDnTDICOMSeriesReader.h" #include "mitkITKDICOMSeriesReaderHelper.h" diff --git a/Modules/DICOMReader/test/mitkDICOMDCMTKTagScannerTest.cpp b/Modules/DICOMReader/test/mitkDICOMDCMTKTagScannerTest.cpp index 76263b2d016..035f32095c6 100644 --- a/Modules/DICOMReader/test/mitkDICOMDCMTKTagScannerTest.cpp +++ b/Modules/DICOMReader/test/mitkDICOMDCMTKTagScannerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMDCMTKTagScanner.h" #include "mitkDICOMFileReaderTestHelper.h" diff --git a/Modules/DICOMReader/test/mitkDICOMFileReaderTest.cpp b/Modules/DICOMReader/test/mitkDICOMFileReaderTest.cpp index cfbf3bb29d1..9ad5f4abafe 100644 --- a/Modules/DICOMReader/test/mitkDICOMFileReaderTest.cpp +++ b/Modules/DICOMReader/test/mitkDICOMFileReaderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMNullFileReader.h" #include "mitkDICOMFileReaderTestHelper.h" diff --git a/Modules/DICOMReader/test/mitkDICOMFileReaderTestHelper.h b/Modules/DICOMReader/test/mitkDICOMFileReaderTestHelper.h index b0dd8d72e67..36f56222280 100644 --- a/Modules/DICOMReader/test/mitkDICOMFileReaderTestHelper.h +++ b/Modules/DICOMReader/test/mitkDICOMFileReaderTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMFileReaderTestHelper_h #define mitkDICOMFileReaderTestHelper_h diff --git a/Modules/DICOMReader/test/mitkDICOMFilenameSorter.cpp b/Modules/DICOMReader/test/mitkDICOMFilenameSorter.cpp index 9a0141ee1f0..89466246d70 100644 --- a/Modules/DICOMReader/test/mitkDICOMFilenameSorter.cpp +++ b/Modules/DICOMReader/test/mitkDICOMFilenameSorter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMFilenameSorter.h" diff --git a/Modules/DICOMReader/test/mitkDICOMFilenameSorter.h b/Modules/DICOMReader/test/mitkDICOMFilenameSorter.h index d4ca39c4e82..4b0f34462dd 100644 --- a/Modules/DICOMReader/test/mitkDICOMFilenameSorter.h +++ b/Modules/DICOMReader/test/mitkDICOMFilenameSorter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMFilenameSorter_h #define mitkDICOMFilenameSorter_h diff --git a/Modules/DICOMReader/test/mitkDICOMITKSeriesGDCMReaderBasicsTest.cpp b/Modules/DICOMReader/test/mitkDICOMITKSeriesGDCMReaderBasicsTest.cpp index d0ca9e61140..e7dd37f5599 100644 --- a/Modules/DICOMReader/test/mitkDICOMITKSeriesGDCMReaderBasicsTest.cpp +++ b/Modules/DICOMReader/test/mitkDICOMITKSeriesGDCMReaderBasicsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMITKSeriesGDCMReader.h" #include "mitkDICOMFileReaderTestHelper.h" diff --git a/Modules/DICOMReader/test/mitkDICOMNullFileReader.cpp b/Modules/DICOMReader/test/mitkDICOMNullFileReader.cpp index 68e25006573..0febaf52a41 100644 --- a/Modules/DICOMReader/test/mitkDICOMNullFileReader.cpp +++ b/Modules/DICOMReader/test/mitkDICOMNullFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMNullFileReader.h" diff --git a/Modules/DICOMReader/test/mitkDICOMNullFileReader.h b/Modules/DICOMReader/test/mitkDICOMNullFileReader.h index 705c4c0019b..83d75d6354f 100644 --- a/Modules/DICOMReader/test/mitkDICOMNullFileReader.h +++ b/Modules/DICOMReader/test/mitkDICOMNullFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMNullFileReader_h #define mitkDICOMNullFileReader_h diff --git a/Modules/DICOMReader/test/mitkDICOMPropertyTest.cpp b/Modules/DICOMReader/test/mitkDICOMPropertyTest.cpp index fca98343a18..cf891996ff4 100644 --- a/Modules/DICOMReader/test/mitkDICOMPropertyTest.cpp +++ b/Modules/DICOMReader/test/mitkDICOMPropertyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMProperty.h" diff --git a/Modules/DICOMReader/test/mitkDICOMReaderConfiguratorTest.cpp b/Modules/DICOMReader/test/mitkDICOMReaderConfiguratorTest.cpp index d9689ba3673..28aaee3198b 100644 --- a/Modules/DICOMReader/test/mitkDICOMReaderConfiguratorTest.cpp +++ b/Modules/DICOMReader/test/mitkDICOMReaderConfiguratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMReaderConfigurator.h" #include "mitkDICOMFileReaderSelector.h" diff --git a/Modules/DICOMReader/test/mitkDICOMSimpleVolumeImportTest.cpp b/Modules/DICOMReader/test/mitkDICOMSimpleVolumeImportTest.cpp index a3bd311f8d1..535bec6d125 100644 --- a/Modules/DICOMReader/test/mitkDICOMSimpleVolumeImportTest.cpp +++ b/Modules/DICOMReader/test/mitkDICOMSimpleVolumeImportTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMFileReaderSelector.h" #include "mitkDICOMFileReaderTestHelper.h" diff --git a/Modules/DICOMReader/test/mitkDICOMTagPathTest.cpp b/Modules/DICOMReader/test/mitkDICOMTagPathTest.cpp index 57c993fcadc..273054fde9d 100644 --- a/Modules/DICOMReader/test/mitkDICOMTagPathTest.cpp +++ b/Modules/DICOMReader/test/mitkDICOMTagPathTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMTagPath.h" diff --git a/Modules/DICOMReaderServices/include/mitkAutoSelectingDICOMReaderService.h b/Modules/DICOMReaderServices/include/mitkAutoSelectingDICOMReaderService.h index 1969f1c8704..b4a3023abab 100644 --- a/Modules/DICOMReaderServices/include/mitkAutoSelectingDICOMReaderService.h +++ b/Modules/DICOMReaderServices/include/mitkAutoSelectingDICOMReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKAUTOSELECTINGDICOMREADERSERVICE_H #define MITKAUTOSELECTINGDICOMREADERSERVICE_H diff --git a/Modules/DICOMReaderServices/include/mitkClassicDICOMSeriesReaderService.h b/Modules/DICOMReaderServices/include/mitkClassicDICOMSeriesReaderService.h index 1b9e7288562..8e1237e9e5a 100644 --- a/Modules/DICOMReaderServices/include/mitkClassicDICOMSeriesReaderService.h +++ b/Modules/DICOMReaderServices/include/mitkClassicDICOMSeriesReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCLASSICDICOMSERIESREADERSERVICE_H #define MITKCLASSICDICOMSERIESREADERSERVICE_H diff --git a/Modules/DICOMReaderServices/include/mitkDICOMTagsOfInterestService.h b/Modules/DICOMReaderServices/include/mitkDICOMTagsOfInterestService.h index 137f95c96cd..85544efeea4 100644 --- a/Modules/DICOMReaderServices/include/mitkDICOMTagsOfInterestService.h +++ b/Modules/DICOMReaderServices/include/mitkDICOMTagsOfInterestService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMTagsOfInterestService_h #define mitkDICOMTagsOfInterestService_h diff --git a/Modules/DICOMReaderServices/include/mitkSimpleVolumeDICOMSeriesReaderService.h b/Modules/DICOMReaderServices/include/mitkSimpleVolumeDICOMSeriesReaderService.h index 39412b6355b..fd71f1844e7 100644 --- a/Modules/DICOMReaderServices/include/mitkSimpleVolumeDICOMSeriesReaderService.h +++ b/Modules/DICOMReaderServices/include/mitkSimpleVolumeDICOMSeriesReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSIMPLEVOLUMEDICOMSERIESREADERSERVICE_H #define MITKSIMPLEVOLUMEDICOMSERIESREADERSERVICE_H diff --git a/Modules/DICOMReaderServices/src/mitkAutoSelectingDICOMReaderService.cpp b/Modules/DICOMReaderServices/src/mitkAutoSelectingDICOMReaderService.cpp index 72b9169de71..129ae4046a9 100644 --- a/Modules/DICOMReaderServices/src/mitkAutoSelectingDICOMReaderService.cpp +++ b/Modules/DICOMReaderServices/src/mitkAutoSelectingDICOMReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAutoSelectingDICOMReaderService.h" diff --git a/Modules/DICOMReaderServices/src/mitkClassicDICOMSeriesReaderService.cpp b/Modules/DICOMReaderServices/src/mitkClassicDICOMSeriesReaderService.cpp index 8d70e811304..3400b6c31b2 100644 --- a/Modules/DICOMReaderServices/src/mitkClassicDICOMSeriesReaderService.cpp +++ b/Modules/DICOMReaderServices/src/mitkClassicDICOMSeriesReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClassicDICOMSeriesReaderService.h" diff --git a/Modules/DICOMReaderServices/src/mitkDICOMReaderServicesActivator.cpp b/Modules/DICOMReaderServices/src/mitkDICOMReaderServicesActivator.cpp index 4179bb5951d..6da162eeb64 100644 --- a/Modules/DICOMReaderServices/src/mitkDICOMReaderServicesActivator.cpp +++ b/Modules/DICOMReaderServices/src/mitkDICOMReaderServicesActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMReaderServicesActivator.h" diff --git a/Modules/DICOMReaderServices/src/mitkDICOMReaderServicesActivator.h b/Modules/DICOMReaderServices/src/mitkDICOMReaderServicesActivator.h index f095c7a9951..bc6b72ec162 100644 --- a/Modules/DICOMReaderServices/src/mitkDICOMReaderServicesActivator.h +++ b/Modules/DICOMReaderServices/src/mitkDICOMReaderServicesActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDICOMREADERSERVICESACTIVATOR_H #define MITKDICOMREADERSERVICESACTIVATOR_H diff --git a/Modules/DICOMReaderServices/src/mitkDICOMTagsOfInterestService.cpp b/Modules/DICOMReaderServices/src/mitkDICOMTagsOfInterestService.cpp index 89a786b2a3a..49149d0e913 100644 --- a/Modules/DICOMReaderServices/src/mitkDICOMTagsOfInterestService.cpp +++ b/Modules/DICOMReaderServices/src/mitkDICOMTagsOfInterestService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMTagsOfInterestService.h" diff --git a/Modules/DICOMReaderServices/src/mitkSimpleVolumeDICOMSeriesReaderService.cpp b/Modules/DICOMReaderServices/src/mitkSimpleVolumeDICOMSeriesReaderService.cpp index 22ced50d163..06ca6de7e66 100644 --- a/Modules/DICOMReaderServices/src/mitkSimpleVolumeDICOMSeriesReaderService.cpp +++ b/Modules/DICOMReaderServices/src/mitkSimpleVolumeDICOMSeriesReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSimpleVolumeDICOMSeriesReaderService.h" #include "mitkDICOMReaderConfigurator.h" @@ -38,7 +34,7 @@ DICOMFileReader::Pointer SimpleVolumeDICOMSeriesReaderService::GetReader(const m mitk::StringList files = relevantFiles; std::string descr; - us::ModuleResource resource = + us::ModuleResource resource = us::ModuleRegistry::GetModule("MitkDICOMReader")->GetResource("configurations/3D/simpleinstancenumber_soft.xml"); if ( resource.IsValid() ) diff --git a/Modules/DICOMTesting/include/mitkTestDICOMLoading.h b/Modules/DICOMTesting/include/mitkTestDICOMLoading.h index e38d80270fc..f1d8cd2f564 100644 --- a/Modules/DICOMTesting/include/mitkTestDICOMLoading.h +++ b/Modules/DICOMTesting/include/mitkTestDICOMLoading.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkTestDICOMLoading_h #define mitkTestDICOMLoading_h diff --git a/Modules/DICOMTesting/src/DumpDICOMMitkImage.cpp b/Modules/DICOMTesting/src/DumpDICOMMitkImage.cpp index 0f5ea2257c8..240a3160370 100644 --- a/Modules/DICOMTesting/src/DumpDICOMMitkImage.cpp +++ b/Modules/DICOMTesting/src/DumpDICOMMitkImage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestDICOMLoading.h" #include "mitkImage.h" diff --git a/Modules/DICOMTesting/src/VerifyDICOMMitkImageDump.cpp b/Modules/DICOMTesting/src/VerifyDICOMMitkImageDump.cpp index 17ae811fb27..d05d8fbed5e 100644 --- a/Modules/DICOMTesting/src/VerifyDICOMMitkImageDump.cpp +++ b/Modules/DICOMTesting/src/VerifyDICOMMitkImageDump.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestDICOMLoading.h" #include "mitkImage.h" diff --git a/Modules/DICOMTesting/src/mitkTestDICOMLoading.cpp b/Modules/DICOMTesting/src/mitkTestDICOMLoading.cpp index a3289ed0e4a..532204de0e0 100644 --- a/Modules/DICOMTesting/src/mitkTestDICOMLoading.cpp +++ b/Modules/DICOMTesting/src/mitkTestDICOMLoading.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define MBILOG_ENABLE_DEBUG #include "mitkTestDICOMLoading.h" diff --git a/Modules/DICOMTesting/test/mitkDICOMLocaleTest.cpp b/Modules/DICOMTesting/test/mitkDICOMLocaleTest.cpp index e7192e7aeb5..a96055eaefa 100644 --- a/Modules/DICOMTesting/test/mitkDICOMLocaleTest.cpp +++ b/Modules/DICOMTesting/test/mitkDICOMLocaleTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /* This test is meant to reproduce the following error: diff --git a/Modules/DICOMTesting/test/mitkDICOMPreloadedVolumeTest.cpp b/Modules/DICOMTesting/test/mitkDICOMPreloadedVolumeTest.cpp index 837af1dbad0..69c68e14a39 100644 --- a/Modules/DICOMTesting/test/mitkDICOMPreloadedVolumeTest.cpp +++ b/Modules/DICOMTesting/test/mitkDICOMPreloadedVolumeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestDICOMLoading.h" diff --git a/Modules/DICOMTesting/test/mitkDICOMTestingSanityTest.cpp b/Modules/DICOMTesting/test/mitkDICOMTestingSanityTest.cpp index 5391aba6be8..954ff41e167 100644 --- a/Modules/DICOMTesting/test/mitkDICOMTestingSanityTest.cpp +++ b/Modules/DICOMTesting/test/mitkDICOMTestingSanityTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestDICOMLoading.h" diff --git a/Modules/DICOMweb/include/mitkDICOMweb.h b/Modules/DICOMweb/include/mitkDICOMweb.h index 8fdc321f4ee..ad34d512901 100644 --- a/Modules/DICOMweb/include/mitkDICOMweb.h +++ b/Modules/DICOMweb/include/mitkDICOMweb.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDICOMweb_h #define mitkDICOMweb_h diff --git a/Modules/DICOMweb/src/mitkDICOMweb.cpp b/Modules/DICOMweb/src/mitkDICOMweb.cpp index 4ec930c449c..d58a294b0cf 100644 --- a/Modules/DICOMweb/src/mitkDICOMweb.cpp +++ b/Modules/DICOMweb/src/mitkDICOMweb.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMweb.h" diff --git a/Modules/DataTypesExt/include/mitkAffineBaseDataInteractor3D.h b/Modules/DataTypesExt/include/mitkAffineBaseDataInteractor3D.h index 9e83d3f97dd..fde1135fe00 100644 --- a/Modules/DataTypesExt/include/mitkAffineBaseDataInteractor3D.h +++ b/Modules/DataTypesExt/include/mitkAffineBaseDataInteractor3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAffineBaseDataInteractor3D_h #define mitkAffineBaseDataInteractor3D_h diff --git a/Modules/DataTypesExt/include/mitkAffineImageCropperInteractor.h b/Modules/DataTypesExt/include/mitkAffineImageCropperInteractor.h index 696ad3f1644..ad61cac292d 100644 --- a/Modules/DataTypesExt/include/mitkAffineImageCropperInteractor.h +++ b/Modules/DataTypesExt/include/mitkAffineImageCropperInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAffineImageCropperInteractor_h_ #define mitkAffineImageCropperInteractor_h_ diff --git a/Modules/DataTypesExt/include/mitkApplyDiffImageOperation.h b/Modules/DataTypesExt/include/mitkApplyDiffImageOperation.h index 2348ecdbbec..884dbf7e124 100644 --- a/Modules/DataTypesExt/include/mitkApplyDiffImageOperation.h +++ b/Modules/DataTypesExt/include/mitkApplyDiffImageOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkApplyDiffImageIIncluded #define mitkApplyDiffImageIIncluded diff --git a/Modules/DataTypesExt/include/mitkBoundingObject.h b/Modules/DataTypesExt/include/mitkBoundingObject.h index f5dddf5a79c..5480b60f076 100644 --- a/Modules/DataTypesExt/include/mitkBoundingObject.h +++ b/Modules/DataTypesExt/include/mitkBoundingObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BOUNDINGOBJECT_H_HEADER_INCLUDED #define BOUNDINGOBJECT_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkBoundingObjectGroup.h b/Modules/DataTypesExt/include/mitkBoundingObjectGroup.h index f63e44b166c..2bb276675a7 100644 --- a/Modules/DataTypesExt/include/mitkBoundingObjectGroup.h +++ b/Modules/DataTypesExt/include/mitkBoundingObjectGroup.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BOUNDINGOBJECTGROUP_H_HEADER_INCLUDED #define BOUNDINGOBJECTGROUP_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkCellOperation.h b/Modules/DataTypesExt/include/mitkCellOperation.h index 94dcf602b6b..24c08df4b56 100644 --- a/Modules/DataTypesExt/include/mitkCellOperation.h +++ b/Modules/DataTypesExt/include/mitkCellOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCELLOPERATION_H_INCLUDED #define MITKCELLOPERATION_H_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkClippingPlaneInteractor3D.h b/Modules/DataTypesExt/include/mitkClippingPlaneInteractor3D.h index 845261806de..702d8f93144 100644 --- a/Modules/DataTypesExt/include/mitkClippingPlaneInteractor3D.h +++ b/Modules/DataTypesExt/include/mitkClippingPlaneInteractor3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkClippingPlaneInteractor3D_h #define mitkClippingPlaneInteractor3D_h diff --git a/Modules/DataTypesExt/include/mitkColorSequence.h b/Modules/DataTypesExt/include/mitkColorSequence.h index 4de59d5a147..5b8d6787855 100644 --- a/Modules/DataTypesExt/include/mitkColorSequence.h +++ b/Modules/DataTypesExt/include/mitkColorSequence.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOLORSEQUENCE_H_URTESEINDEUTIGEKENNUNG_01 #define MITKCOLORSEQUENCE_H_URTESEINDEUTIGEKENNUNG_01 diff --git a/Modules/DataTypesExt/include/mitkColorSequenceCycleH.h b/Modules/DataTypesExt/include/mitkColorSequenceCycleH.h index f3d225449f8..ccc1c1a63c2 100644 --- a/Modules/DataTypesExt/include/mitkColorSequenceCycleH.h +++ b/Modules/DataTypesExt/include/mitkColorSequenceCycleH.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOLORSEQUENCE_H_DEFG2390JKD #define MITKCOLORSEQUENCE_H_DEFG2390JKD diff --git a/Modules/DataTypesExt/include/mitkColorSequenceRainbow.h b/Modules/DataTypesExt/include/mitkColorSequenceRainbow.h index 2b900972435..bafb5f2fe77 100644 --- a/Modules/DataTypesExt/include/mitkColorSequenceRainbow.h +++ b/Modules/DataTypesExt/include/mitkColorSequenceRainbow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOLORSEQUENCERAINBOW_H_URTESEINDEUTIGEKENNUNG_02 #define MITKCOLORSEQUENCERAINBOW_H_URTESEINDEUTIGEKENNUNG_02 diff --git a/Modules/DataTypesExt/include/mitkCompressedImageContainer.h b/Modules/DataTypesExt/include/mitkCompressedImageContainer.h index 990528bcfa0..f607adada87 100644 --- a/Modules/DataTypesExt/include/mitkCompressedImageContainer.h +++ b/Modules/DataTypesExt/include/mitkCompressedImageContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCompressedImageContainer_h_Included #define mitkCompressedImageContainer_h_Included diff --git a/Modules/DataTypesExt/include/mitkCone.h b/Modules/DataTypesExt/include/mitkCone.h index 1aa28406b6f..280998f5fcb 100644 --- a/Modules/DataTypesExt/include/mitkCone.h +++ b/Modules/DataTypesExt/include/mitkCone.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCONE_H_HEADER_INCLUDED #define MITKCONE_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkCuboid.h b/Modules/DataTypesExt/include/mitkCuboid.h index 9592b5251be..d0ced627f1b 100644 --- a/Modules/DataTypesExt/include/mitkCuboid.h +++ b/Modules/DataTypesExt/include/mitkCuboid.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITCUBOID_H_HEADER_INCLUDED #define MITCUBOID_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkCylinder.h b/Modules/DataTypesExt/include/mitkCylinder.h index adbaddc8b43..99065e6e1c0 100644 --- a/Modules/DataTypesExt/include/mitkCylinder.h +++ b/Modules/DataTypesExt/include/mitkCylinder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCYLINDER_H_HEADER_INCLUDED #define MITKCYLINDER_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkDataStorageSelection.h b/Modules/DataTypesExt/include/mitkDataStorageSelection.h index f3f7a0de739..a3ae16f1cc4 100644 --- a/Modules/DataTypesExt/include/mitkDataStorageSelection.h +++ b/Modules/DataTypesExt/include/mitkDataStorageSelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataStorageSelection_h #define mitkDataStorageSelection_h diff --git a/Modules/DataTypesExt/include/mitkEllipsoid.h b/Modules/DataTypesExt/include/mitkEllipsoid.h index bf49d48b3b5..56677b11a19 100644 --- a/Modules/DataTypesExt/include/mitkEllipsoid.h +++ b/Modules/DataTypesExt/include/mitkEllipsoid.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKELLIPSEDATA_H_HEADER_INCLUDED #define MITKELLIPSEDATA_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkGridRepresentationProperty.h b/Modules/DataTypesExt/include/mitkGridRepresentationProperty.h index 52f9d565932..47b31d22bf3 100644 --- a/Modules/DataTypesExt/include/mitkGridRepresentationProperty.h +++ b/Modules/DataTypesExt/include/mitkGridRepresentationProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_GRID_REPRESENTATION_PROPERTY__H_ #define _MITK_GRID_REPRESENTATION_PROPERTY__H_ diff --git a/Modules/DataTypesExt/include/mitkGridVolumeMapperProperty.h b/Modules/DataTypesExt/include/mitkGridVolumeMapperProperty.h index 00ec40be9eb..2b0ac225ad2 100644 --- a/Modules/DataTypesExt/include/mitkGridVolumeMapperProperty.h +++ b/Modules/DataTypesExt/include/mitkGridVolumeMapperProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_GRID_VOLUME_MAPPER_PROPERTY__H_ #define _MITK_GRID_VOLUME_MAPPER_PROPERTY__H_ diff --git a/Modules/DataTypesExt/include/mitkLabeledImageLookupTable.h b/Modules/DataTypesExt/include/mitkLabeledImageLookupTable.h index c03e89eb253..a598ad2555d 100644 --- a/Modules/DataTypesExt/include/mitkLabeledImageLookupTable.h +++ b/Modules/DataTypesExt/include/mitkLabeledImageLookupTable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMITKLABELEDIMAGELOOKUPTABLE_H #define MITKMITKLABELEDIMAGELOOKUPTABLE_H diff --git a/Modules/DataTypesExt/include/mitkLabeledImageVolumeCalculator.h b/Modules/DataTypesExt/include/mitkLabeledImageVolumeCalculator.h index 7657ae044fc..54786dd2f6a 100644 --- a/Modules/DataTypesExt/include/mitkLabeledImageVolumeCalculator.h +++ b/Modules/DataTypesExt/include/mitkLabeledImageVolumeCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_LABELEDIMAGEVOLUMECALCULATOR_H #define _MITK_LABELEDIMAGEVOLUMECALCULATOR_H diff --git a/Modules/DataTypesExt/include/mitkLineOperation.h b/Modules/DataTypesExt/include/mitkLineOperation.h index e57fa25e573..cee666c7ec4 100644 --- a/Modules/DataTypesExt/include/mitkLineOperation.h +++ b/Modules/DataTypesExt/include/mitkLineOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLINEOPERATION_H_INCLUDED #define MITKLINEOPERATION_H_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkLookupTableSource.h b/Modules/DataTypesExt/include/mitkLookupTableSource.h index 15299ea63aa..41a366bbf31 100644 --- a/Modules/DataTypesExt/include/mitkLookupTableSource.h +++ b/Modules/DataTypesExt/include/mitkLookupTableSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLOOKUPTABLESOURCE_H_HEADER_INCLUDED #define MITKLOOKUPTABLESOURCE_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkMesh.h b/Modules/DataTypesExt/include/mitkMesh.h index e1b5bb752d5..74408065d27 100644 --- a/Modules/DataTypesExt/include/mitkMesh.h +++ b/Modules/DataTypesExt/include/mitkMesh.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMESH_H_HEADER_INCLUDED #define MITKMESH_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkMeshUtil.h b/Modules/DataTypesExt/include/mitkMeshUtil.h index a6b80caa1b8..a40c69cb201 100644 --- a/Modules/DataTypesExt/include/mitkMeshUtil.h +++ b/Modules/DataTypesExt/include/mitkMeshUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMESHUTIL_H_INCLUDED #define MITKMESHUTIL_H_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkMultiStepper.h b/Modules/DataTypesExt/include/mitkMultiStepper.h index ef18b203b4a..db3648827a1 100644 --- a/Modules/DataTypesExt/include/mitkMultiStepper.h +++ b/Modules/DataTypesExt/include/mitkMultiStepper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MULTISTEPPER_H_HEADER_INCLUDED #define MULTISTEPPER_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkPlane.h b/Modules/DataTypesExt/include/mitkPlane.h index ef401688e60..47d5219ea04 100644 --- a/Modules/DataTypesExt/include/mitkPlane.h +++ b/Modules/DataTypesExt/include/mitkPlane.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLANE_H_HEADER_INCLUDED #define MITKPLANE_H_HEADER_INCLUDED diff --git a/Modules/DataTypesExt/include/mitkSurfaceDeformationDataInteractor3D.h b/Modules/DataTypesExt/include/mitkSurfaceDeformationDataInteractor3D.h index 95ef962d00e..0b8257e304c 100644 --- a/Modules/DataTypesExt/include/mitkSurfaceDeformationDataInteractor3D.h +++ b/Modules/DataTypesExt/include/mitkSurfaceDeformationDataInteractor3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSurfaceDeformationDataInteractor3D_h_ #define mitkSurfaceDeformationDataInteractor3D_h_ diff --git a/Modules/DataTypesExt/include/mitkUnstructuredGrid.h b/Modules/DataTypesExt/include/mitkUnstructuredGrid.h index 57f19994b20..80ed138154b 100644 --- a/Modules/DataTypesExt/include/mitkUnstructuredGrid.h +++ b/Modules/DataTypesExt/include/mitkUnstructuredGrid.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_UNSTRUCTURED_GRID_H_ #define _MITK_UNSTRUCTURED_GRID_H_ diff --git a/Modules/DataTypesExt/include/mitkUnstructuredGridSource.h b/Modules/DataTypesExt/include/mitkUnstructuredGridSource.h index f9650002339..2dbe6e88689 100644 --- a/Modules/DataTypesExt/include/mitkUnstructuredGridSource.h +++ b/Modules/DataTypesExt/include/mitkUnstructuredGridSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_UNSTRUCTURED_GRID_DATA_SOURCE_H_HEADER_ #define _MITK_UNSTRUCTURED_GRID_DATA_SOURCE_H_HEADER_ diff --git a/Modules/DataTypesExt/include/mitkVideoSource.h b/Modules/DataTypesExt/include/mitkVideoSource.h index b3afc8d7481..5664a30e52a 100644 --- a/Modules/DataTypesExt/include/mitkVideoSource.h +++ b/Modules/DataTypesExt/include/mitkVideoSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitk_Video_Source_h_ #define _mitk_Video_Source_h_ diff --git a/Modules/DataTypesExt/src/mitkAffineBaseDataInteractor3D.cpp b/Modules/DataTypesExt/src/mitkAffineBaseDataInteractor3D.cpp index 4a6354d9bdb..43bb1944cc2 100644 --- a/Modules/DataTypesExt/src/mitkAffineBaseDataInteractor3D.cpp +++ b/Modules/DataTypesExt/src/mitkAffineBaseDataInteractor3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAffineBaseDataInteractor3D.h" diff --git a/Modules/DataTypesExt/src/mitkAffineImageCropperInteractor.cpp b/Modules/DataTypesExt/src/mitkAffineImageCropperInteractor.cpp index 3fdf7bdddc2..9e7e42b3b13 100644 --- a/Modules/DataTypesExt/src/mitkAffineImageCropperInteractor.cpp +++ b/Modules/DataTypesExt/src/mitkAffineImageCropperInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAffineImageCropperInteractor.h" diff --git a/Modules/DataTypesExt/src/mitkApplyDiffImageOperation.cpp b/Modules/DataTypesExt/src/mitkApplyDiffImageOperation.cpp index 22148a87c34..30c99556ff4 100644 --- a/Modules/DataTypesExt/src/mitkApplyDiffImageOperation.cpp +++ b/Modules/DataTypesExt/src/mitkApplyDiffImageOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkApplyDiffImageOperation.h" diff --git a/Modules/DataTypesExt/src/mitkBoundingObject.cpp b/Modules/DataTypesExt/src/mitkBoundingObject.cpp index 82ecd8a115d..161123c0ffc 100644 --- a/Modules/DataTypesExt/src/mitkBoundingObject.cpp +++ b/Modules/DataTypesExt/src/mitkBoundingObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBoundingObject.h" #include "mitkBaseProcess.h" diff --git a/Modules/DataTypesExt/src/mitkBoundingObjectGroup.cpp b/Modules/DataTypesExt/src/mitkBoundingObjectGroup.cpp index a62472bc03e..27f2f3d7625 100644 --- a/Modules/DataTypesExt/src/mitkBoundingObjectGroup.cpp +++ b/Modules/DataTypesExt/src/mitkBoundingObjectGroup.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBoundingObjectGroup.h" #include "mitkBaseProcess.h" diff --git a/Modules/DataTypesExt/src/mitkCellOperation.cpp b/Modules/DataTypesExt/src/mitkCellOperation.cpp index 0309e0fb0ad..3f956fb9c18 100644 --- a/Modules/DataTypesExt/src/mitkCellOperation.cpp +++ b/Modules/DataTypesExt/src/mitkCellOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCellOperation.h" diff --git a/Modules/DataTypesExt/src/mitkClippingPlaneInteractor3D.cpp b/Modules/DataTypesExt/src/mitkClippingPlaneInteractor3D.cpp index e992805c138..2769e718fa8 100644 --- a/Modules/DataTypesExt/src/mitkClippingPlaneInteractor3D.cpp +++ b/Modules/DataTypesExt/src/mitkClippingPlaneInteractor3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClippingPlaneInteractor3D.h" diff --git a/Modules/DataTypesExt/src/mitkColorConversions.cpp b/Modules/DataTypesExt/src/mitkColorConversions.cpp index 1b4aac12401..34ae1b172f2 100644 --- a/Modules/DataTypesExt/src/mitkColorConversions.cpp +++ b/Modules/DataTypesExt/src/mitkColorConversions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkColorConversions.h" diff --git a/Modules/DataTypesExt/src/mitkColorConversions.h b/Modules/DataTypesExt/src/mitkColorConversions.h index 18ed74b426f..6df325cac66 100644 --- a/Modules/DataTypesExt/src/mitkColorConversions.h +++ b/Modules/DataTypesExt/src/mitkColorConversions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ namespace mitk { diff --git a/Modules/DataTypesExt/src/mitkColorSequence.cpp b/Modules/DataTypesExt/src/mitkColorSequence.cpp index dd3dfff4863..6c77b91c649 100644 --- a/Modules/DataTypesExt/src/mitkColorSequence.cpp +++ b/Modules/DataTypesExt/src/mitkColorSequence.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkColorSequence.h" namespace mitk diff --git a/Modules/DataTypesExt/src/mitkColorSequenceCycleH.cpp b/Modules/DataTypesExt/src/mitkColorSequenceCycleH.cpp index 960d59761ea..c4cae64831a 100644 --- a/Modules/DataTypesExt/src/mitkColorSequenceCycleH.cpp +++ b/Modules/DataTypesExt/src/mitkColorSequenceCycleH.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/DataTypesExt/src/mitkColorSequenceRainbow.cpp b/Modules/DataTypesExt/src/mitkColorSequenceRainbow.cpp index 23424007408..f2d277fa455 100644 --- a/Modules/DataTypesExt/src/mitkColorSequenceRainbow.cpp +++ b/Modules/DataTypesExt/src/mitkColorSequenceRainbow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkColorSequenceRainbow.h" #include namespace mitk diff --git a/Modules/DataTypesExt/src/mitkCompressedImageContainer.cpp b/Modules/DataTypesExt/src/mitkCompressedImageContainer.cpp index 55936af3755..bfad62d7ef8 100644 --- a/Modules/DataTypesExt/src/mitkCompressedImageContainer.cpp +++ b/Modules/DataTypesExt/src/mitkCompressedImageContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCompressedImageContainer.h" #include "mitkImageReadAccessor.h" diff --git a/Modules/DataTypesExt/src/mitkCone.cpp b/Modules/DataTypesExt/src/mitkCone.cpp index ed25fc4aa8f..845b9095795 100644 --- a/Modules/DataTypesExt/src/mitkCone.cpp +++ b/Modules/DataTypesExt/src/mitkCone.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCone.h" #include "mitkNumericTypes.h" diff --git a/Modules/DataTypesExt/src/mitkCuboid.cpp b/Modules/DataTypesExt/src/mitkCuboid.cpp index 2ee393b33a2..10d7094791b 100644 --- a/Modules/DataTypesExt/src/mitkCuboid.cpp +++ b/Modules/DataTypesExt/src/mitkCuboid.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCuboid.h" #include "mitkNumericTypes.h" diff --git a/Modules/DataTypesExt/src/mitkCylinder.cpp b/Modules/DataTypesExt/src/mitkCylinder.cpp index fdc33d5f1cf..cdbdb1cda03 100644 --- a/Modules/DataTypesExt/src/mitkCylinder.cpp +++ b/Modules/DataTypesExt/src/mitkCylinder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCylinder.h" #include "mitkNumericTypes.h" diff --git a/Modules/DataTypesExt/src/mitkDataStorageSelection.cpp b/Modules/DataTypesExt/src/mitkDataStorageSelection.cpp index dda2fbe8392..11aa59686e5 100644 --- a/Modules/DataTypesExt/src/mitkDataStorageSelection.cpp +++ b/Modules/DataTypesExt/src/mitkDataStorageSelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataStorageSelection.h" #include diff --git a/Modules/DataTypesExt/src/mitkEllipsoid.cpp b/Modules/DataTypesExt/src/mitkEllipsoid.cpp index 0954af82c69..a4472827eab 100644 --- a/Modules/DataTypesExt/src/mitkEllipsoid.cpp +++ b/Modules/DataTypesExt/src/mitkEllipsoid.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkEllipsoid.h" #include "mitkNumericTypes.h" diff --git a/Modules/DataTypesExt/src/mitkGridRepresentationProperty.cpp b/Modules/DataTypesExt/src/mitkGridRepresentationProperty.cpp index 7be2f69935f..96052cf00a1 100644 --- a/Modules/DataTypesExt/src/mitkGridRepresentationProperty.cpp +++ b/Modules/DataTypesExt/src/mitkGridRepresentationProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGridRepresentationProperty.h" #include diff --git a/Modules/DataTypesExt/src/mitkGridVolumeMapperProperty.cpp b/Modules/DataTypesExt/src/mitkGridVolumeMapperProperty.cpp index 3a3e214455a..4203472912a 100644 --- a/Modules/DataTypesExt/src/mitkGridVolumeMapperProperty.cpp +++ b/Modules/DataTypesExt/src/mitkGridVolumeMapperProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGridVolumeMapperProperty.h" #include diff --git a/Modules/DataTypesExt/src/mitkLabeledImageLookupTable.cpp b/Modules/DataTypesExt/src/mitkLabeledImageLookupTable.cpp index 0876657cd1a..fd6214a6a59 100644 --- a/Modules/DataTypesExt/src/mitkLabeledImageLookupTable.cpp +++ b/Modules/DataTypesExt/src/mitkLabeledImageLookupTable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabeledImageLookupTable.h" #include diff --git a/Modules/DataTypesExt/src/mitkLabeledImageVolumeCalculator.cpp b/Modules/DataTypesExt/src/mitkLabeledImageVolumeCalculator.cpp index 83179c06bb6..65b477cd692 100644 --- a/Modules/DataTypesExt/src/mitkLabeledImageVolumeCalculator.cpp +++ b/Modules/DataTypesExt/src/mitkLabeledImageVolumeCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabeledImageVolumeCalculator.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/DataTypesExt/src/mitkLineOperation.cpp b/Modules/DataTypesExt/src/mitkLineOperation.cpp index 2e044174a8c..2316b8bfe9a 100644 --- a/Modules/DataTypesExt/src/mitkLineOperation.cpp +++ b/Modules/DataTypesExt/src/mitkLineOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLineOperation.h" diff --git a/Modules/DataTypesExt/src/mitkLookupTableSource.cpp b/Modules/DataTypesExt/src/mitkLookupTableSource.cpp index fad2eb06369..4ad6e282b62 100644 --- a/Modules/DataTypesExt/src/mitkLookupTableSource.cpp +++ b/Modules/DataTypesExt/src/mitkLookupTableSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLookupTableSource.h" diff --git a/Modules/DataTypesExt/src/mitkMesh.cpp b/Modules/DataTypesExt/src/mitkMesh.cpp index 995561188d5..b88524fc13d 100644 --- a/Modules/DataTypesExt/src/mitkMesh.cpp +++ b/Modules/DataTypesExt/src/mitkMesh.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMesh.h" #include "mitkInteractionConst.h" diff --git a/Modules/DataTypesExt/src/mitkMultiStepper.cpp b/Modules/DataTypesExt/src/mitkMultiStepper.cpp index 204d8bc6158..59dcb4eab21 100644 --- a/Modules/DataTypesExt/src/mitkMultiStepper.cpp +++ b/Modules/DataTypesExt/src/mitkMultiStepper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMultiStepper.h" #include "mitkStepper.h" diff --git a/Modules/DataTypesExt/src/mitkPlane.cpp b/Modules/DataTypesExt/src/mitkPlane.cpp index 749c103243a..f03b2cd001e 100644 --- a/Modules/DataTypesExt/src/mitkPlane.cpp +++ b/Modules/DataTypesExt/src/mitkPlane.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlane.h" #include "mitkNumericTypes.h" diff --git a/Modules/DataTypesExt/src/mitkSurfaceDeformationDataInteractor3D.cpp b/Modules/DataTypesExt/src/mitkSurfaceDeformationDataInteractor3D.cpp index ba4697895cd..94248cdde3c 100644 --- a/Modules/DataTypesExt/src/mitkSurfaceDeformationDataInteractor3D.cpp +++ b/Modules/DataTypesExt/src/mitkSurfaceDeformationDataInteractor3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceDeformationDataInteractor3D.h" diff --git a/Modules/DataTypesExt/src/mitkUnstructuredGrid.cpp b/Modules/DataTypesExt/src/mitkUnstructuredGrid.cpp index b1bd11c9024..7a43fda45e9 100644 --- a/Modules/DataTypesExt/src/mitkUnstructuredGrid.cpp +++ b/Modules/DataTypesExt/src/mitkUnstructuredGrid.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUnstructuredGrid.h" diff --git a/Modules/DataTypesExt/src/mitkUnstructuredGridSource.cpp b/Modules/DataTypesExt/src/mitkUnstructuredGridSource.cpp index 92bad81a012..97e41fad741 100644 --- a/Modules/DataTypesExt/src/mitkUnstructuredGridSource.cpp +++ b/Modules/DataTypesExt/src/mitkUnstructuredGridSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUnstructuredGridSource.h" #include "mitkUnstructuredGrid.h" diff --git a/Modules/DataTypesExt/src/mitkVideoSource.cpp b/Modules/DataTypesExt/src/mitkVideoSource.cpp index 2c68bb7dfb7..bc13bc88e0d 100644 --- a/Modules/DataTypesExt/src/mitkVideoSource.cpp +++ b/Modules/DataTypesExt/src/mitkVideoSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVideoSource.h" diff --git a/Modules/DataTypesExt/test/mitkColorSequenceRainbowTest.cpp b/Modules/DataTypesExt/test/mitkColorSequenceRainbowTest.cpp index c979421bc7a..18c69db63b6 100644 --- a/Modules/DataTypesExt/test/mitkColorSequenceRainbowTest.cpp +++ b/Modules/DataTypesExt/test/mitkColorSequenceRainbowTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Modules/DataTypesExt/test/mitkCompressedImageContainerTest.cpp b/Modules/DataTypesExt/test/mitkCompressedImageContainerTest.cpp index 004db0caaab..4747eee7e43 100644 --- a/Modules/DataTypesExt/test/mitkCompressedImageContainerTest.cpp +++ b/Modules/DataTypesExt/test/mitkCompressedImageContainerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCompressedImageContainer.h" #include "mitkCoreObjectFactory.h" diff --git a/Modules/DataTypesExt/test/mitkMeshTest.cpp b/Modules/DataTypesExt/test/mitkMeshTest.cpp index 332cde01330..aa6dd719a92 100644 --- a/Modules/DataTypesExt/test/mitkMeshTest.cpp +++ b/Modules/DataTypesExt/test/mitkMeshTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/DataTypesExt/test/mitkMultiStepperTest.cpp b/Modules/DataTypesExt/test/mitkMultiStepperTest.cpp index 82cae0c705e..958fca52e9b 100644 --- a/Modules/DataTypesExt/test/mitkMultiStepperTest.cpp +++ b/Modules/DataTypesExt/test/mitkMultiStepperTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMultiStepper.h" #include "mitkStepper.h" diff --git a/Modules/DataTypesExt/test/mitkUnstructuredGridTest.cpp b/Modules/DataTypesExt/test/mitkUnstructuredGridTest.cpp index d67cbe07d2a..cc355ec77a5 100644 --- a/Modules/DataTypesExt/test/mitkUnstructuredGridTest.cpp +++ b/Modules/DataTypesExt/test/mitkUnstructuredGridTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkTestingMacros.h" @@ -22,7 +18,7 @@ See LICENSE.txt or http://www.mitk.org for details. #include "vtkUnstructuredGrid.h" /** - *Unit test for the UnstructuredGríd class + *Unit test for the UnstructuredGríd class */ int mitkUnstructuredGridTest(int /* argc */, char * /*argv*/ []) diff --git a/Modules/DicomRT/autoload/IO/mitkDicomRTIOActivator.cpp b/Modules/DicomRT/autoload/IO/mitkDicomRTIOActivator.cpp index c9017c50708..9abbc079d79 100644 --- a/Modules/DicomRT/autoload/IO/mitkDicomRTIOActivator.cpp +++ b/Modules/DicomRT/autoload/IO/mitkDicomRTIOActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/DicomRT/autoload/IO/mitkDicomRTIOMimeTypes.cpp b/Modules/DicomRT/autoload/IO/mitkDicomRTIOMimeTypes.cpp index 5b327e0a78e..3db99ac3de8 100644 --- a/Modules/DicomRT/autoload/IO/mitkDicomRTIOMimeTypes.cpp +++ b/Modules/DicomRT/autoload/IO/mitkDicomRTIOMimeTypes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDicomRTIOMimeTypes.h" diff --git a/Modules/DicomRT/autoload/IO/mitkDicomRTIOMimeTypes.h b/Modules/DicomRT/autoload/IO/mitkDicomRTIOMimeTypes.h index 42a74a4a13c..b58e11df9ec 100644 --- a/Modules/DicomRT/autoload/IO/mitkDicomRTIOMimeTypes.h +++ b/Modules/DicomRT/autoload/IO/mitkDicomRTIOMimeTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDicomRTIOMimeTypes_H #define MITKDicomRTIOMimeTypes_H @@ -36,7 +32,7 @@ class DicomRTIOMimeTypes RTDoseMimeType* Clone() const override; }; - + class RTStructMimeType : public CustomMimeType { public: @@ -69,7 +65,7 @@ class DicomRTIOMimeTypes DicomRTIOMimeTypes() = delete; DicomRTIOMimeTypes(const DicomRTIOMimeTypes&) = delete; - + static mitk::IDICOMTagsOfInterest* GetDicomTagsOfInterestService(); static bool canReadByDicomFileReader(const std::string & path); static std::string GetModality(const std::string & path); diff --git a/Modules/DicomRT/autoload/IO/mitkRTDoseReaderService.cpp b/Modules/DicomRT/autoload/IO/mitkRTDoseReaderService.cpp index 3b75360031f..9bd6a9c05b3 100644 --- a/Modules/DicomRT/autoload/IO/mitkRTDoseReaderService.cpp +++ b/Modules/DicomRT/autoload/IO/mitkRTDoseReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRTDoseReaderService.h" diff --git a/Modules/DicomRT/autoload/IO/mitkRTDoseReaderService.h b/Modules/DicomRT/autoload/IO/mitkRTDoseReaderService.h index 4954615a213..112f8da28c9 100644 --- a/Modules/DicomRT/autoload/IO/mitkRTDoseReaderService.h +++ b/Modules/DicomRT/autoload/IO/mitkRTDoseReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRTDoseReaderService_h diff --git a/Modules/DicomRT/autoload/IO/mitkRTPlanReaderService.cpp b/Modules/DicomRT/autoload/IO/mitkRTPlanReaderService.cpp index 7d5e9c301ff..0a1bb39e2ad 100644 --- a/Modules/DicomRT/autoload/IO/mitkRTPlanReaderService.cpp +++ b/Modules/DicomRT/autoload/IO/mitkRTPlanReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRTPlanReaderService.h" diff --git a/Modules/DicomRT/autoload/IO/mitkRTPlanReaderService.h b/Modules/DicomRT/autoload/IO/mitkRTPlanReaderService.h index 0e7567e87c8..dd29b2af7de 100644 --- a/Modules/DicomRT/autoload/IO/mitkRTPlanReaderService.h +++ b/Modules/DicomRT/autoload/IO/mitkRTPlanReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRTPlanReaderService_h diff --git a/Modules/DicomRT/autoload/IO/mitkRTStructureSetReaderService.cpp b/Modules/DicomRT/autoload/IO/mitkRTStructureSetReaderService.cpp index 6b40a34f45f..5b08e259893 100644 --- a/Modules/DicomRT/autoload/IO/mitkRTStructureSetReaderService.cpp +++ b/Modules/DicomRT/autoload/IO/mitkRTStructureSetReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRTStructureSetReaderService.h" diff --git a/Modules/DicomRT/autoload/IO/mitkRTStructureSetReaderService.h b/Modules/DicomRT/autoload/IO/mitkRTStructureSetReaderService.h index 0a9597ec937..8986c6366ff 100644 --- a/Modules/DicomRT/autoload/IO/mitkRTStructureSetReaderService.h +++ b/Modules/DicomRT/autoload/IO/mitkRTStructureSetReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRTSTRUCTURESETREADER_H #define MITKRTSTRUCTURESETREADER_H diff --git a/Modules/DicomRT/include/mitkDoseImageVtkMapper2D.h b/Modules/DicomRT/include/mitkDoseImageVtkMapper2D.h index 2136d8903bb..e1bb7b3edcd 100644 --- a/Modules/DicomRT/include/mitkDoseImageVtkMapper2D.h +++ b/Modules/DicomRT/include/mitkDoseImageVtkMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDoseImageVtkMapper2D2D_H_HEADER_INCLUDED #define MITKDoseImageVtkMapper2D2D_H_HEADER_INCLUDED diff --git a/Modules/DicomRT/include/mitkDoseNodeHelper.h b/Modules/DicomRT/include/mitkDoseNodeHelper.h index 5bbd9ccbad0..7429f1d7098 100644 --- a/Modules/DicomRT/include/mitkDoseNodeHelper.h +++ b/Modules/DicomRT/include/mitkDoseNodeHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __DOSE_NODE_HELPER_H diff --git a/Modules/DicomRT/include/mitkDoseValueType.h b/Modules/DicomRT/include/mitkDoseValueType.h index ed3ba8680ae..da557c0d2e7 100644 --- a/Modules/DicomRT/include/mitkDoseValueType.h +++ b/Modules/DicomRT/include/mitkDoseValueType.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_DOSE_VALUE_TYPE_H_ diff --git a/Modules/DicomRT/include/mitkIsoDoseLevel.h b/Modules/DicomRT/include/mitkIsoDoseLevel.h index b3f4c096c13..7516de7bff2 100644 --- a/Modules/DicomRT/include/mitkIsoDoseLevel.h +++ b/Modules/DicomRT/include/mitkIsoDoseLevel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_DOSE_ISO_LEVEL_H_ diff --git a/Modules/DicomRT/include/mitkIsoDoseLevelCollections.h b/Modules/DicomRT/include/mitkIsoDoseLevelCollections.h index 78faef39d6b..4bee6f08f82 100644 --- a/Modules/DicomRT/include/mitkIsoDoseLevelCollections.h +++ b/Modules/DicomRT/include/mitkIsoDoseLevelCollections.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_DOSE_ISO_LEVEL_COLLECTIONS_H_ diff --git a/Modules/DicomRT/include/mitkIsoDoseLevelSetProperty.h b/Modules/DicomRT/include/mitkIsoDoseLevelSetProperty.h index f44dd53cae2..059a4767d63 100644 --- a/Modules/DicomRT/include/mitkIsoDoseLevelSetProperty.h +++ b/Modules/DicomRT/include/mitkIsoDoseLevelSetProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_DOSE_ISO_LEVEL_SET_PROPERTY_H_ diff --git a/Modules/DicomRT/include/mitkIsoDoseLevelVectorProperty.h b/Modules/DicomRT/include/mitkIsoDoseLevelVectorProperty.h index 49bf172f679..575bbcc7f88 100644 --- a/Modules/DicomRT/include/mitkIsoDoseLevelVectorProperty.h +++ b/Modules/DicomRT/include/mitkIsoDoseLevelVectorProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_DOSE_ISO_LEVEL_VECTOR_PROPERTY_H_ diff --git a/Modules/DicomRT/include/mitkIsoLevelsGenerator.h b/Modules/DicomRT/include/mitkIsoLevelsGenerator.h index 620e3ed0d66..9fcd529c116 100644 --- a/Modules/DicomRT/include/mitkIsoLevelsGenerator.h +++ b/Modules/DicomRT/include/mitkIsoLevelsGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __ISO_LEVELS_GENERATOR_H diff --git a/Modules/DicomRT/include/mitkRTConstants.h b/Modules/DicomRT/include/mitkRTConstants.h index f7be5b89b0d..598d7bd3dfa 100644 --- a/Modules/DicomRT/include/mitkRTConstants.h +++ b/Modules/DicomRT/include/mitkRTConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_RT_CONSTANTS_H_ #define _MITK_RT_CONSTANTS_H_ diff --git a/Modules/DicomRT/src/mitkDoseImageVtkMapper2D.cpp b/Modules/DicomRT/src/mitkDoseImageVtkMapper2D.cpp index 4e48d9095f4..65be0f3e67c 100644 --- a/Modules/DicomRT/src/mitkDoseImageVtkMapper2D.cpp +++ b/Modules/DicomRT/src/mitkDoseImageVtkMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkImageStatisticsHolder.h" diff --git a/Modules/DicomRT/src/mitkDoseNodeHelper.cpp b/Modules/DicomRT/src/mitkDoseNodeHelper.cpp index 3f0675bd25e..f8e9176d02b 100644 --- a/Modules/DicomRT/src/mitkDoseNodeHelper.cpp +++ b/Modules/DicomRT/src/mitkDoseNodeHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDoseNodeHelper.h" diff --git a/Modules/DicomRT/src/mitkIsoDoseLevel.cpp b/Modules/DicomRT/src/mitkIsoDoseLevel.cpp index 37a3e41f813..f2c38e39999 100644 --- a/Modules/DicomRT/src/mitkIsoDoseLevel.cpp +++ b/Modules/DicomRT/src/mitkIsoDoseLevel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIsoDoseLevel.h" diff --git a/Modules/DicomRT/src/mitkIsoDoseLevelCollections.cpp b/Modules/DicomRT/src/mitkIsoDoseLevelCollections.cpp index 7ffdc9d13fe..609263f33d6 100644 --- a/Modules/DicomRT/src/mitkIsoDoseLevelCollections.cpp +++ b/Modules/DicomRT/src/mitkIsoDoseLevelCollections.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/DicomRT/src/mitkIsoDoseLevelSetProperty.cpp b/Modules/DicomRT/src/mitkIsoDoseLevelSetProperty.cpp index 8d15835b82d..aa158348385 100644 --- a/Modules/DicomRT/src/mitkIsoDoseLevelSetProperty.cpp +++ b/Modules/DicomRT/src/mitkIsoDoseLevelSetProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIsoDoseLevelSetProperty.h" diff --git a/Modules/DicomRT/src/mitkIsoDoseLevelVectorProperty.cpp b/Modules/DicomRT/src/mitkIsoDoseLevelVectorProperty.cpp index cc4b577bc73..0182f7c1352 100644 --- a/Modules/DicomRT/src/mitkIsoDoseLevelVectorProperty.cpp +++ b/Modules/DicomRT/src/mitkIsoDoseLevelVectorProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIsoDoseLevelVectorProperty.h" diff --git a/Modules/DicomRT/src/mitkIsoLevelsGenerator.cpp b/Modules/DicomRT/src/mitkIsoLevelsGenerator.cpp index a37920ee91e..bb308aa8769 100644 --- a/Modules/DicomRT/src/mitkIsoLevelsGenerator.cpp +++ b/Modules/DicomRT/src/mitkIsoLevelsGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIsoLevelsGenerator.h" diff --git a/Modules/DicomRT/src/mitkRTConstants.cpp b/Modules/DicomRT/src/mitkRTConstants.cpp index 6f3f936e78c..f4c586c3c89 100644 --- a/Modules/DicomRT/src/mitkRTConstants.cpp +++ b/Modules/DicomRT/src/mitkRTConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRTConstants.h" diff --git a/Modules/DicomRT/src/mitkRTPlanReader.cpp b/Modules/DicomRT/src/mitkRTPlanReader.cpp index dd4d7da911a..1c7b7b374b0 100644 --- a/Modules/DicomRT/src/mitkRTPlanReader.cpp +++ b/Modules/DicomRT/src/mitkRTPlanReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRTPlanReader.h" diff --git a/Modules/DicomRT/test/mitkRTDoseReaderServiceTest.cpp b/Modules/DicomRT/test/mitkRTDoseReaderServiceTest.cpp index 46e04a5bb76..f6d984d8f0e 100644 --- a/Modules/DicomRT/test/mitkRTDoseReaderServiceTest.cpp +++ b/Modules/DicomRT/test/mitkRTDoseReaderServiceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/DicomRT/test/mitkRTPlanReaderServiceTest.cpp b/Modules/DicomRT/test/mitkRTPlanReaderServiceTest.cpp index 83b1adefaba..cdf6ee66155 100644 --- a/Modules/DicomRT/test/mitkRTPlanReaderServiceTest.cpp +++ b/Modules/DicomRT/test/mitkRTPlanReaderServiceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "mitkTestFixture.h" diff --git a/Modules/DicomRT/test/mitkRTPlanReaderTest.cpp b/Modules/DicomRT/test/mitkRTPlanReaderTest.cpp index d75601ed0f8..fd819e5851e 100644 --- a/Modules/DicomRT/test/mitkRTPlanReaderTest.cpp +++ b/Modules/DicomRT/test/mitkRTPlanReaderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "mitkTestFixture.h" @@ -52,7 +48,7 @@ class mitkRTPlanReaderTestSuite : public mitk::TestFixture CheckStringProperty("DICOM.300A.0010.[1].300A.0016", "CALC POINT"); CheckStringProperty("DICOM.300A.0010.[0].300A.0026", "14"); CheckStringProperty("DICOM.300A.0010.[1].300A.0026", "11.3113869239676"); - + CheckStringProperty("DICOM.300A.0070.[0].300A.0078", "7"); CheckStringProperty("DICOM.300A.0070.[0].300A.0080", "4"); diff --git a/Modules/DicomRT/test/mitkRTStructureSetReaderServiceTest.cpp b/Modules/DicomRT/test/mitkRTStructureSetReaderServiceTest.cpp index dc33cec15e9..443e65f245d 100644 --- a/Modules/DicomRT/test/mitkRTStructureSetReaderServiceTest.cpp +++ b/Modules/DicomRT/test/mitkRTStructureSetReaderServiceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/DicomUI/include/QmitkDicomExternalDataWidget.h b/Modules/DicomUI/include/QmitkDicomExternalDataWidget.h index e5159dc0cee..b4f9b307815 100644 --- a/Modules/DicomUI/include/QmitkDicomExternalDataWidget.h +++ b/Modules/DicomUI/include/QmitkDicomExternalDataWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDicomExternalDataWidget_h #define QmitkDicomExternalDataWidget_h diff --git a/Modules/DicomUI/include/QmitkDicomLocalStorageWidget.h b/Modules/DicomUI/include/QmitkDicomLocalStorageWidget.h index 4cc5d292861..40b275e01a3 100644 --- a/Modules/DicomUI/include/QmitkDicomLocalStorageWidget.h +++ b/Modules/DicomUI/include/QmitkDicomLocalStorageWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDicomLocalStorageWidget_h #define QmitkDicomLocalStorageWidget_h diff --git a/Modules/DicomUI/src/QmitkDicomExternalDataWidget.cpp b/Modules/DicomUI/src/QmitkDicomExternalDataWidget.cpp index 5ed4efc0cbd..cde7bcc751c 100644 --- a/Modules/DicomUI/src/QmitkDicomExternalDataWidget.cpp +++ b/Modules/DicomUI/src/QmitkDicomExternalDataWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkDicomExternalDataWidget.h" diff --git a/Modules/DicomUI/src/QmitkDicomLocalStorageWidget.cpp b/Modules/DicomUI/src/QmitkDicomLocalStorageWidget.cpp index d27b92eb4e3..1fd400bd757 100644 --- a/Modules/DicomUI/src/QmitkDicomLocalStorageWidget.cpp +++ b/Modules/DicomUI/src/QmitkDicomLocalStorageWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkDicomLocalStorageWidget.h" diff --git a/Modules/Gizmo/include/mitkGizmo.h b/Modules/Gizmo/include/mitkGizmo.h index 0d22b96b88a..73fe3d1c64f 100644 --- a/Modules/Gizmo/include/mitkGizmo.h +++ b/Modules/Gizmo/include/mitkGizmo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGizmo_h #define mitkGizmo_h diff --git a/Modules/Gizmo/include/mitkGizmoInteractor.h b/Modules/Gizmo/include/mitkGizmoInteractor.h index 6967f18a490..b1e58196b5c 100644 --- a/Modules/Gizmo/include/mitkGizmoInteractor.h +++ b/Modules/Gizmo/include/mitkGizmoInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGizmoInteractor_h #define mitkGizmoInteractor_h diff --git a/Modules/Gizmo/src/mitkGizmo.cpp b/Modules/Gizmo/src/mitkGizmo.cpp index ea68f71a9e8..947c558c196 100644 --- a/Modules/Gizmo/src/mitkGizmo.cpp +++ b/Modules/Gizmo/src/mitkGizmo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGizmo.h" #include "mitkGizmoInteractor.h" diff --git a/Modules/Gizmo/src/mitkGizmoInteractor.cpp b/Modules/Gizmo/src/mitkGizmoInteractor.cpp index b32bc99a623..5f68962cdb3 100644 --- a/Modules/Gizmo/src/mitkGizmoInteractor.cpp +++ b/Modules/Gizmo/src/mitkGizmoInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGizmoInteractor.h" #include "mitkGizmoMapper2D.h" diff --git a/Modules/Gizmo/src/mitkGizmoMapper2D.cpp b/Modules/Gizmo/src/mitkGizmoMapper2D.cpp index b7ad640c679..be177c57f52 100644 --- a/Modules/Gizmo/src/mitkGizmoMapper2D.cpp +++ b/Modules/Gizmo/src/mitkGizmoMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGizmoMapper2D.h" diff --git a/Modules/Gizmo/src/mitkGizmoMapper2D.h b/Modules/Gizmo/src/mitkGizmoMapper2D.h index f4cb71b0060..40fd5d86ad1 100644 --- a/Modules/Gizmo/src/mitkGizmoMapper2D.h +++ b/Modules/Gizmo/src/mitkGizmoMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGizmoMapper2D_h #define mitkGizmoMapper2D_h diff --git a/Modules/Gizmo/src/mitkGizmoObjectFactory.cpp b/Modules/Gizmo/src/mitkGizmoObjectFactory.cpp index a30e7225c0c..15874cceb00 100644 --- a/Modules/Gizmo/src/mitkGizmoObjectFactory.cpp +++ b/Modules/Gizmo/src/mitkGizmoObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGizmoObjectFactory.h" diff --git a/Modules/Gizmo/src/mitkGizmoObjectFactory.h b/Modules/Gizmo/src/mitkGizmoObjectFactory.h index 74546428dcd..a9528ba9785 100644 --- a/Modules/Gizmo/src/mitkGizmoObjectFactory.h +++ b/Modules/Gizmo/src/mitkGizmoObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef GizmoObjectFactor_h #define GizmoObjectFactor_h diff --git a/Modules/GraphAlgorithms/itkShortestPathCostFunction.h b/Modules/GraphAlgorithms/itkShortestPathCostFunction.h index 0e2efef7a36..8d3b130627a 100644 --- a/Modules/GraphAlgorithms/itkShortestPathCostFunction.h +++ b/Modules/GraphAlgorithms/itkShortestPathCostFunction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathCostFunction_h #define __itkShortestPathCostFunction_h diff --git a/Modules/GraphAlgorithms/itkShortestPathCostFunction.txx b/Modules/GraphAlgorithms/itkShortestPathCostFunction.txx index 84c73892ced..c59aee2e419 100644 --- a/Modules/GraphAlgorithms/itkShortestPathCostFunction.txx +++ b/Modules/GraphAlgorithms/itkShortestPathCostFunction.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathCostFunction_txx #define __itkShortestPathCostFunction_txx diff --git a/Modules/GraphAlgorithms/itkShortestPathCostFunctionLiveWire.h b/Modules/GraphAlgorithms/itkShortestPathCostFunctionLiveWire.h index 984ec5a8187..44817dc20e3 100644 --- a/Modules/GraphAlgorithms/itkShortestPathCostFunctionLiveWire.h +++ b/Modules/GraphAlgorithms/itkShortestPathCostFunctionLiveWire.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathCostFunctionLiveWire_h #define __itkShortestPathCostFunctionLiveWire_h diff --git a/Modules/GraphAlgorithms/itkShortestPathCostFunctionLiveWire.txx b/Modules/GraphAlgorithms/itkShortestPathCostFunctionLiveWire.txx index 95c5939050e..f0c9726d8a1 100644 --- a/Modules/GraphAlgorithms/itkShortestPathCostFunctionLiveWire.txx +++ b/Modules/GraphAlgorithms/itkShortestPathCostFunctionLiveWire.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathCostFunctionLiveWire_txx #define __itkShortestPathCostFunctionLiveWire_txx diff --git a/Modules/GraphAlgorithms/itkShortestPathCostFunctionTbss.h b/Modules/GraphAlgorithms/itkShortestPathCostFunctionTbss.h index 4955ac2924d..29693020c09 100644 --- a/Modules/GraphAlgorithms/itkShortestPathCostFunctionTbss.h +++ b/Modules/GraphAlgorithms/itkShortestPathCostFunctionTbss.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathCostFunctionTbss_h #define __itkShortestPathCostFunctionTbss_h diff --git a/Modules/GraphAlgorithms/itkShortestPathCostFunctionTbss.txx b/Modules/GraphAlgorithms/itkShortestPathCostFunctionTbss.txx index 90145d30134..7244b013b74 100644 --- a/Modules/GraphAlgorithms/itkShortestPathCostFunctionTbss.txx +++ b/Modules/GraphAlgorithms/itkShortestPathCostFunctionTbss.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathCostFunctionTbss_cpp #define __itkShortestPathCostFunctionTbss_cpp diff --git a/Modules/GraphAlgorithms/itkShortestPathImageFilter.h b/Modules/GraphAlgorithms/itkShortestPathImageFilter.h index 1d960ddaada..f06db959222 100644 --- a/Modules/GraphAlgorithms/itkShortestPathImageFilter.h +++ b/Modules/GraphAlgorithms/itkShortestPathImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathImageFilter_h #define __itkShortestPathImageFilter_h diff --git a/Modules/GraphAlgorithms/itkShortestPathImageFilter.txx b/Modules/GraphAlgorithms/itkShortestPathImageFilter.txx index 720c1cb9db5..73fee98147d 100644 --- a/Modules/GraphAlgorithms/itkShortestPathImageFilter.txx +++ b/Modules/GraphAlgorithms/itkShortestPathImageFilter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathImageFilter_txx #define __itkShortestPathImageFilter_txx diff --git a/Modules/GraphAlgorithms/itkShortestPathNode.cpp b/Modules/GraphAlgorithms/itkShortestPathNode.cpp index 81d8dad31b7..9f4499b01ca 100644 --- a/Modules/GraphAlgorithms/itkShortestPathNode.cpp +++ b/Modules/GraphAlgorithms/itkShortestPathNode.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkShortestPathNode.h" namespace itk diff --git a/Modules/GraphAlgorithms/itkShortestPathNode.h b/Modules/GraphAlgorithms/itkShortestPathNode.h index 61ee6bf1e95..181444788d9 100644 --- a/Modules/GraphAlgorithms/itkShortestPathNode.h +++ b/Modules/GraphAlgorithms/itkShortestPathNode.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkShortestPathNode_h_ #define __itkShortestPathNode_h_ diff --git a/Modules/IGT/Algorithms/mitkIGTLMessageToNavigationDataFilter.cpp b/Modules/IGT/Algorithms/mitkIGTLMessageToNavigationDataFilter.cpp index e1fa2696698..d3f96241a6f 100644 --- a/Modules/IGT/Algorithms/mitkIGTLMessageToNavigationDataFilter.cpp +++ b/Modules/IGT/Algorithms/mitkIGTLMessageToNavigationDataFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLMessageToNavigationDataFilter.h" #include "igtlTrackingDataMessage.h" diff --git a/Modules/IGT/Algorithms/mitkIGTLMessageToNavigationDataFilter.h b/Modules/IGT/Algorithms/mitkIGTLMessageToNavigationDataFilter.h index 4c356647043..1e0199662c3 100644 --- a/Modules/IGT/Algorithms/mitkIGTLMessageToNavigationDataFilter.h +++ b/Modules/IGT/Algorithms/mitkIGTLMessageToNavigationDataFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOPENIGTLINKMESSAGETONAVIGATIONDATAFILTER_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataDelayFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataDelayFilter.cpp index 1b0c4533dcd..2a810321aff 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataDelayFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataDelayFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataDelayFilter.h" @@ -76,4 +72,4 @@ void mitk::NavigationDataDelayFilter::GenerateData() output->Graft(input); // First, copy all information from input to output output->SetDataValid(true); // operation was successful, therefore data of output is valid. } -} \ No newline at end of file +} diff --git a/Modules/IGT/Algorithms/mitkNavigationDataDelayFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataDelayFilter.h index c5ba52154e0..24d4f1d00a8 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataDelayFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataDelayFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataDelayFilter_H #define MITKNavigationDataDelayFilter_H diff --git a/Modules/IGT/Algorithms/mitkNavigationDataDisplacementFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataDisplacementFilter.cpp index 2d5b96caa77..c9e428570e3 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataDisplacementFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataDisplacementFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataDisplacementFilter.h" #include "mitkPropertyList.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataDisplacementFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataDisplacementFilter.h index d1ae1695a4e..08396da19fc 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataDisplacementFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataDisplacementFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataDisplacementFilter_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataEvaluationFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataEvaluationFilter.cpp index d80a29b8590..6331eb953b5 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataEvaluationFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataEvaluationFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataEvaluationFilter.h" #include diff --git a/Modules/IGT/Algorithms/mitkNavigationDataEvaluationFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataEvaluationFilter.h index e68fda18570..bfd82adfe81 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataEvaluationFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataEvaluationFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataEvaluationFilter_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataLandmarkTransformFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataLandmarkTransformFilter.cpp index 9cb44785b0d..1b63bc4b286 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataLandmarkTransformFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataLandmarkTransformFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataLandmarkTransformFilter.h" #include "itkIndent.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataLandmarkTransformFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataLandmarkTransformFilter.h index 77ebde72551..00d16e2fa8e 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataLandmarkTransformFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataLandmarkTransformFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataLandmarkTransformFilter_H_HEADER_INCLUDED_ #define MITKNavigationDataLandmarkTransformFilter_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataPassThroughFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataPassThroughFilter.cpp index 02ec6a838b7..b9f41bb37d9 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataPassThroughFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataPassThroughFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataPassThroughFilter.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataPassThroughFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataPassThroughFilter.h index da0674fc00c..f75bc62a273 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataPassThroughFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataPassThroughFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NAVIGATIONDATAPASSTHROUGHFILTER_H #define NAVIGATIONDATAPASSTHROUGHFILTER_H diff --git a/Modules/IGT/Algorithms/mitkNavigationDataReferenceTransformFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataReferenceTransformFilter.cpp index 0ae6e810558..15ebff4f2ab 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataReferenceTransformFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataReferenceTransformFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataReferenceTransformFilter.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataReferenceTransformFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataReferenceTransformFilter.h index b337e4e94fb..2afe703aa7e 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataReferenceTransformFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataReferenceTransformFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataReferenceTransformFilter_H_HEADER_INCLUDED_ #define MITKNavigationDataReferenceTransformFilter_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataSmoothingFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataSmoothingFilter.cpp index df0cce56d3d..832b59ea9fd 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataSmoothingFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataSmoothingFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataSmoothingFilter.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataSmoothingFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataSmoothingFilter.h index 18dcc3a915e..4c8139db8e2 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataSmoothingFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataSmoothingFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataSmoothingFilter_H_HEADER_INCLUDED_ @@ -61,4 +57,4 @@ namespace mitk { }; } // namespace mitk -#endif /* MITKNavigationDataSmoothingFilter_H_HEADER_INCLUDED_ */ \ No newline at end of file +#endif /* MITKNavigationDataSmoothingFilter_H_HEADER_INCLUDED_ */ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataToIGTLMessageFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataToIGTLMessageFilter.cpp index bed9cf1f823..300ed54246c 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataToIGTLMessageFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataToIGTLMessageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataToIGTLMessageFilter.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataToIGTLMessageFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataToIGTLMessageFilter.h index a3545284e6c..c7d5b1c48a5 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataToIGTLMessageFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataToIGTLMessageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKNAVIGATIONDATATOIGTLMessageFILTER_H__ #define _MITKNAVIGATIONDATATOIGTLMessageFILTER_H__ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataToMessageFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataToMessageFilter.cpp index 5f9eb778ef5..41f24a3d0ac 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataToMessageFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataToMessageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataToMessageFilter.h" #include "mitkPropertyList.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataToMessageFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataToMessageFilter.h index e99a81a4cdc..de80d3fa04a 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataToMessageFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataToMessageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNAVIGATIONDATATOMESSAGEFILTER_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataToNavigationDataFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataToNavigationDataFilter.cpp index 09d7e3a00ef..bbf1dc95df0 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataToNavigationDataFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataToNavigationDataFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataToNavigationDataFilter.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataToNavigationDataFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataToNavigationDataFilter.h index 822a422b831..91e317b5739 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataToNavigationDataFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataToNavigationDataFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNNAVIGATIONDATATONAVIGATIONDATAFILTER_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataToPointSetFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataToPointSetFilter.cpp index c45e2b73527..98b562bfa96 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataToPointSetFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataToPointSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataToPointSetFilter.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataToPointSetFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataToPointSetFilter.h index fe30aa3fca9..290c989a167 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataToPointSetFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataToPointSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKNAVIGATIONDATATOPOINTSETFILTER_H__ #define _MITKNAVIGATIONDATATOPOINTSETFILTER_H__ diff --git a/Modules/IGT/Algorithms/mitkNavigationDataTransformFilter.cpp b/Modules/IGT/Algorithms/mitkNavigationDataTransformFilter.cpp index 9dd8443a325..e5d4112f455 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataTransformFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNavigationDataTransformFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataTransformFilter.h" diff --git a/Modules/IGT/Algorithms/mitkNavigationDataTransformFilter.h b/Modules/IGT/Algorithms/mitkNavigationDataTransformFilter.h index ae85905e704..0e36347c353 100644 --- a/Modules/IGT/Algorithms/mitkNavigationDataTransformFilter.h +++ b/Modules/IGT/Algorithms/mitkNavigationDataTransformFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataTransformFilter_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Algorithms/mitkNeedleProjectionFilter.cpp b/Modules/IGT/Algorithms/mitkNeedleProjectionFilter.cpp index b9ba1279346..acb9efb2e33 100644 --- a/Modules/IGT/Algorithms/mitkNeedleProjectionFilter.cpp +++ b/Modules/IGT/Algorithms/mitkNeedleProjectionFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkNeedleProjectionFilter.h" diff --git a/Modules/IGT/Algorithms/mitkNeedleProjectionFilter.h b/Modules/IGT/Algorithms/mitkNeedleProjectionFilter.h index ff3e540a6fc..13021ac91a1 100644 --- a/Modules/IGT/Algorithms/mitkNeedleProjectionFilter.h +++ b/Modules/IGT/Algorithms/mitkNeedleProjectionFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NEEDLEPROJECTIONFILTER_H_INCLUDED #define NEEDLEPROJECTIONFILTER_H_INCLUDED diff --git a/Modules/IGT/Algorithms/mitkPivotCalibration.cpp b/Modules/IGT/Algorithms/mitkPivotCalibration.cpp index 97ba4098dc0..47a70d0f7a0 100644 --- a/Modules/IGT/Algorithms/mitkPivotCalibration.cpp +++ b/Modules/IGT/Algorithms/mitkPivotCalibration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPivotCalibration.h" #include "vnl/algo/vnl_svd.h" @@ -80,7 +76,7 @@ bool mitk::PivotCalibration::ComputePivotPoint() { t = _CheckedTransforms.at(i)->GetPosition().GetVnlVector();// t = the current position of the tracked sensor t *= -1; - b.update(t, currentRow); //b = combines the position for each collected transform in one column vector + b.update(t, currentRow); //b = combines the position for each collected transform in one column vector R = _CheckedTransforms.at(i)->GetOrientation().rotation_matrix_transpose().transpose(); // R = the current rotation of the tracked sensor, *rotation_matrix_transpose().transpose() is used to obtain original matrix A.update(R, currentRow, 0); //A = the matrix which stores the rotations for each collected transform and -I A.update(minusI, currentRow, 3); @@ -100,7 +96,7 @@ bool mitk::PivotCalibration::ComputePivotPoint() { x = svdA.solve(b); //x = the resulting pivot point - m_ResultRMSError = (A * x - b).rms(); //the root mean sqaure error of the computation + m_ResultRMSError = (A * x - b).rms(); //the root mean sqaure error of the computation //sets the Pivot Point m_ResultPivotPoint[0] = x[0]; diff --git a/Modules/IGT/Algorithms/mitkPivotCalibration.h b/Modules/IGT/Algorithms/mitkPivotCalibration.h index 9758ac391c9..d08fafce1c2 100644 --- a/Modules/IGT/Algorithms/mitkPivotCalibration.h +++ b/Modules/IGT/Algorithms/mitkPivotCalibration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PIVOTCALIBRATION_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Common/mitkIGTTimeStamp.cpp b/Modules/IGT/Common/mitkIGTTimeStamp.cpp index 5d4add9551f..ddb0dfb030d 100644 --- a/Modules/IGT/Common/mitkIGTTimeStamp.cpp +++ b/Modules/IGT/Common/mitkIGTTimeStamp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTTimeStamp.h" #include diff --git a/Modules/IGT/Common/mitkIGTTimeStamp.h b/Modules/IGT/Common/mitkIGTTimeStamp.h index 5a4bc9a361b..5cc3223c6ba 100644 --- a/Modules/IGT/Common/mitkIGTTimeStamp.h +++ b/Modules/IGT/Common/mitkIGTTimeStamp.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTIMESTAMP_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Common/mitkSerialCommunication.cpp b/Modules/IGT/Common/mitkSerialCommunication.cpp index 242d81ee90f..3d6104df879 100644 --- a/Modules/IGT/Common/mitkSerialCommunication.cpp +++ b/Modules/IGT/Common/mitkSerialCommunication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSerialCommunication.h" diff --git a/Modules/IGT/Common/mitkSerialCommunication.h b/Modules/IGT/Common/mitkSerialCommunication.h index 06147a9dcdf..c906d58fa1c 100644 --- a/Modules/IGT/Common/mitkSerialCommunication.h +++ b/Modules/IGT/Common/mitkSerialCommunication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSERIALCOMMUNICATION_H_HEADER_INCLUDED_ #define MITKSERIALCOMMUNICATION_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Common/mitkTrackingTypes.h b/Modules/IGT/Common/mitkTrackingTypes.h index 392ef3b611c..1cc98785321 100644 --- a/Modules/IGT/Common/mitkTrackingTypes.h +++ b/Modules/IGT/Common/mitkTrackingTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTRACKINGTYPES_H_HEADER_INCLUDED_ #define MITKTRACKINGTYPES_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/DataManagement/mitkNavigationDataSource.cpp b/Modules/IGT/DataManagement/mitkNavigationDataSource.cpp index 7ebe9b002cd..68d16361439 100644 --- a/Modules/IGT/DataManagement/mitkNavigationDataSource.cpp +++ b/Modules/IGT/DataManagement/mitkNavigationDataSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataSource.h" #include "mitkUIDGenerator.h" diff --git a/Modules/IGT/DataManagement/mitkNavigationDataSource.h b/Modules/IGT/DataManagement/mitkNavigationDataSource.h index c1d8963286c..f499377da03 100644 --- a/Modules/IGT/DataManagement/mitkNavigationDataSource.h +++ b/Modules/IGT/DataManagement/mitkNavigationDataSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNAVIGATIONDATASOURCE_H_HEADER_INCLUDED_ @@ -199,8 +195,8 @@ namespace mitk { bool m_IsFrozen; - /** Holds the metadata of all tools identified by the tool name. - * There is no need to set the metadata of the tools, so not + /** Holds the metadata of all tools identified by the tool name. + * There is no need to set the metadata of the tools, so not * every tool has metadata available. */ NavigationToolStorage::Pointer m_ToolMetaDataCollection; diff --git a/Modules/IGT/DataManagement/mitkNavigationTool.cpp b/Modules/IGT/DataManagement/mitkNavigationTool.cpp index c4acc69d8e4..1af990ee8fb 100644 --- a/Modules/IGT/DataManagement/mitkNavigationTool.cpp +++ b/Modules/IGT/DataManagement/mitkNavigationTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationTool.h" #include "mitkIGTException.h" diff --git a/Modules/IGT/DataManagement/mitkNavigationTool.h b/Modules/IGT/DataManagement/mitkNavigationTool.h index e8e44a1ebfd..d81a602ed1d 100644 --- a/Modules/IGT/DataManagement/mitkNavigationTool.h +++ b/Modules/IGT/DataManagement/mitkNavigationTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NAVIGATIONTOOL_H_INCLUDED #define NAVIGATIONTOOL_H_INCLUDED @@ -80,8 +76,8 @@ namespace mitk { //Tool Axis definition: /** @return Returns the main tool axis which is defined as the z-coordinate of the tool coordinate system. */ mitk::Point3D GetToolAxis(); - /** Convenience function to define the tool orientation given the main tool axis. As the main tool axis - is defined as the negative z-axis of the tool coordinate system, the tool orientation is calculated as + /** Convenience function to define the tool orientation given the main tool axis. As the main tool axis + is defined as the negative z-axis of the tool coordinate system, the tool orientation is calculated as a rotation of the actual tool axis in tool coordinates as obtained by a calibration to the main axis.*/ void SetToolAxis(mitk::Point3D toolAxis); diff --git a/Modules/IGT/DataManagement/mitkNavigationToolStorage.cpp b/Modules/IGT/DataManagement/mitkNavigationToolStorage.cpp index 85b8e27465e..f4e40bd2acd 100644 --- a/Modules/IGT/DataManagement/mitkNavigationToolStorage.cpp +++ b/Modules/IGT/DataManagement/mitkNavigationToolStorage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationToolStorage.h" diff --git a/Modules/IGT/DataManagement/mitkNavigationToolStorage.h b/Modules/IGT/DataManagement/mitkNavigationToolStorage.h index 7217ad99e90..e737db363dc 100644 --- a/Modules/IGT/DataManagement/mitkNavigationToolStorage.h +++ b/Modules/IGT/DataManagement/mitkNavigationToolStorage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NAVIGATIONTOOLSTORAGE_H_INCLUDED #define NAVIGATIONTOOLSTORAGE_H_INCLUDED diff --git a/Modules/IGT/DataManagement/mitkTrackingDeviceSource.cpp b/Modules/IGT/DataManagement/mitkTrackingDeviceSource.cpp index 40d33caa070..e664597eb39 100644 --- a/Modules/IGT/DataManagement/mitkTrackingDeviceSource.cpp +++ b/Modules/IGT/DataManagement/mitkTrackingDeviceSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDeviceSource.h" diff --git a/Modules/IGT/DataManagement/mitkTrackingDeviceSource.h b/Modules/IGT/DataManagement/mitkTrackingDeviceSource.h index ae746073a20..5fe71f207f0 100644 --- a/Modules/IGT/DataManagement/mitkTrackingDeviceSource.h +++ b/Modules/IGT/DataManagement/mitkTrackingDeviceSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTRACKINGDEVICESOURCE_H_HEADER_INCLUDED_ #define MITKTRACKINGDEVICESOURCE_H_HEADER_INCLUDED_ @@ -132,4 +128,4 @@ namespace mitk { mitk::TrackingDevice::Pointer m_TrackingDevice; ///< the tracking device that is used as a source for this filter object }; } // namespace mitk -#endif /* MITKTrackingDeviceSource_H_HEADER_INCLUDED_ */ \ No newline at end of file +#endif /* MITKTrackingDeviceSource_H_HEADER_INCLUDED_ */ diff --git a/Modules/IGT/DataManagement/mitkTrackingDeviceSourceConfigurator.cpp b/Modules/IGT/DataManagement/mitkTrackingDeviceSourceConfigurator.cpp index 43d5eb3dd24..ef4a10738bf 100644 --- a/Modules/IGT/DataManagement/mitkTrackingDeviceSourceConfigurator.cpp +++ b/Modules/IGT/DataManagement/mitkTrackingDeviceSourceConfigurator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDeviceSourceConfigurator.h" diff --git a/Modules/IGT/DataManagement/mitkTrackingDeviceSourceConfigurator.h b/Modules/IGT/DataManagement/mitkTrackingDeviceSourceConfigurator.h index 189f75bc0a7..5fce6697449 100644 --- a/Modules/IGT/DataManagement/mitkTrackingDeviceSourceConfigurator.h +++ b/Modules/IGT/DataManagement/mitkTrackingDeviceSourceConfigurator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTRACKINGDEVICESOURCECONFIGURATOR_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/DataManagement/mitkTrackingDeviceTypeCollection.cpp b/Modules/IGT/DataManagement/mitkTrackingDeviceTypeCollection.cpp index fbec3adf310..d771277f4a3 100644 --- a/Modules/IGT/DataManagement/mitkTrackingDeviceTypeCollection.cpp +++ b/Modules/IGT/DataManagement/mitkTrackingDeviceTypeCollection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDeviceTypeCollection.h" diff --git a/Modules/IGT/DataManagement/mitkTrackingDeviceTypeCollection.h b/Modules/IGT/DataManagement/mitkTrackingDeviceTypeCollection.h index d1bb2971cd0..59f2daf750c 100644 --- a/Modules/IGT/DataManagement/mitkTrackingDeviceTypeCollection.h +++ b/Modules/IGT/DataManagement/mitkTrackingDeviceTypeCollection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef TRACKINGDEVICETYPECOLLECTION_H_INCLUDED #define TRACKINGDEVICETYPECOLLECTION_H_INCLUDED diff --git a/Modules/IGT/DataManagement/mitkTrackingDeviceTypeInformation.h b/Modules/IGT/DataManagement/mitkTrackingDeviceTypeInformation.h index de00a367ef5..3956a91aa7d 100644 --- a/Modules/IGT/DataManagement/mitkTrackingDeviceTypeInformation.h +++ b/Modules/IGT/DataManagement/mitkTrackingDeviceTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef TRACKINGDEVICETYPEINFORMATION_H_INCLUDED #define TRACKINGDEVICETYPEINFORMATION_H_INCLUDED diff --git a/Modules/IGT/ExceptionHandling/mitkIGTException.cpp b/Modules/IGT/ExceptionHandling/mitkIGTException.cpp index b2c4cefa26e..a3a683c9b3e 100644 --- a/Modules/IGT/ExceptionHandling/mitkIGTException.cpp +++ b/Modules/IGT/ExceptionHandling/mitkIGTException.cpp @@ -1,17 +1,13 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTException.h" diff --git a/Modules/IGT/ExceptionHandling/mitkIGTException.h b/Modules/IGT/ExceptionHandling/mitkIGTException.h index 91be8e00dbb..0e65cf4548f 100644 --- a/Modules/IGT/ExceptionHandling/mitkIGTException.h +++ b/Modules/IGT/ExceptionHandling/mitkIGTException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTEXCEPTION_H_INCLUDED #define IGTEXCEPTION_H_INCLUDED diff --git a/Modules/IGT/ExceptionHandling/mitkIGTHardwareException.cpp b/Modules/IGT/ExceptionHandling/mitkIGTHardwareException.cpp index 84bf2a068bc..1a8acf299ee 100644 --- a/Modules/IGT/ExceptionHandling/mitkIGTHardwareException.cpp +++ b/Modules/IGT/ExceptionHandling/mitkIGTHardwareException.cpp @@ -1,17 +1,13 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTHardwareException.h" diff --git a/Modules/IGT/ExceptionHandling/mitkIGTHardwareException.h b/Modules/IGT/ExceptionHandling/mitkIGTHardwareException.h index 4201602caa9..22e961b00e6 100644 --- a/Modules/IGT/ExceptionHandling/mitkIGTHardwareException.h +++ b/Modules/IGT/ExceptionHandling/mitkIGTHardwareException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTHARDWAREEXCEPTION_H_INCLUDED #define IGTHARDWAREEXCEPTION_H_INCLUDED diff --git a/Modules/IGT/ExceptionHandling/mitkIGTIOException.cpp b/Modules/IGT/ExceptionHandling/mitkIGTIOException.cpp index 833d81a9eb2..d5d76981612 100644 --- a/Modules/IGT/ExceptionHandling/mitkIGTIOException.cpp +++ b/Modules/IGT/ExceptionHandling/mitkIGTIOException.cpp @@ -1,17 +1,13 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTIOException.h" diff --git a/Modules/IGT/ExceptionHandling/mitkIGTIOException.h b/Modules/IGT/ExceptionHandling/mitkIGTIOException.h index 570cdae2e0f..58b33117692 100644 --- a/Modules/IGT/ExceptionHandling/mitkIGTIOException.h +++ b/Modules/IGT/ExceptionHandling/mitkIGTIOException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTIOEXCEPTION_H_INCLUDED #define IGTIOEXCEPTION_H_INCLUDED diff --git a/Modules/IGT/IO/mitkNavigationDataPlayer.cpp b/Modules/IGT/IO/mitkNavigationDataPlayer.cpp index 7bdd597660d..6a0773f9c84 100644 --- a/Modules/IGT/IO/mitkNavigationDataPlayer.cpp +++ b/Modules/IGT/IO/mitkNavigationDataPlayer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataPlayer.h" diff --git a/Modules/IGT/IO/mitkNavigationDataPlayer.h b/Modules/IGT/IO/mitkNavigationDataPlayer.h index 5043b00115f..3f916dcc4bc 100644 --- a/Modules/IGT/IO/mitkNavigationDataPlayer.h +++ b/Modules/IGT/IO/mitkNavigationDataPlayer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataPlayer_H_HEADER_INCLUDED_ #define MITKNavigationDataPlayer_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/IO/mitkNavigationDataPlayerBase.cpp b/Modules/IGT/IO/mitkNavigationDataPlayerBase.cpp index 8075810bd28..c8cddbd3f0b 100644 --- a/Modules/IGT/IO/mitkNavigationDataPlayerBase.cpp +++ b/Modules/IGT/IO/mitkNavigationDataPlayerBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataPlayerBase.h" diff --git a/Modules/IGT/IO/mitkNavigationDataPlayerBase.h b/Modules/IGT/IO/mitkNavigationDataPlayerBase.h index cea7b5be3a4..dedc0fa109b 100644 --- a/Modules/IGT/IO/mitkNavigationDataPlayerBase.h +++ b/Modules/IGT/IO/mitkNavigationDataPlayerBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataPlayerBase_H_HEADER_INCLUDED_ #define MITKNavigationDataPlayerBase_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/IO/mitkNavigationDataReaderInterface.cpp b/Modules/IGT/IO/mitkNavigationDataReaderInterface.cpp index 1e89800b773..0b1ea5498cc 100644 --- a/Modules/IGT/IO/mitkNavigationDataReaderInterface.cpp +++ b/Modules/IGT/IO/mitkNavigationDataReaderInterface.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataReaderInterface.h" diff --git a/Modules/IGT/IO/mitkNavigationDataReaderInterface.h b/Modules/IGT/IO/mitkNavigationDataReaderInterface.h index 9cda82b2d0d..1775c6ba632 100644 --- a/Modules/IGT/IO/mitkNavigationDataReaderInterface.h +++ b/Modules/IGT/IO/mitkNavigationDataReaderInterface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataReaderInterface_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/IO/mitkNavigationDataRecorder.cpp b/Modules/IGT/IO/mitkNavigationDataRecorder.cpp index d88e4bbf32c..a888f5eb402 100644 --- a/Modules/IGT/IO/mitkNavigationDataRecorder.cpp +++ b/Modules/IGT/IO/mitkNavigationDataRecorder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataRecorder.h" #include diff --git a/Modules/IGT/IO/mitkNavigationDataRecorder.h b/Modules/IGT/IO/mitkNavigationDataRecorder.h index 2faf3cfac96..dcc4aa6c60b 100644 --- a/Modules/IGT/IO/mitkNavigationDataRecorder.h +++ b/Modules/IGT/IO/mitkNavigationDataRecorder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_NavigationDataRecorder_H #define _MITK_NavigationDataRecorder_H diff --git a/Modules/IGT/IO/mitkNavigationDataRecorderDeprecated.cpp b/Modules/IGT/IO/mitkNavigationDataRecorderDeprecated.cpp index 02bc8cea67c..c10728cf928 100644 --- a/Modules/IGT/IO/mitkNavigationDataRecorderDeprecated.cpp +++ b/Modules/IGT/IO/mitkNavigationDataRecorderDeprecated.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataRecorderDeprecated.h" #include diff --git a/Modules/IGT/IO/mitkNavigationDataRecorderDeprecated.h b/Modules/IGT/IO/mitkNavigationDataRecorderDeprecated.h index c113344c20f..c9671a8c14b 100644 --- a/Modules/IGT/IO/mitkNavigationDataRecorderDeprecated.h +++ b/Modules/IGT/IO/mitkNavigationDataRecorderDeprecated.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_NavigationDataRecorderDeprecated_H #define _MITK_NavigationDataRecorderDeprecated_H diff --git a/Modules/IGT/IO/mitkNavigationDataSequentialPlayer.cpp b/Modules/IGT/IO/mitkNavigationDataSequentialPlayer.cpp index 40306874177..400515fb4e7 100644 --- a/Modules/IGT/IO/mitkNavigationDataSequentialPlayer.cpp +++ b/Modules/IGT/IO/mitkNavigationDataSequentialPlayer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataSequentialPlayer.h" diff --git a/Modules/IGT/IO/mitkNavigationDataSequentialPlayer.h b/Modules/IGT/IO/mitkNavigationDataSequentialPlayer.h index beb1318dc1f..5299ee7ce1c 100644 --- a/Modules/IGT/IO/mitkNavigationDataSequentialPlayer.h +++ b/Modules/IGT/IO/mitkNavigationDataSequentialPlayer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataSequentialPlayer_H_HEADER_INCLUDED_ #define MITKNavigationDataSequentialPlayer_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/IO/mitkNavigationToolReader.cpp b/Modules/IGT/IO/mitkNavigationToolReader.cpp index 09d061ea50e..89fa7adeac5 100644 --- a/Modules/IGT/IO/mitkNavigationToolReader.cpp +++ b/Modules/IGT/IO/mitkNavigationToolReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Poco headers #include diff --git a/Modules/IGT/IO/mitkNavigationToolReader.h b/Modules/IGT/IO/mitkNavigationToolReader.h index 2df07332e1d..7813b3c0079 100644 --- a/Modules/IGT/IO/mitkNavigationToolReader.h +++ b/Modules/IGT/IO/mitkNavigationToolReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NAVIGATIONTOOLREADER_H_INCLUDED #define NAVIGATIONTOOLREADER_H_INCLUDED diff --git a/Modules/IGT/IO/mitkNavigationToolStorageDeserializer.cpp b/Modules/IGT/IO/mitkNavigationToolStorageDeserializer.cpp index 1b6751460de..12cb5acef9c 100644 --- a/Modules/IGT/IO/mitkNavigationToolStorageDeserializer.cpp +++ b/Modules/IGT/IO/mitkNavigationToolStorageDeserializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Poco headers #include "Poco/Zip/Decompress.h" diff --git a/Modules/IGT/IO/mitkNavigationToolStorageDeserializer.h b/Modules/IGT/IO/mitkNavigationToolStorageDeserializer.h index b6918f8f061..bc3311c5907 100644 --- a/Modules/IGT/IO/mitkNavigationToolStorageDeserializer.h +++ b/Modules/IGT/IO/mitkNavigationToolStorageDeserializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NAVIGATIONTOOLSTORAGEDESERIALIZER_H_INCLUDED #define NAVIGATIONTOOLSTORAGEDESERIALIZER_H_INCLUDED diff --git a/Modules/IGT/IO/mitkNavigationToolStorageSerializer.cpp b/Modules/IGT/IO/mitkNavigationToolStorageSerializer.cpp index 551bfe10f5f..cddd51bf9b1 100644 --- a/Modules/IGT/IO/mitkNavigationToolStorageSerializer.cpp +++ b/Modules/IGT/IO/mitkNavigationToolStorageSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationToolStorageSerializer.h" #include "mitkNavigationToolWriter.h" diff --git a/Modules/IGT/IO/mitkNavigationToolStorageSerializer.h b/Modules/IGT/IO/mitkNavigationToolStorageSerializer.h index 9ea4470ec8a..b4b6fdf2c20 100644 --- a/Modules/IGT/IO/mitkNavigationToolStorageSerializer.h +++ b/Modules/IGT/IO/mitkNavigationToolStorageSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NAVIGATIONTOOLSTORAGESERIALIZER_H_INCLUDED #define NAVIGATIONTOOLSTORAGESERIALIZER_H_INCLUDED diff --git a/Modules/IGT/IO/mitkNavigationToolWriter.cpp b/Modules/IGT/IO/mitkNavigationToolWriter.cpp index c7d8d58574d..112a26ed443 100644 --- a/Modules/IGT/IO/mitkNavigationToolWriter.cpp +++ b/Modules/IGT/IO/mitkNavigationToolWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Poco headers #include @@ -108,7 +104,7 @@ mitk::DataNode::Pointer mitk::NavigationToolWriter::ConvertToDataNode(mitk::Navi thisTool = mitk::DataNode::New(); thisTool->SetName("none"); } - + //Identifier thisTool->AddProperty("identifier",mitk::StringProperty::New(Tool->GetIdentifier().c_str()), nullptr, true); //Serial Number diff --git a/Modules/IGT/IO/mitkNavigationToolWriter.h b/Modules/IGT/IO/mitkNavigationToolWriter.h index 7b1bb391499..e34ae0b9a17 100644 --- a/Modules/IGT/IO/mitkNavigationToolWriter.h +++ b/Modules/IGT/IO/mitkNavigationToolWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NAVIGATIONTOOLWRITER_H_INCLUDED #define NAVIGATIONTOOLWRITER_H_INCLUDED diff --git a/Modules/IGT/Rendering/mitkCameraVisualization.cpp b/Modules/IGT/Rendering/mitkCameraVisualization.cpp index d9b055ee1d6..360045d0396 100644 --- a/Modules/IGT/Rendering/mitkCameraVisualization.cpp +++ b/Modules/IGT/Rendering/mitkCameraVisualization.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCameraVisualization.h" diff --git a/Modules/IGT/Rendering/mitkCameraVisualization.h b/Modules/IGT/Rendering/mitkCameraVisualization.h index d808461f1b8..1717a07b49e 100644 --- a/Modules/IGT/Rendering/mitkCameraVisualization.h +++ b/Modules/IGT/Rendering/mitkCameraVisualization.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CAMERAVISUALIZATION_H_INCLUDED #define CAMERAVISUALIZATION_H_INCLUDED diff --git a/Modules/IGT/Rendering/mitkNavigationDataObjectVisualizationFilter.cpp b/Modules/IGT/Rendering/mitkNavigationDataObjectVisualizationFilter.cpp index d09028d2fba..413a67888f1 100644 --- a/Modules/IGT/Rendering/mitkNavigationDataObjectVisualizationFilter.cpp +++ b/Modules/IGT/Rendering/mitkNavigationDataObjectVisualizationFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataObjectVisualizationFilter.h" #include "mitkDataStorage.h" diff --git a/Modules/IGT/Rendering/mitkNavigationDataObjectVisualizationFilter.h b/Modules/IGT/Rendering/mitkNavigationDataObjectVisualizationFilter.h index cc002dd6c33..baaeef99b88 100644 --- a/Modules/IGT/Rendering/mitkNavigationDataObjectVisualizationFilter.h +++ b/Modules/IGT/Rendering/mitkNavigationDataObjectVisualizationFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNAVIGATIONDATAOBJECTVISUALIZATIONFILTER_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Rendering/mitkNavigationDataSliceVisualization.cpp b/Modules/IGT/Rendering/mitkNavigationDataSliceVisualization.cpp index 47bdf6326ab..19d87f5c386 100644 --- a/Modules/IGT/Rendering/mitkNavigationDataSliceVisualization.cpp +++ b/Modules/IGT/Rendering/mitkNavigationDataSliceVisualization.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataSliceVisualization.h" #include "mitkBaseRenderer.h" diff --git a/Modules/IGT/Rendering/mitkNavigationDataSliceVisualization.h b/Modules/IGT/Rendering/mitkNavigationDataSliceVisualization.h index a3d84e1f767..03d42fba8c4 100644 --- a/Modules/IGT/Rendering/mitkNavigationDataSliceVisualization.h +++ b/Modules/IGT/Rendering/mitkNavigationDataSliceVisualization.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNAVIGATIONDATASLICEVISUALIZATION_H_HEADER_INCLUDED_ #define MITKNAVIGATIONDATASLICEVISUALIZATION_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Rendering/mitkNavigationDataVisualizationFilter.cpp b/Modules/IGT/Rendering/mitkNavigationDataVisualizationFilter.cpp index ad0d6ee033c..45e30e7529b 100644 --- a/Modules/IGT/Rendering/mitkNavigationDataVisualizationFilter.cpp +++ b/Modules/IGT/Rendering/mitkNavigationDataVisualizationFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataVisualizationFilter.h" diff --git a/Modules/IGT/Rendering/mitkNavigationDataVisualizationFilter.h b/Modules/IGT/Rendering/mitkNavigationDataVisualizationFilter.h index f00bd2395d7..8c6e4030eaf 100644 --- a/Modules/IGT/Rendering/mitkNavigationDataVisualizationFilter.h +++ b/Modules/IGT/Rendering/mitkNavigationDataVisualizationFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NAVIGATIONDATAVISUALIZATIONFILTER_H_INCLUDED #define NAVIGATIONDATAVISUALIZATIONFILTER_H_INCLUDED diff --git a/Modules/IGT/Testing/mitkCameraVisualizationTest.cpp b/Modules/IGT/Testing/mitkCameraVisualizationTest.cpp index 6fe051fafd4..238e3ffc72a 100644 --- a/Modules/IGT/Testing/mitkCameraVisualizationTest.cpp +++ b/Modules/IGT/Testing/mitkCameraVisualizationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCameraVisualization.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkClaronInterfaceTest.cpp b/Modules/IGT/Testing/mitkClaronInterfaceTest.cpp index 4da70281a35..3b55a22773f 100644 --- a/Modules/IGT/Testing/mitkClaronInterfaceTest.cpp +++ b/Modules/IGT/Testing/mitkClaronInterfaceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClaronInterface.h" diff --git a/Modules/IGT/Testing/mitkClaronToolTest.cpp b/Modules/IGT/Testing/mitkClaronToolTest.cpp index 042470b9ac1..d88be88ff78 100644 --- a/Modules/IGT/Testing/mitkClaronToolTest.cpp +++ b/Modules/IGT/Testing/mitkClaronToolTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClaronTool.h" #include "mitkTestingMacros.h" diff --git a/Modules/IGT/Testing/mitkClaronTrackingDeviceHardwareTest.cpp b/Modules/IGT/Testing/mitkClaronTrackingDeviceHardwareTest.cpp index bdb06eb50a1..3c017adbeaa 100644 --- a/Modules/IGT/Testing/mitkClaronTrackingDeviceHardwareTest.cpp +++ b/Modules/IGT/Testing/mitkClaronTrackingDeviceHardwareTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClaronTrackingDevice.h" #include "mitkClaronTool.h" diff --git a/Modules/IGT/Testing/mitkClaronTrackingDeviceTest.cpp b/Modules/IGT/Testing/mitkClaronTrackingDeviceTest.cpp index 0dd430b58a0..7715818d113 100644 --- a/Modules/IGT/Testing/mitkClaronTrackingDeviceTest.cpp +++ b/Modules/IGT/Testing/mitkClaronTrackingDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClaronTrackingDevice.h" #include "mitkClaronTool.h" diff --git a/Modules/IGT/Testing/mitkNDIAuroraHardwareTest.cpp b/Modules/IGT/Testing/mitkNDIAuroraHardwareTest.cpp index da3b1593d46..669e39a919e 100644 --- a/Modules/IGT/Testing/mitkNDIAuroraHardwareTest.cpp +++ b/Modules/IGT/Testing/mitkNDIAuroraHardwareTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDITrackingDevice.h" #include "mitkNDIPassiveTool.h" diff --git a/Modules/IGT/Testing/mitkNDIPassiveToolTest.cpp b/Modules/IGT/Testing/mitkNDIPassiveToolTest.cpp index 83c0dc4ca8f..32cf30d757e 100644 --- a/Modules/IGT/Testing/mitkNDIPassiveToolTest.cpp +++ b/Modules/IGT/Testing/mitkNDIPassiveToolTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDIPassiveTool.h" #include "mitkTestingMacros.h" diff --git a/Modules/IGT/Testing/mitkNDIPolarisHardwareTest.cpp b/Modules/IGT/Testing/mitkNDIPolarisHardwareTest.cpp index b6cc31a4e15..b5f5c8dab3c 100644 --- a/Modules/IGT/Testing/mitkNDIPolarisHardwareTest.cpp +++ b/Modules/IGT/Testing/mitkNDIPolarisHardwareTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDITrackingDevice.h" #include "mitkNDIPassiveTool.h" diff --git a/Modules/IGT/Testing/mitkNDIProtocolTest.cpp b/Modules/IGT/Testing/mitkNDIProtocolTest.cpp index 950a6b74776..fe2f97b55e7 100644 --- a/Modules/IGT/Testing/mitkNDIProtocolTest.cpp +++ b/Modules/IGT/Testing/mitkNDIProtocolTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDIProtocol.h" diff --git a/Modules/IGT/Testing/mitkNDITrackingDeviceTest.cpp b/Modules/IGT/Testing/mitkNDITrackingDeviceTest.cpp index 8225c00c377..ceee55502fa 100644 --- a/Modules/IGT/Testing/mitkNDITrackingDeviceTest.cpp +++ b/Modules/IGT/Testing/mitkNDITrackingDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDITrackingDevice.h" #include "mitkNDIPassiveTool.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataDisplacementFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataDisplacementFilterTest.cpp index 9aca4aa9e7e..3ff25265ceb 100644 --- a/Modules/IGT/Testing/mitkNavigationDataDisplacementFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataDisplacementFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataDisplacementFilter.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataEvaluationFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataEvaluationFilterTest.cpp index c6d68214ef0..fbb06267ec6 100644 --- a/Modules/IGT/Testing/mitkNavigationDataEvaluationFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataEvaluationFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataEvaluationFilter.h" #include "mitkTestingMacros.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataLandmarkTransformFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataLandmarkTransformFilterTest.cpp index e26932362e4..d117efb60ad 100644 --- a/Modules/IGT/Testing/mitkNavigationDataLandmarkTransformFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataLandmarkTransformFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataLandmarkTransformFilter.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataObjectVisualizationFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataObjectVisualizationFilterTest.cpp index 07eadb16cb3..ef5726e4bc0 100644 --- a/Modules/IGT/Testing/mitkNavigationDataObjectVisualizationFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataObjectVisualizationFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataObjectVisualizationFilter.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataPlayerTest.cpp b/Modules/IGT/Testing/mitkNavigationDataPlayerTest.cpp index d09951f9906..311b2ff7ae4 100644 --- a/Modules/IGT/Testing/mitkNavigationDataPlayerTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataPlayerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataPlayer.h" #include "mitkNavigationData.h" @@ -335,7 +331,7 @@ class mitkNavigationDataPlayerTestClass mitk::NavigationDataSet::Pointer navigationDataSet; mitk::NavigationDataReaderXML::Pointer navigationDataReader = mitk::NavigationDataReaderXML::New(); MITK_TEST_FOR_EXCEPTION(mitk::IGTIOException, - navigationDataSet = navigationDataReader->Read("cs:\fsd/$%§²³ffdsd")); + navigationDataSet = navigationDataReader->Read("cs:\fsd/$%§²³ffdsd")); player = mitk::NavigationDataPlayer::New(); player->SetNavigationDataSet( navigationDataSet ); diff --git a/Modules/IGT/Testing/mitkNavigationDataRecorderTest.cpp b/Modules/IGT/Testing/mitkNavigationDataRecorderTest.cpp index 650d84f42d4..800a8c5dbf5 100644 --- a/Modules/IGT/Testing/mitkNavigationDataRecorderTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataRecorderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGT/Testing/mitkNavigationDataReferenceTransformFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataReferenceTransformFilterTest.cpp index 9f256eb2e2a..f76ed9bae0d 100644 --- a/Modules/IGT/Testing/mitkNavigationDataReferenceTransformFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataReferenceTransformFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataReferenceTransformFilter.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataSequentialPlayerTest.cpp b/Modules/IGT/Testing/mitkNavigationDataSequentialPlayerTest.cpp index 7c7c6f2b45e..95de8152ccf 100644 --- a/Modules/IGT/Testing/mitkNavigationDataSequentialPlayerTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataSequentialPlayerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGT/Testing/mitkNavigationDataSetReaderWriterCSVTest.cpp b/Modules/IGT/Testing/mitkNavigationDataSetReaderWriterCSVTest.cpp index e36113465bc..94a1793c074 100644 --- a/Modules/IGT/Testing/mitkNavigationDataSetReaderWriterCSVTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataSetReaderWriterCSVTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //testing headers //#include diff --git a/Modules/IGT/Testing/mitkNavigationDataSetReaderWriterXMLTest.cpp b/Modules/IGT/Testing/mitkNavigationDataSetReaderWriterXMLTest.cpp index 8a5fe804f9c..0b0c306e6a7 100644 --- a/Modules/IGT/Testing/mitkNavigationDataSetReaderWriterXMLTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataSetReaderWriterXMLTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //testing headers //#include diff --git a/Modules/IGT/Testing/mitkNavigationDataSetTest.cpp b/Modules/IGT/Testing/mitkNavigationDataSetTest.cpp index 165730175e1..825633dbf14 100644 --- a/Modules/IGT/Testing/mitkNavigationDataSetTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataSetTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "mitkNavigationData.h" @@ -92,4 +88,4 @@ int mitkNavigationDataSetTest(int /* argc */, char* /*argv*/[]) TestSetAndGet(); MITK_TEST_END(); -} \ No newline at end of file +} diff --git a/Modules/IGT/Testing/mitkNavigationDataSourceTest.cpp b/Modules/IGT/Testing/mitkNavigationDataSourceTest.cpp index ea477e3e272..49f0a83df6c 100644 --- a/Modules/IGT/Testing/mitkNavigationDataSourceTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataSourceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataSource.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataTest.cpp b/Modules/IGT/Testing/mitkNavigationDataTest.cpp index ed581ef1ca8..c29e40af87d 100644 --- a/Modules/IGT/Testing/mitkNavigationDataTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataToIGTLMessageFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataToIGTLMessageFilterTest.cpp index e1d02437e69..1035a1e6c5c 100644 --- a/Modules/IGT/Testing/mitkNavigationDataToIGTLMessageFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataToIGTLMessageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataToIGTLMessageFilter.h" #include "mitkNavigationDataSequentialPlayer.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataToMessageFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataToMessageFilterTest.cpp index 6b36d0a14fb..e4163333fb7 100644 --- a/Modules/IGT/Testing/mitkNavigationDataToMessageFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataToMessageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataToMessageFilter.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataToNavigationDataFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataToNavigationDataFilterTest.cpp index 2890bb539c3..7a5b6dcaf70 100644 --- a/Modules/IGT/Testing/mitkNavigationDataToNavigationDataFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataToNavigationDataFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataToNavigationDataFilter.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataToPointSetFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataToPointSetFilterTest.cpp index 489efc9eab4..aabcfe11711 100644 --- a/Modules/IGT/Testing/mitkNavigationDataToPointSetFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataToPointSetFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataToPointSetFilter.h" #include "mitkNavigationDataSequentialPlayer.h" diff --git a/Modules/IGT/Testing/mitkNavigationDataTransformFilterTest.cpp b/Modules/IGT/Testing/mitkNavigationDataTransformFilterTest.cpp index 9e9b80cdd35..aa38eaf8eb7 100644 --- a/Modules/IGT/Testing/mitkNavigationDataTransformFilterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationDataTransformFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataTransformFilter.h" #include "mitkNavigationData.h" diff --git a/Modules/IGT/Testing/mitkNavigationToolReaderAndWriterTest.cpp b/Modules/IGT/Testing/mitkNavigationToolReaderAndWriterTest.cpp index cf8eee3eb8e..9d3256bf18a 100644 --- a/Modules/IGT/Testing/mitkNavigationToolReaderAndWriterTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationToolReaderAndWriterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Poco headers #include "Poco/Path.h" diff --git a/Modules/IGT/Testing/mitkNavigationToolStorageDeserializerTest.cpp b/Modules/IGT/Testing/mitkNavigationToolStorageDeserializerTest.cpp index c46e77fb3ed..4af78d3341a 100644 --- a/Modules/IGT/Testing/mitkNavigationToolStorageDeserializerTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationToolStorageDeserializerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //testing headers #include diff --git a/Modules/IGT/Testing/mitkNavigationToolStorageSerializerAndDeserializerIntegrationTest.cpp b/Modules/IGT/Testing/mitkNavigationToolStorageSerializerAndDeserializerIntegrationTest.cpp index 98a4f3f9360..ef61645f872 100644 --- a/Modules/IGT/Testing/mitkNavigationToolStorageSerializerAndDeserializerIntegrationTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationToolStorageSerializerAndDeserializerIntegrationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //testing headers #include diff --git a/Modules/IGT/Testing/mitkNavigationToolStorageSerializerTest.cpp b/Modules/IGT/Testing/mitkNavigationToolStorageSerializerTest.cpp index 250735b59f2..56f3c8164ec 100644 --- a/Modules/IGT/Testing/mitkNavigationToolStorageSerializerTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationToolStorageSerializerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //testing headers #include diff --git a/Modules/IGT/Testing/mitkNavigationToolStorageTest.cpp b/Modules/IGT/Testing/mitkNavigationToolStorageTest.cpp index ec44e3bd703..270bb23434f 100644 --- a/Modules/IGT/Testing/mitkNavigationToolStorageTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationToolStorageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationToolStorage.h" #include "mitkNavigationTool.h" diff --git a/Modules/IGT/Testing/mitkNavigationToolTest.cpp b/Modules/IGT/Testing/mitkNavigationToolTest.cpp index 361426b5422..3e002ea9508 100644 --- a/Modules/IGT/Testing/mitkNavigationToolTest.cpp +++ b/Modules/IGT/Testing/mitkNavigationToolTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationTool.h" #include "mitkCommon.h" diff --git a/Modules/IGT/Testing/mitkOpenIGTLinkTrackingDeviceTest.cpp b/Modules/IGT/Testing/mitkOpenIGTLinkTrackingDeviceTest.cpp index 27f00ce7553..1f115abd99a 100644 --- a/Modules/IGT/Testing/mitkOpenIGTLinkTrackingDeviceTest.cpp +++ b/Modules/IGT/Testing/mitkOpenIGTLinkTrackingDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //testing headers #include diff --git a/Modules/IGT/Testing/mitkPolhemusToolTest.cpp b/Modules/IGT/Testing/mitkPolhemusToolTest.cpp index 25f2e3ba02f..9f08da85a00 100644 --- a/Modules/IGT/Testing/mitkPolhemusToolTest.cpp +++ b/Modules/IGT/Testing/mitkPolhemusToolTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Modules/IGT/Testing/mitkPolhemusTrackingDeviceHardwareTest.cpp b/Modules/IGT/Testing/mitkPolhemusTrackingDeviceHardwareTest.cpp index 52d525c2b30..245aadf66b7 100644 --- a/Modules/IGT/Testing/mitkPolhemusTrackingDeviceHardwareTest.cpp +++ b/Modules/IGT/Testing/mitkPolhemusTrackingDeviceHardwareTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPolhemusInterface.h" #include "mitkTestingMacros.h" diff --git a/Modules/IGT/Testing/mitkTimeStampTest.cpp b/Modules/IGT/Testing/mitkTimeStampTest.cpp index 5447f5f47bb..a27e2e9a6e7 100644 --- a/Modules/IGT/Testing/mitkTimeStampTest.cpp +++ b/Modules/IGT/Testing/mitkTimeStampTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTTimeStamp.h" #include "mitkRealTimeClock.h" diff --git a/Modules/IGT/Testing/mitkTrackingDeviceSourceConfiguratorTest.cpp b/Modules/IGT/Testing/mitkTrackingDeviceSourceConfiguratorTest.cpp index 7d0c4498471..fb5cc8d1541 100644 --- a/Modules/IGT/Testing/mitkTrackingDeviceSourceConfiguratorTest.cpp +++ b/Modules/IGT/Testing/mitkTrackingDeviceSourceConfiguratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDeviceSourceConfigurator.h" #include diff --git a/Modules/IGT/Testing/mitkTrackingDeviceSourceTest.cpp b/Modules/IGT/Testing/mitkTrackingDeviceSourceTest.cpp index 66596552b1f..70f7cae44f9 100644 --- a/Modules/IGT/Testing/mitkTrackingDeviceSourceTest.cpp +++ b/Modules/IGT/Testing/mitkTrackingDeviceSourceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDeviceSource.h" #include "mitkVirtualTrackingDevice.h" diff --git a/Modules/IGT/Testing/mitkTrackingDeviceTest.cpp b/Modules/IGT/Testing/mitkTrackingDeviceTest.cpp index 88774d26419..0a126996074 100644 --- a/Modules/IGT/Testing/mitkTrackingDeviceTest.cpp +++ b/Modules/IGT/Testing/mitkTrackingDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDevice.h" #include "mitkTestingMacros.h" diff --git a/Modules/IGT/Testing/mitkTrackingToolTest.cpp b/Modules/IGT/Testing/mitkTrackingToolTest.cpp index 2ac84e90d32..4728655dba7 100644 --- a/Modules/IGT/Testing/mitkTrackingToolTest.cpp +++ b/Modules/IGT/Testing/mitkTrackingToolTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include "mitkTestFixture.h" diff --git a/Modules/IGT/Testing/mitkTrackingTypesTest.cpp b/Modules/IGT/Testing/mitkTrackingTypesTest.cpp index 7c124e7c8ce..3688f673230 100644 --- a/Modules/IGT/Testing/mitkTrackingTypesTest.cpp +++ b/Modules/IGT/Testing/mitkTrackingTypesTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vector" #include "mitkTrackingTypes.h" diff --git a/Modules/IGT/Testing/mitkTrackingVolumeGeneratorTest.cpp b/Modules/IGT/Testing/mitkTrackingVolumeGeneratorTest.cpp index b65871fc35c..e99332a5c3d 100644 --- a/Modules/IGT/Testing/mitkTrackingVolumeGeneratorTest.cpp +++ b/Modules/IGT/Testing/mitkTrackingVolumeGeneratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGT/Testing/mitkVirtualTrackingDeviceTest.cpp b/Modules/IGT/Testing/mitkVirtualTrackingDeviceTest.cpp index 182e8e2dc31..92cd60d6e60 100644 --- a/Modules/IGT/Testing/mitkVirtualTrackingDeviceTest.cpp +++ b/Modules/IGT/Testing/mitkVirtualTrackingDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Testing #include "mitkTestingMacros.h" diff --git a/Modules/IGT/TestingHelper/mitkNavigationToolStorageTestHelper.cpp b/Modules/IGT/TestingHelper/mitkNavigationToolStorageTestHelper.cpp index c76d8881f52..3af729fe1ed 100644 --- a/Modules/IGT/TestingHelper/mitkNavigationToolStorageTestHelper.cpp +++ b/Modules/IGT/TestingHelper/mitkNavigationToolStorageTestHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGT/TestingHelper/mitkNavigationToolStorageTestHelper.h b/Modules/IGT/TestingHelper/mitkNavigationToolStorageTestHelper.h index db4ce04c04f..8903e35c9ff 100644 --- a/Modules/IGT/TestingHelper/mitkNavigationToolStorageTestHelper.h +++ b/Modules/IGT/TestingHelper/mitkNavigationToolStorageTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include namespace mitk { class MITKIGT_EXPORT NavigationToolStorageTestHelper diff --git a/Modules/IGT/TrackingDevices/mitkClaronInterface.cpp b/Modules/IGT/TrackingDevices/mitkClaronInterface.cpp index 992fb62f42c..bc8dac002f0 100644 --- a/Modules/IGT/TrackingDevices/mitkClaronInterface.cpp +++ b/Modules/IGT/TrackingDevices/mitkClaronInterface.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGT/TrackingDevices/mitkClaronInterface.h b/Modules/IGT/TrackingDevices/mitkClaronInterface.h index 46ee4433d7d..5afd0847299 100644 --- a/Modules/IGT/TrackingDevices/mitkClaronInterface.h +++ b/Modules/IGT/TrackingDevices/mitkClaronInterface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCLARONINTERFACE_H_HEADER_INCLUDED_ #define MITKCLARONINTERFACE_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkClaronInterfaceStub.cpp b/Modules/IGT/TrackingDevices/mitkClaronInterfaceStub.cpp index 6bfadf24b15..989fe7f9ab0 100644 --- a/Modules/IGT/TrackingDevices/mitkClaronInterfaceStub.cpp +++ b/Modules/IGT/TrackingDevices/mitkClaronInterfaceStub.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGT/TrackingDevices/mitkClaronInterfaceStub.h b/Modules/IGT/TrackingDevices/mitkClaronInterfaceStub.h index 54c3b28bb00..e07cc523111 100644 --- a/Modules/IGT/TrackingDevices/mitkClaronInterfaceStub.h +++ b/Modules/IGT/TrackingDevices/mitkClaronInterfaceStub.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCLARONINTERFACE_H_HEADER_INCLUDED_ #define MITKCLARONINTERFACE_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkClaronTool.cpp b/Modules/IGT/TrackingDevices/mitkClaronTool.cpp index 33fce33e50a..15e4918c353 100644 --- a/Modules/IGT/TrackingDevices/mitkClaronTool.cpp +++ b/Modules/IGT/TrackingDevices/mitkClaronTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClaronTool.h" #include diff --git a/Modules/IGT/TrackingDevices/mitkClaronTool.h b/Modules/IGT/TrackingDevices/mitkClaronTool.h index 935b61a9dbe..6978768584c 100644 --- a/Modules/IGT/TrackingDevices/mitkClaronTool.h +++ b/Modules/IGT/TrackingDevices/mitkClaronTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCLARONTOOL_H_HEADER_INCLUDED_ #define MITKCLARONTOOL_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkClaronTrackingDevice.cpp b/Modules/IGT/TrackingDevices/mitkClaronTrackingDevice.cpp index 1ded0e39b1e..db2ecf050c1 100644 --- a/Modules/IGT/TrackingDevices/mitkClaronTrackingDevice.cpp +++ b/Modules/IGT/TrackingDevices/mitkClaronTrackingDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkClaronTrackingDevice.h" #include "mitkClaronTool.h" diff --git a/Modules/IGT/TrackingDevices/mitkClaronTrackingDevice.h b/Modules/IGT/TrackingDevices/mitkClaronTrackingDevice.h index 214ae70b3dc..82646a1d386 100644 --- a/Modules/IGT/TrackingDevices/mitkClaronTrackingDevice.h +++ b/Modules/IGT/TrackingDevices/mitkClaronTrackingDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCLARONTRACKINGDEVICE_H_HEADER_INCLUDED_ #define MITKCLARONTRACKINGDEVICE_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkItkNonUniformBSpline.h b/Modules/IGT/TrackingDevices/mitkItkNonUniformBSpline.h index e33670b8c3c..b7d760d76e9 100644 --- a/Modules/IGT/TrackingDevices/mitkItkNonUniformBSpline.h +++ b/Modules/IGT/TrackingDevices/mitkItkNonUniformBSpline.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/IGT/TrackingDevices/mitkItkNonUniformBSpline.txx b/Modules/IGT/TrackingDevices/mitkItkNonUniformBSpline.txx index f9782b74cfd..95c61f3a0bf 100644 --- a/Modules/IGT/TrackingDevices/mitkItkNonUniformBSpline.txx +++ b/Modules/IGT/TrackingDevices/mitkItkNonUniformBSpline.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/IGT/TrackingDevices/mitkMicroBirdTool.cpp b/Modules/IGT/TrackingDevices/mitkMicroBirdTool.cpp index a2323c72f65..fa705848e2f 100644 --- a/Modules/IGT/TrackingDevices/mitkMicroBirdTool.cpp +++ b/Modules/IGT/TrackingDevices/mitkMicroBirdTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMicroBirdTool.h" diff --git a/Modules/IGT/TrackingDevices/mitkMicroBirdTool.h b/Modules/IGT/TrackingDevices/mitkMicroBirdTool.h index fd2184b88f9..3788c89255c 100644 --- a/Modules/IGT/TrackingDevices/mitkMicroBirdTool.h +++ b/Modules/IGT/TrackingDevices/mitkMicroBirdTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMICROBIRDTOOL_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkMicroBirdTrackingDevice.cpp b/Modules/IGT/TrackingDevices/mitkMicroBirdTrackingDevice.cpp index a24f5175b61..3497b2b75da 100644 --- a/Modules/IGT/TrackingDevices/mitkMicroBirdTrackingDevice.cpp +++ b/Modules/IGT/TrackingDevices/mitkMicroBirdTrackingDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMicrobirdTrackingDevice.h" diff --git a/Modules/IGT/TrackingDevices/mitkMicroBirdTrackingDevice.h b/Modules/IGT/TrackingDevices/mitkMicroBirdTrackingDevice.h index 6b083222568..3bb9ab44d5b 100644 --- a/Modules/IGT/TrackingDevices/mitkMicroBirdTrackingDevice.h +++ b/Modules/IGT/TrackingDevices/mitkMicroBirdTrackingDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMIRCOBIRDTRACKINGDEVICE_H_HEADER_INCLUDED #define MITKMIRCOBIRDTRACKINGDEVICE_H_HEADER_INCLUDED diff --git a/Modules/IGT/TrackingDevices/mitkMicronTrackerTypeInformation.cpp b/Modules/IGT/TrackingDevices/mitkMicronTrackerTypeInformation.cpp index 451511c20a5..bf2072710d2 100644 --- a/Modules/IGT/TrackingDevices/mitkMicronTrackerTypeInformation.cpp +++ b/Modules/IGT/TrackingDevices/mitkMicronTrackerTypeInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMicronTrackerTypeInformation.h" diff --git a/Modules/IGT/TrackingDevices/mitkMicronTrackerTypeInformation.h b/Modules/IGT/TrackingDevices/mitkMicronTrackerTypeInformation.h index d427336aa23..7d41fbfb177 100644 --- a/Modules/IGT/TrackingDevices/mitkMicronTrackerTypeInformation.h +++ b/Modules/IGT/TrackingDevices/mitkMicronTrackerTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMicronTrackerTypeInformation_h #define mitkMicronTrackerTypeInformation_h diff --git a/Modules/IGT/TrackingDevices/mitkNDIAuroraTypeInformation.cpp b/Modules/IGT/TrackingDevices/mitkNDIAuroraTypeInformation.cpp index ffde4634cea..849fed22f99 100644 --- a/Modules/IGT/TrackingDevices/mitkNDIAuroraTypeInformation.cpp +++ b/Modules/IGT/TrackingDevices/mitkNDIAuroraTypeInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDIAuroraTypeInformation.h" diff --git a/Modules/IGT/TrackingDevices/mitkNDIAuroraTypeInformation.h b/Modules/IGT/TrackingDevices/mitkNDIAuroraTypeInformation.h index 45408a97625..94db053bd88 100644 --- a/Modules/IGT/TrackingDevices/mitkNDIAuroraTypeInformation.h +++ b/Modules/IGT/TrackingDevices/mitkNDIAuroraTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkNDIAuroraTypeInformation_h #define mitkNDIAuroraTypeInformation_h diff --git a/Modules/IGT/TrackingDevices/mitkNDIPassiveTool.cpp b/Modules/IGT/TrackingDevices/mitkNDIPassiveTool.cpp index ae50e71837c..f5fdfa5d74f 100644 --- a/Modules/IGT/TrackingDevices/mitkNDIPassiveTool.cpp +++ b/Modules/IGT/TrackingDevices/mitkNDIPassiveTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDIPassiveTool.h" #include diff --git a/Modules/IGT/TrackingDevices/mitkNDIPassiveTool.h b/Modules/IGT/TrackingDevices/mitkNDIPassiveTool.h index ca39cb684df..5a8c20a827c 100644 --- a/Modules/IGT/TrackingDevices/mitkNDIPassiveTool.h +++ b/Modules/IGT/TrackingDevices/mitkNDIPassiveTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNDIPASSIVETOOL_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkNDIPolarisTypeInformation.cpp b/Modules/IGT/TrackingDevices/mitkNDIPolarisTypeInformation.cpp index 1c67e848d32..336d66f3bc5 100644 --- a/Modules/IGT/TrackingDevices/mitkNDIPolarisTypeInformation.cpp +++ b/Modules/IGT/TrackingDevices/mitkNDIPolarisTypeInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDIPolarisTypeInformation.h" diff --git a/Modules/IGT/TrackingDevices/mitkNDIPolarisTypeInformation.h b/Modules/IGT/TrackingDevices/mitkNDIPolarisTypeInformation.h index 80da99d2485..2f75c0e3afa 100644 --- a/Modules/IGT/TrackingDevices/mitkNDIPolarisTypeInformation.h +++ b/Modules/IGT/TrackingDevices/mitkNDIPolarisTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NDIPOLARISTYPEINFORMATION_H_INCLUDED #define NDIPOLARISTYPEINFORMATION_H_INCLUDED diff --git a/Modules/IGT/TrackingDevices/mitkNDIProtocol.cpp b/Modules/IGT/TrackingDevices/mitkNDIProtocol.cpp index 6ac688a0ff6..6b7e3ddc8b3 100644 --- a/Modules/IGT/TrackingDevices/mitkNDIProtocol.cpp +++ b/Modules/IGT/TrackingDevices/mitkNDIProtocol.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDIProtocol.h" #include "mitkNDITrackingDevice.h" diff --git a/Modules/IGT/TrackingDevices/mitkNDIProtocol.h b/Modules/IGT/TrackingDevices/mitkNDIProtocol.h index 9dcd2e48b5c..e1647a835b7 100644 --- a/Modules/IGT/TrackingDevices/mitkNDIProtocol.h +++ b/Modules/IGT/TrackingDevices/mitkNDIProtocol.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNDIPROTOCOL_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkNDITrackingDevice.cpp b/Modules/IGT/TrackingDevices/mitkNDITrackingDevice.cpp index b84f0d546b6..fac6bcda427 100644 --- a/Modules/IGT/TrackingDevices/mitkNDITrackingDevice.cpp +++ b/Modules/IGT/TrackingDevices/mitkNDITrackingDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNDITrackingDevice.h" #include "mitkIGTTimeStamp.h" @@ -1063,108 +1059,108 @@ bool mitk::NDITrackingDevice::DiscoverWiredTools() /* First, check for disconnected tools and remove them */ this->FreePortHandles(); - //NDI handling (PHSR 02, PINIT, PHSR 02, PHSR 00) => all initialized and all handles available - //creation of MITK tools - //NDI enable all tools (PENA) - //NDI get all serial numbers (PHINF) - - /** - NDI handling (PHSR 02, PINIT, PHSR 02, PHSR 00) => all initialized and all handles available - **/ - - /* check for occupied port handles on channel 0 */ + //NDI handling (PHSR 02, PINIT, PHSR 02, PHSR 00) => all initialized and all handles available + //creation of MITK tools + //NDI enable all tools (PENA) + //NDI get all serial numbers (PHINF) + + /** + NDI handling (PHSR 02, PINIT, PHSR 02, PHSR 00) => all initialized and all handles available + **/ + + /* check for occupied port handles on channel 0 */ std::string portHandle; - NDIErrorCode returnvalue = m_DeviceProtocol->PHSR(OCCUPIED, &portHandle); - - if (returnvalue != NDIOKAY) - { - mitkThrowException(mitk::IGTHardwareException) << "Could not obtain a list of port handles that are connected on channel 0."; - } - - /* Initialize all port handles on channel 0 */ - for (unsigned int i = 0; i < portHandle.size(); i += 2) - { - std::string ph = portHandle.substr(i, 2); - returnvalue = m_DeviceProtocol->PINIT(&ph); - - if (returnvalue != NDIOKAY) - { - mitkThrowException(mitk::IGTHardwareException) << (std::string("Could not initialize port '") + ph + std::string(".")); - } - } - - /* check for occupied port handles on channel 1 (initialize automatically, portHandle is empty although additional tools were detected) */ - //For a split port on a dual 5DOF tool, the first PHSR sent will report only one port handle. After the port handle is - //initialized, it is assigned to channel 0. You must then use PHSR again to assign a port handle to channel 1. The - //port handle for channel 1 is initialized automatically. + NDIErrorCode returnvalue = m_DeviceProtocol->PHSR(OCCUPIED, &portHandle); + + if (returnvalue != NDIOKAY) + { + mitkThrowException(mitk::IGTHardwareException) << "Could not obtain a list of port handles that are connected on channel 0."; + } + + /* Initialize all port handles on channel 0 */ + for (unsigned int i = 0; i < portHandle.size(); i += 2) + { + std::string ph = portHandle.substr(i, 2); + returnvalue = m_DeviceProtocol->PINIT(&ph); + + if (returnvalue != NDIOKAY) + { + mitkThrowException(mitk::IGTHardwareException) << (std::string("Could not initialize port '") + ph + std::string(".")); + } + } + + /* check for occupied port handles on channel 1 (initialize automatically, portHandle is empty although additional tools were detected) */ + //For a split port on a dual 5DOF tool, the first PHSR sent will report only one port handle. After the port handle is + //initialized, it is assigned to channel 0. You must then use PHSR again to assign a port handle to channel 1. The + //port handle for channel 1 is initialized automatically. returnvalue = m_DeviceProtocol->PHSR(OCCUPIED, &portHandle); if (returnvalue != NDIOKAY) { - mitkThrowException(mitk::IGTHardwareException) << "Could not obtain a list of port handles that are connected on channel 1."; + mitkThrowException(mitk::IGTHardwareException) << "Could not obtain a list of port handles that are connected on channel 1."; } - /* read all port handles */ - returnvalue = m_DeviceProtocol->PHSR(ALL, &portHandle); + /* read all port handles */ + returnvalue = m_DeviceProtocol->PHSR(ALL, &portHandle); - if (returnvalue != NDIOKAY) - { - mitkThrowException(mitk::IGTHardwareException) << "Could not obtain a list of port handles that are connected on all channels."; - } - - /** - 1. Create MITK tracking tool representations of NDI tools - 2. NDI enable all tools (PENA) - **/ + if (returnvalue != NDIOKAY) + { + mitkThrowException(mitk::IGTHardwareException) << "Could not obtain a list of port handles that are connected on all channels."; + } + + /** + 1. Create MITK tracking tool representations of NDI tools + 2. NDI enable all tools (PENA) + **/ for (unsigned int i = 0; i < portHandle.size(); i += 2) { - std::string ph = portHandle.substr(i, 2); - if (this->GetInternalTool(ph) != nullptr) // if we already have a tool with this handle - continue; // then skip the initialization - - //define tracking priority - auto trackingPriority = mitk::NDIPassiveTool::Dynamic; - - //instantiate an object for each tool that is connected - mitk::NDIPassiveTool::Pointer newTool = mitk::NDIPassiveTool::New(); - newTool->SetPortHandle(ph.c_str()); - newTool->SetTrackingPriority(trackingPriority); - - //set a name for identification - newTool->SetToolName((std::string("Port ") + ph).c_str()); - - /* enable the port handle */ - returnvalue = m_DeviceProtocol->PENA(&ph, trackingPriority); // Enable tool - - if (returnvalue != NDIOKAY) - { + std::string ph = portHandle.substr(i, 2); + if (this->GetInternalTool(ph) != nullptr) // if we already have a tool with this handle + continue; // then skip the initialization + + //define tracking priority + auto trackingPriority = mitk::NDIPassiveTool::Dynamic; + + //instantiate an object for each tool that is connected + mitk::NDIPassiveTool::Pointer newTool = mitk::NDIPassiveTool::New(); + newTool->SetPortHandle(ph.c_str()); + newTool->SetTrackingPriority(trackingPriority); + + //set a name for identification + newTool->SetToolName((std::string("Port ") + ph).c_str()); + + /* enable the port handle */ + returnvalue = m_DeviceProtocol->PENA(&ph, trackingPriority); // Enable tool + + if (returnvalue != NDIOKAY) + { mitkThrowException(mitk::IGTHardwareException) << (std::string("Could not enable port '") + ph + - std::string("' for tool '") + newTool->GetToolName() + std::string("'")).c_str(); - } - - //we have to temporarily unlock m_ModeMutex here to avoid a deadlock with another lock inside InternalAddTool() - if (this->InternalAddTool(newTool) == false) - { - mitkThrowException(mitk::IGTException) << "Error while adding new tool"; - } - } - - /** - NDI get all serial numbers (PHINF) - **/ - + std::string("' for tool '") + newTool->GetToolName() + std::string("'")).c_str(); + } + + //we have to temporarily unlock m_ModeMutex here to avoid a deadlock with another lock inside InternalAddTool() + if (this->InternalAddTool(newTool) == false) + { + mitkThrowException(mitk::IGTException) << "Error while adding new tool"; + } + } + + /** + NDI get all serial numbers (PHINF) + **/ + // after initialization readout serial numbers of automatically detected tools - for (unsigned int i = 0; i < portHandle.size(); i += 2) + for (unsigned int i = 0; i < portHandle.size(); i += 2) { - std::string ph = portHandle.substr(i, 2); - - std::string portInfo; - NDIErrorCode returnvaluePort = m_DeviceProtocol->PHINF(ph, &portInfo); - if ((returnvaluePort == NDIOKAY) && (portInfo.size() > 31)) - dynamic_cast(this->GetInternalTool(ph))->SetSerialNumber(portInfo.substr(23, 8)); - MITK_INFO << "portInfo: " << portInfo; - itksys::SystemTools::Delay(10); + std::string ph = portHandle.substr(i, 2); + + std::string portInfo; + NDIErrorCode returnvaluePort = m_DeviceProtocol->PHINF(ph, &portInfo); + if ((returnvaluePort == NDIOKAY) && (portInfo.size() > 31)) + dynamic_cast(this->GetInternalTool(ph))->SetSerialNumber(portInfo.substr(23, 8)); + MITK_INFO << "portInfo: " << portInfo; + itksys::SystemTools::Delay(10); } return true; @@ -1350,4 +1346,4 @@ bool mitk::NDITrackingDevice::SetVolume(mitk::TrackingDeviceData volume) mitkThrowException(mitk::IGTHardwareException) << "Could not set volume!"; } return true; -} \ No newline at end of file +} diff --git a/Modules/IGT/TrackingDevices/mitkNDITrackingDevice.h b/Modules/IGT/TrackingDevices/mitkNDITrackingDevice.h index 4bc227bb4e3..2789da021aa 100644 --- a/Modules/IGT/TrackingDevices/mitkNDITrackingDevice.h +++ b/Modules/IGT/TrackingDevices/mitkNDITrackingDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNDITRACKINGDEVICE_H_HEADER_INCLUDED_C1C2FCD2 diff --git a/Modules/IGT/TrackingDevices/mitkNPOptitrackTrackingTypeInformation.cpp b/Modules/IGT/TrackingDevices/mitkNPOptitrackTrackingTypeInformation.cpp index d96093ace62..b06d09b47f4 100644 --- a/Modules/IGT/TrackingDevices/mitkNPOptitrackTrackingTypeInformation.cpp +++ b/Modules/IGT/TrackingDevices/mitkNPOptitrackTrackingTypeInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNPOptitrackTrackingTypeInformation.h" diff --git a/Modules/IGT/TrackingDevices/mitkNPOptitrackTrackingTypeInformation.h b/Modules/IGT/TrackingDevices/mitkNPOptitrackTrackingTypeInformation.h index a1aef131829..a1485641899 100644 --- a/Modules/IGT/TrackingDevices/mitkNPOptitrackTrackingTypeInformation.h +++ b/Modules/IGT/TrackingDevices/mitkNPOptitrackTrackingTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkNPOptitrackTrackingTypeInformation_h #define mitkNPOptitrackTrackingTypeInformation_h diff --git a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingDevice.cpp b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingDevice.cpp index 0ea2bd84e48..b9fe449077f 100644 --- a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingDevice.cpp +++ b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOpenIGTLinkTrackingDevice.h" #include "mitkOpenIGTLinkTrackingTool.h" diff --git a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingDevice.h b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingDevice.h index 88265af09f8..e13411d464a 100644 --- a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingDevice.h +++ b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOPENIGTLINKTRACKINGDEVICE_H_HEADER_INCLUDED_ #define MITKOPENIGTLINKTRACKINGDEVICE_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingTool.cpp b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingTool.cpp index e198e79064c..877bac24335 100644 --- a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingTool.cpp +++ b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOpenIGTLinkTrackingTool.h" #include diff --git a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingTool.h b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingTool.h index a45e935ac64..14d573c261c 100644 --- a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingTool.h +++ b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTrackingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOpenIGTLinkTrackingTOOL_H_HEADER_INCLUDED_ #define MITKOpenIGTLinkTrackingTOOL_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTypeInformation.cpp b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTypeInformation.cpp index aacdeea3435..e8e7b0a2226 100644 --- a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTypeInformation.cpp +++ b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTypeInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOpenIGTLinkTypeInformation.h" diff --git a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTypeInformation.h b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTypeInformation.h index d4b38e366ce..71a1d04fd13 100644 --- a/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTypeInformation.h +++ b/Modules/IGT/TrackingDevices/mitkOpenIGTLinkTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkOpenIGTLinkTypeInformation_h #define mitkOpenIGTLinkTypeInformation_h diff --git a/Modules/IGT/TrackingDevices/mitkOptitrackErrorMessages.cpp b/Modules/IGT/TrackingDevices/mitkOptitrackErrorMessages.cpp index 37f05b80e1d..9a5ac8f58b1 100644 --- a/Modules/IGT/TrackingDevices/mitkOptitrackErrorMessages.cpp +++ b/Modules/IGT/TrackingDevices/mitkOptitrackErrorMessages.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOptitrackErrorMessages.h" diff --git a/Modules/IGT/TrackingDevices/mitkOptitrackErrorMessages.h b/Modules/IGT/TrackingDevices/mitkOptitrackErrorMessages.h index aaee501c4f6..229a336b192 100644 --- a/Modules/IGT/TrackingDevices/mitkOptitrackErrorMessages.h +++ b/Modules/IGT/TrackingDevices/mitkOptitrackErrorMessages.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OptiTrackErrorMessages_H_HEADER_INCLUDED_ #define OptiTrackErrorMessages_H_HEADER_INCLUDED_ @@ -41,7 +37,7 @@ namespace mitk public: /** * \brief Helper function to get the error messages from Optitrack API - * \author E. Marinetto (emarinetto@hggm.es) Instituto de Investigación Sanitaria Gregorio Marañón, Madrid, Spain. & M. Noll (matthias.noll@igd.fraunhofer.de) Cognitive Computing & Medical Imaging | Fraunhofer IGD + * \author E. Marinetto (emarinetto@hggm.es) Instituto de Investigación Sanitaria Gregorio Marañón, Madrid, Spain. & M. Noll (matthias.noll@igd.fraunhofer.de) Cognitive Computing & Medical Imaging | Fraunhofer IGD */ static std::string GetOptitrackErrorMessage(int result); }; diff --git a/Modules/IGT/TrackingDevices/mitkOptitrackTrackingDevice.cpp b/Modules/IGT/TrackingDevices/mitkOptitrackTrackingDevice.cpp index 5901534b3b3..bf4d8192647 100644 --- a/Modules/IGT/TrackingDevices/mitkOptitrackTrackingDevice.cpp +++ b/Modules/IGT/TrackingDevices/mitkOptitrackTrackingDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOptitrackTrackingDevice.h" #include diff --git a/Modules/IGT/TrackingDevices/mitkOptitrackTrackingDevice.h b/Modules/IGT/TrackingDevices/mitkOptitrackTrackingDevice.h index 6b8e7b6a5fa..f64edb5924b 100644 --- a/Modules/IGT/TrackingDevices/mitkOptitrackTrackingDevice.h +++ b/Modules/IGT/TrackingDevices/mitkOptitrackTrackingDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OptitrackTrackingDevice_H_HEADER_INCLUDED #define OptitrackTrackingDevice_H_HEADER_INCLUDED @@ -60,7 +56,7 @@ namespace mitk * continuously update the tool coordinates. Remember that it will be necessary to * to have a license for using the Optitrack System. * See http://www.naturalpoint.com/ for details. - * \author E. Marinetto (emarinetto@hggm.es) Instituto de Investigación Sanitaria Gregorio Marañón, Madrid, Spain. & M. Noll (matthias.noll@igd.fraunhofer.de) Cognitive Computing & Medical Imaging | Fraunhofer IGD + * \author E. Marinetto (emarinetto@hggm.es) Instituto de Investigación Sanitaria Gregorio Marañón, Madrid, Spain. & M. Noll (matthias.noll@igd.fraunhofer.de) Cognitive Computing & Medical Imaging | Fraunhofer IGD * \ingroup IGT */ class MITKIGT_EXPORT OptitrackTrackingDevice : public mitk::TrackingDevice diff --git a/Modules/IGT/TrackingDevices/mitkOptitrackTrackingTool.cpp b/Modules/IGT/TrackingDevices/mitkOptitrackTrackingTool.cpp index 6204cfa3ed5..67f3ea08594 100644 --- a/Modules/IGT/TrackingDevices/mitkOptitrackTrackingTool.cpp +++ b/Modules/IGT/TrackingDevices/mitkOptitrackTrackingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOptitrackTrackingTool.h" diff --git a/Modules/IGT/TrackingDevices/mitkOptitrackTrackingTool.h b/Modules/IGT/TrackingDevices/mitkOptitrackTrackingTool.h index 90b58a8f556..52cc463cb24 100644 --- a/Modules/IGT/TrackingDevices/mitkOptitrackTrackingTool.h +++ b/Modules/IGT/TrackingDevices/mitkOptitrackTrackingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OptiTrackTrackingTool_H_HEADER_INCLUDED_ #define OptiTrackTrackingTool_H_HEADER_INCLUDED_ @@ -52,7 +48,7 @@ namespace mitk * the tool by the a definition file like in the example in ****. Remember that it will be necessary to * to have a license for using the Optitrack System. * See http://www.naturalpoint.com/ for details. - * \author E. Marinetto (emarinetto@hggm.es) Instituto de Investigación Sanitaria Gregorio Marañón, Madrid, Spain. & M. Noll (matthias.noll@igd.fraunhofer.de) Cognitive Computing & Medical Imaging | Fraunhofer IGD + * \author E. Marinetto (emarinetto@hggm.es) Instituto de Investigación Sanitaria Gregorio Marañón, Madrid, Spain. & M. Noll (matthias.noll@igd.fraunhofer.de) Cognitive Computing & Medical Imaging | Fraunhofer IGD * \ingroup IGT */ class MITKIGT_EXPORT OptitrackTrackingTool : public TrackingTool diff --git a/Modules/IGT/TrackingDevices/mitkPolhemusInterface.cpp b/Modules/IGT/TrackingDevices/mitkPolhemusInterface.cpp index a8873e4711f..6ec9715e983 100644 --- a/Modules/IGT/TrackingDevices/mitkPolhemusInterface.cpp +++ b/Modules/IGT/TrackingDevices/mitkPolhemusInterface.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -466,4 +462,4 @@ std::vector mitk::PolhemusInterface::GetToolIterator(int _tool) void mitk::PolhemusInterface::PrintStatus() { MITK_INFO << "Polhemus status: " << this->m_pdiDev->CnxReady(); -} \ No newline at end of file +} diff --git a/Modules/IGT/TrackingDevices/mitkPolhemusInterface.h b/Modules/IGT/TrackingDevices/mitkPolhemusInterface.h index a8dbc9ffd5f..6f6daea543f 100644 --- a/Modules/IGT/TrackingDevices/mitkPolhemusInterface.h +++ b/Modules/IGT/TrackingDevices/mitkPolhemusInterface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPolhemusINTERFACE_H_HEADER_INCLUDED_ #define MITKPolhemusINTERFACE_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkPolhemusTool.cpp b/Modules/IGT/TrackingDevices/mitkPolhemusTool.cpp index f6d278935ff..2e343189ed6 100644 --- a/Modules/IGT/TrackingDevices/mitkPolhemusTool.cpp +++ b/Modules/IGT/TrackingDevices/mitkPolhemusTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPolhemusTool.h" diff --git a/Modules/IGT/TrackingDevices/mitkPolhemusTool.h b/Modules/IGT/TrackingDevices/mitkPolhemusTool.h index e70abf9244a..6d059a986fb 100644 --- a/Modules/IGT/TrackingDevices/mitkPolhemusTool.h +++ b/Modules/IGT/TrackingDevices/mitkPolhemusTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPolhemusTOOL_H_HEADER_INCLUDED_ #define MITKPolhemusTOOL_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkPolhemusTrackerTypeInformation.cpp b/Modules/IGT/TrackingDevices/mitkPolhemusTrackerTypeInformation.cpp index 5d709a05ddf..1d8a9374b10 100644 --- a/Modules/IGT/TrackingDevices/mitkPolhemusTrackerTypeInformation.cpp +++ b/Modules/IGT/TrackingDevices/mitkPolhemusTrackerTypeInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPolhemusTrackerTypeInformation.h" diff --git a/Modules/IGT/TrackingDevices/mitkPolhemusTrackerTypeInformation.h b/Modules/IGT/TrackingDevices/mitkPolhemusTrackerTypeInformation.h index 52b86478216..e483cac1f0a 100644 --- a/Modules/IGT/TrackingDevices/mitkPolhemusTrackerTypeInformation.h +++ b/Modules/IGT/TrackingDevices/mitkPolhemusTrackerTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPolhemusTrackerTypeInformation_h #define mitkPolhemusTrackerTypeInformation_h diff --git a/Modules/IGT/TrackingDevices/mitkPolhemusTrackingDevice.cpp b/Modules/IGT/TrackingDevices/mitkPolhemusTrackingDevice.cpp index ffe4e08576c..628637fc3dc 100644 --- a/Modules/IGT/TrackingDevices/mitkPolhemusTrackingDevice.cpp +++ b/Modules/IGT/TrackingDevices/mitkPolhemusTrackingDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPolhemusTrackingDevice.h" #include "mitkPolhemusTool.h" @@ -326,4 +322,4 @@ bool mitk::PolhemusTrackingDevice::GetHemisphereTrackingEnabled(int _tool) void mitk::PolhemusTrackingDevice::AdjustHemisphere(int _tool) { return this->m_Device->AdjustHemisphere(_tool); -} \ No newline at end of file +} diff --git a/Modules/IGT/TrackingDevices/mitkPolhemusTrackingDevice.h b/Modules/IGT/TrackingDevices/mitkPolhemusTrackingDevice.h index 1d50ec8f75d..e1e94cee7ed 100644 --- a/Modules/IGT/TrackingDevices/mitkPolhemusTrackingDevice.h +++ b/Modules/IGT/TrackingDevices/mitkPolhemusTrackingDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPolhemusTRACKINGDEVICE_H_HEADER_INCLUDED_ #define MITKPolhemusTRACKINGDEVICE_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkSerialCommunicationTest.cpp b/Modules/IGT/TrackingDevices/mitkSerialCommunicationTest.cpp index cd5fed4d1d5..7f2ca247f68 100644 --- a/Modules/IGT/TrackingDevices/mitkSerialCommunicationTest.cpp +++ b/Modules/IGT/TrackingDevices/mitkSerialCommunicationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkSerialCommunication.h" diff --git a/Modules/IGT/TrackingDevices/mitkTrackingDevice.cpp b/Modules/IGT/TrackingDevices/mitkTrackingDevice.cpp index f3585d0ee1d..f468dd73897 100644 --- a/Modules/IGT/TrackingDevices/mitkTrackingDevice.cpp +++ b/Modules/IGT/TrackingDevices/mitkTrackingDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDevice.h" #include "mitkIGTTimeStamp.h" diff --git a/Modules/IGT/TrackingDevices/mitkTrackingDevice.h b/Modules/IGT/TrackingDevices/mitkTrackingDevice.h index 3a385dc74c3..d7c49f67bdc 100644 --- a/Modules/IGT/TrackingDevices/mitkTrackingDevice.h +++ b/Modules/IGT/TrackingDevices/mitkTrackingDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTRACKINGDEVICE_H_HEADER_INCLUDED_C1C2FCD2 diff --git a/Modules/IGT/TrackingDevices/mitkTrackingTool.cpp b/Modules/IGT/TrackingDevices/mitkTrackingTool.cpp index b86830db48a..76ab4f6998a 100644 --- a/Modules/IGT/TrackingDevices/mitkTrackingTool.cpp +++ b/Modules/IGT/TrackingDevices/mitkTrackingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingTool.h" #include diff --git a/Modules/IGT/TrackingDevices/mitkTrackingTool.h b/Modules/IGT/TrackingDevices/mitkTrackingTool.h index e9ca6eb8dbc..cbd0e868320 100644 --- a/Modules/IGT/TrackingDevices/mitkTrackingTool.h +++ b/Modules/IGT/TrackingDevices/mitkTrackingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTRACKINGTOOL_H_HEADER_INCLUDED_ @@ -33,10 +29,10 @@ namespace mitk * TrackingDevices, or be subclassed for more specific implementations. * mitk::MicroBirdTrackingDevice uses this class to manage its tools. Other tracking devices * uses specialized versions of this class (e.g. mitk::NDITrackingTool) - * + * * The TrackingTool class holds all coordinate transforms associated with tracking of a tool. - * The sensor attached to the tool is localized in the global tracking coordinate system (m_Position, m_Orientation). - * A tool tip (m_ToolTipPosition) can be defined in sensor coordinates. + * The sensor attached to the tool is localized in the global tracking coordinate system (m_Position, m_Orientation). + * A tool tip (m_ToolTipPosition) can be defined in sensor coordinates. * The tool axis defines the main axis of the tool and is defined as the negative z-axis of the tool tip coordinate system * The main axis of the representation object of the tool (e.g. a surface) has to be defined along the negative z-axis * \imageMacro{TrackingTool.png,"Coordinate transforms associated to the tracking tool.",3} @@ -93,7 +89,7 @@ namespace mitk itk::FastMutexLock::Pointer m_MyMutex; ///< mutex to control concurrent access to the tool Point3D m_Position; ///< holds the position of the tool in global tracking coordinates - Quaternion m_Orientation; ///< holds the orientation of the tool´in global tracking coordinates + Quaternion m_Orientation; ///< holds the orientation of the tool´in global tracking coordinates float m_TrackingError; ///< holds the tracking error of the tool bool m_Enabled; ///< if true, tool is enabled and should receive tracking updates from the tracking device bool m_DataValid; ///< if true, data in m_Position and m_Orientation is valid, e.g. true tracking data diff --git a/Modules/IGT/TrackingDevices/mitkTrackingVolumeGenerator.cpp b/Modules/IGT/TrackingDevices/mitkTrackingVolumeGenerator.cpp index fbc7220161f..085ad6705be 100644 --- a/Modules/IGT/TrackingDevices/mitkTrackingVolumeGenerator.cpp +++ b/Modules/IGT/TrackingDevices/mitkTrackingVolumeGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingVolumeGenerator.h" #include "mitkStandardFileLocations.h" diff --git a/Modules/IGT/TrackingDevices/mitkTrackingVolumeGenerator.h b/Modules/IGT/TrackingDevices/mitkTrackingVolumeGenerator.h index 797ba67b6bb..e229cabf5d4 100644 --- a/Modules/IGT/TrackingDevices/mitkTrackingVolumeGenerator.h +++ b/Modules/IGT/TrackingDevices/mitkTrackingVolumeGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTRACKINGVOLUMEGENERATOR_H diff --git a/Modules/IGT/TrackingDevices/mitkUnspecifiedTrackingTypeInformation.cpp b/Modules/IGT/TrackingDevices/mitkUnspecifiedTrackingTypeInformation.cpp index ca5a27bfa9d..a755a172ea9 100644 --- a/Modules/IGT/TrackingDevices/mitkUnspecifiedTrackingTypeInformation.cpp +++ b/Modules/IGT/TrackingDevices/mitkUnspecifiedTrackingTypeInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUnspecifiedTrackingTypeInformation.h" diff --git a/Modules/IGT/TrackingDevices/mitkUnspecifiedTrackingTypeInformation.h b/Modules/IGT/TrackingDevices/mitkUnspecifiedTrackingTypeInformation.h index fc78936f733..f8dc253f534 100644 --- a/Modules/IGT/TrackingDevices/mitkUnspecifiedTrackingTypeInformation.h +++ b/Modules/IGT/TrackingDevices/mitkUnspecifiedTrackingTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkUnspecifiedTrackingTypeInformation_h #define mitkUnspecifiedTrackingTypeInformation_h diff --git a/Modules/IGT/TrackingDevices/mitkVirtualTrackerTypeInformation.cpp b/Modules/IGT/TrackingDevices/mitkVirtualTrackerTypeInformation.cpp index d968024365f..643defabb74 100644 --- a/Modules/IGT/TrackingDevices/mitkVirtualTrackerTypeInformation.cpp +++ b/Modules/IGT/TrackingDevices/mitkVirtualTrackerTypeInformation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVirtualTrackerTypeInformation.h" diff --git a/Modules/IGT/TrackingDevices/mitkVirtualTrackerTypeInformation.h b/Modules/IGT/TrackingDevices/mitkVirtualTrackerTypeInformation.h index b2347116e02..4348c1c12ed 100644 --- a/Modules/IGT/TrackingDevices/mitkVirtualTrackerTypeInformation.h +++ b/Modules/IGT/TrackingDevices/mitkVirtualTrackerTypeInformation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VIRTUALTRACKERTYPEINFORMATION_H_INCLUDED #define VIRTUALTRACKERTYPEINFORMATION_H_INCLUDED diff --git a/Modules/IGT/TrackingDevices/mitkVirtualTrackingDevice.cpp b/Modules/IGT/TrackingDevices/mitkVirtualTrackingDevice.cpp index 3b62ffaa969..51fbec3ea05 100644 --- a/Modules/IGT/TrackingDevices/mitkVirtualTrackingDevice.cpp +++ b/Modules/IGT/TrackingDevices/mitkVirtualTrackingDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVirtualTrackingDevice.h" #include "mitkIGTTimeStamp.h" diff --git a/Modules/IGT/TrackingDevices/mitkVirtualTrackingDevice.h b/Modules/IGT/TrackingDevices/mitkVirtualTrackingDevice.h index 814cbdb81a6..2e55a579cce 100644 --- a/Modules/IGT/TrackingDevices/mitkVirtualTrackingDevice.h +++ b/Modules/IGT/TrackingDevices/mitkVirtualTrackingDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVIRTUALTRACKINGDEVICE_H_HEADER_INCLUDED_ #define MITKVIRTUALTRACKINGDEVICE_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/TrackingDevices/mitkVirtualTrackingTool.cpp b/Modules/IGT/TrackingDevices/mitkVirtualTrackingTool.cpp index 6f4ba7928d9..659d028447c 100644 --- a/Modules/IGT/TrackingDevices/mitkVirtualTrackingTool.cpp +++ b/Modules/IGT/TrackingDevices/mitkVirtualTrackingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVirtualTrackingTool.h" #include diff --git a/Modules/IGT/TrackingDevices/mitkVirtualTrackingTool.h b/Modules/IGT/TrackingDevices/mitkVirtualTrackingTool.h index ffd189fc913..a908baddba2 100644 --- a/Modules/IGT/TrackingDevices/mitkVirtualTrackingTool.h +++ b/Modules/IGT/TrackingDevices/mitkVirtualTrackingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVirtualTrackingTool_H_HEADER_INCLUDED_ diff --git a/Modules/IGT/Tutorial/mitkIGTTutorialStep1.cpp b/Modules/IGT/Tutorial/mitkIGTTutorialStep1.cpp index c8cad1f310e..799db144fb8 100644 --- a/Modules/IGT/Tutorial/mitkIGTTutorialStep1.cpp +++ b/Modules/IGT/Tutorial/mitkIGTTutorialStep1.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGT/Tutorial/mitkIGTTutorialStep2.cpp b/Modules/IGT/Tutorial/mitkIGTTutorialStep2.cpp index 3e3ba99050a..dd74393157d 100644 --- a/Modules/IGT/Tutorial/mitkIGTTutorialStep2.cpp +++ b/Modules/IGT/Tutorial/mitkIGTTutorialStep2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGT/autoload/DeviceRegistry/src/mitkIGTActivator.cpp b/Modules/IGT/autoload/DeviceRegistry/src/mitkIGTActivator.cpp index 99657964869..895875b3d5d 100644 --- a/Modules/IGT/autoload/DeviceRegistry/src/mitkIGTActivator.cpp +++ b/Modules/IGT/autoload/DeviceRegistry/src/mitkIGTActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTConfig.h" #include "mitkIGTActivator.h" diff --git a/Modules/IGT/autoload/DeviceRegistry/src/mitkIGTActivator.h b/Modules/IGT/autoload/DeviceRegistry/src/mitkIGTActivator.h index c21e2c81edb..79c7608b2c9 100644 --- a/Modules/IGT/autoload/DeviceRegistry/src/mitkIGTActivator.h +++ b/Modules/IGT/autoload/DeviceRegistry/src/mitkIGTActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIGTActivator_H #define mitkIGTActivator_H diff --git a/Modules/IGTBase/autoload/IO/mitkIGTBaseActivator.cpp b/Modules/IGTBase/autoload/IO/mitkIGTBaseActivator.cpp index 282880795b3..f52432be8ce 100644 --- a/Modules/IGTBase/autoload/IO/mitkIGTBaseActivator.cpp +++ b/Modules/IGTBase/autoload/IO/mitkIGTBaseActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTBaseActivator.h" diff --git a/Modules/IGTBase/autoload/IO/mitkIGTBaseActivator.h b/Modules/IGTBase/autoload/IO/mitkIGTBaseActivator.h index 23dce5863e8..be32e5f3485 100644 --- a/Modules/IGTBase/autoload/IO/mitkIGTBaseActivator.h +++ b/Modules/IGTBase/autoload/IO/mitkIGTBaseActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTBASEACTIVATOR_H #define MITKIGTBASEACTIVATOR_H diff --git a/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderCSV.cpp b/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderCSV.cpp index 3f3f034edb2..3587fc82772 100644 --- a/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderCSV.cpp +++ b/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderCSV.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkNavigationDataReaderCSV.h" diff --git a/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderCSV.h b/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderCSV.h index 2101c2e63b3..7a9527c4929 100644 --- a/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderCSV.h +++ b/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderCSV.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataReaderCSV_H_HEADER_INCLUDED_ #define MITKNavigationDataReaderCSV_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderXML.cpp b/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderXML.cpp index f6244990698..004ed0a49a9 100644 --- a/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderXML.cpp +++ b/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderXML.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkNavigationDataReaderXML.h" diff --git a/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderXML.h b/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderXML.h index 43079f4d670..5d5b5d81f41 100644 --- a/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderXML.h +++ b/Modules/IGTBase/autoload/IO/mitkNavigationDataReaderXML.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataReaderXML_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterCSV.cpp b/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterCSV.cpp index 673c424b30c..d935e4acf0b 100644 --- a/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterCSV.cpp +++ b/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterCSV.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataSetWriterCSV.h" #include diff --git a/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterCSV.h b/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterCSV.h index f7c60e8630b..26b94554b9d 100644 --- a/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterCSV.h +++ b/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterCSV.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataSetWriterCSV_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterXML.cpp b/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterXML.cpp index 228163a7abc..8816d1ab384 100644 --- a/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterXML.cpp +++ b/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterXML.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkNavigationDataSetWriterXML.h" diff --git a/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterXML.h b/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterXML.h index e84cb120774..f3f725d545e 100644 --- a/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterXML.h +++ b/Modules/IGTBase/autoload/IO/mitkNavigationDataSetWriterXML.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataSetWriterXML_H_HEADER_INCLUDED_ #define MITKNavigationDataSetWriterXML_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/include/mitkIGTException.h b/Modules/IGTBase/include/mitkIGTException.h index 593cf4b3a22..19dc243b357 100644 --- a/Modules/IGTBase/include/mitkIGTException.h +++ b/Modules/IGTBase/include/mitkIGTException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTEXCEPTION_H_INCLUDED #define IGTEXCEPTION_H_INCLUDED diff --git a/Modules/IGTBase/include/mitkIGTHardwareException.h b/Modules/IGTBase/include/mitkIGTHardwareException.h index 6b047eac58c..a7147ad0035 100644 --- a/Modules/IGTBase/include/mitkIGTHardwareException.h +++ b/Modules/IGTBase/include/mitkIGTHardwareException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTHARDWAREEXCEPTION_H_INCLUDED #define IGTHARDWAREEXCEPTION_H_INCLUDED diff --git a/Modules/IGTBase/include/mitkIGTIOException.h b/Modules/IGTBase/include/mitkIGTIOException.h index e2f8a176c4b..96859a1efd4 100644 --- a/Modules/IGTBase/include/mitkIGTIOException.h +++ b/Modules/IGTBase/include/mitkIGTIOException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTIOEXCEPTION_H_INCLUDED #define IGTIOEXCEPTION_H_INCLUDED diff --git a/Modules/IGTBase/include/mitkIGTMimeTypes.h b/Modules/IGTBase/include/mitkIGTMimeTypes.h index 52b5f38d478..8784578221c 100644 --- a/Modules/IGTBase/include/mitkIGTMimeTypes.h +++ b/Modules/IGTBase/include/mitkIGTMimeTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIOMIMETYPE_H_HEADER_INCLUDED_ #define MITKIOMIMETYPE_H_HEADER_INCLUDED_ @@ -32,4 +28,4 @@ namespace mitk { } -#endif // MITKIOMIMETYPE_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKIOMIMETYPE_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/include/mitkLinuxRealTimeClock.h b/Modules/IGTBase/include/mitkLinuxRealTimeClock.h index 519a812324b..aa0076c6041 100644 --- a/Modules/IGTBase/include/mitkLinuxRealTimeClock.h +++ b/Modules/IGTBase/include/mitkLinuxRealTimeClock.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLINUXREALTIMECLOCK_H_HEADER_INCLUDED_ #define MITKLINUXREALTIMECLOCK_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/include/mitkNavigationData.h b/Modules/IGTBase/include/mitkNavigationData.h index b241db31e8d..ad041dfd648 100644 --- a/Modules/IGTBase/include/mitkNavigationData.h +++ b/Modules/IGTBase/include/mitkNavigationData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNAVIGATIONDATA_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/include/mitkNavigationDataSet.h b/Modules/IGTBase/include/mitkNavigationDataSet.h index 33b5b049960..c7475addf80 100644 --- a/Modules/IGTBase/include/mitkNavigationDataSet.h +++ b/Modules/IGTBase/include/mitkNavigationDataSet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNAVIGATIONDATASET_H_HEADER_INCLUDED_ #define MITKNAVIGATIONDATASET_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/include/mitkQuaternionAveraging.h b/Modules/IGTBase/include/mitkQuaternionAveraging.h index 9bdc1aef226..117e9fdedc0 100644 --- a/Modules/IGTBase/include/mitkQuaternionAveraging.h +++ b/Modules/IGTBase/include/mitkQuaternionAveraging.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QUATERNIONAVERAGING_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/include/mitkRealTimeClock.h b/Modules/IGTBase/include/mitkRealTimeClock.h index d5147f0a9a0..8313a2570b7 100644 --- a/Modules/IGTBase/include/mitkRealTimeClock.h +++ b/Modules/IGTBase/include/mitkRealTimeClock.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKWREALTIMECLOCK_H_HEADER_INCLUDED_ #define MITKWREALTIMECLOCK_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/include/mitkStaticIGTHelperFunctions.h b/Modules/IGTBase/include/mitkStaticIGTHelperFunctions.h index b98bfa70af5..17af38482eb 100644 --- a/Modules/IGTBase/include/mitkStaticIGTHelperFunctions.h +++ b/Modules/IGTBase/include/mitkStaticIGTHelperFunctions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/IGTBase/include/mitkWindowsRealTimeClock.h b/Modules/IGTBase/include/mitkWindowsRealTimeClock.h index dd4abf296cc..7841c3351cc 100644 --- a/Modules/IGTBase/include/mitkWindowsRealTimeClock.h +++ b/Modules/IGTBase/include/mitkWindowsRealTimeClock.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKWINDOWSREALTIMECLOCK_H_HEADER_INCLUDED_ #define MITKWINDOWSREALTIMECLOCK_H_HEADER_INCLUDED_ diff --git a/Modules/IGTBase/src/mitkIGTException.cpp b/Modules/IGTBase/src/mitkIGTException.cpp index b2c4cefa26e..a3a683c9b3e 100644 --- a/Modules/IGTBase/src/mitkIGTException.cpp +++ b/Modules/IGTBase/src/mitkIGTException.cpp @@ -1,17 +1,13 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTException.h" diff --git a/Modules/IGTBase/src/mitkIGTHardwareException.cpp b/Modules/IGTBase/src/mitkIGTHardwareException.cpp index 84bf2a068bc..1a8acf299ee 100644 --- a/Modules/IGTBase/src/mitkIGTHardwareException.cpp +++ b/Modules/IGTBase/src/mitkIGTHardwareException.cpp @@ -1,17 +1,13 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTHardwareException.h" diff --git a/Modules/IGTBase/src/mitkIGTIOException.cpp b/Modules/IGTBase/src/mitkIGTIOException.cpp index 833d81a9eb2..d5d76981612 100644 --- a/Modules/IGTBase/src/mitkIGTIOException.cpp +++ b/Modules/IGTBase/src/mitkIGTIOException.cpp @@ -1,17 +1,13 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTIOException.h" diff --git a/Modules/IGTBase/src/mitkIGTMimeTypes.cpp b/Modules/IGTBase/src/mitkIGTMimeTypes.cpp index a9db7c8f96a..5060dd21106 100644 --- a/Modules/IGTBase/src/mitkIGTMimeTypes.cpp +++ b/Modules/IGTBase/src/mitkIGTMimeTypes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkIGTMimeTypes.h" @@ -45,4 +41,4 @@ mitk::CustomMimeType mitk::IGTMimeTypes::USDEVICEINFORMATIONXML_MIMETYPE() mimeType.SetCategory(category); mimeType.AddExtension("xml"); return mimeType; -} \ No newline at end of file +} diff --git a/Modules/IGTBase/src/mitkLinuxRealTimeClock.cpp b/Modules/IGTBase/src/mitkLinuxRealTimeClock.cpp index 0b9112e6ed4..22e30ecbc6c 100644 --- a/Modules/IGTBase/src/mitkLinuxRealTimeClock.cpp +++ b/Modules/IGTBase/src/mitkLinuxRealTimeClock.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLinuxRealTimeClock.h" diff --git a/Modules/IGTBase/src/mitkNavigationData.cpp b/Modules/IGTBase/src/mitkNavigationData.cpp index 654cae7fcbd..ae5d047fee9 100644 --- a/Modules/IGTBase/src/mitkNavigationData.cpp +++ b/Modules/IGTBase/src/mitkNavigationData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationData.h" #include "vnl/vnl_det.h" diff --git a/Modules/IGTBase/src/mitkNavigationDataSet.cpp b/Modules/IGTBase/src/mitkNavigationDataSet.cpp index 29e2716878c..ca551ff81d8 100644 --- a/Modules/IGTBase/src/mitkNavigationDataSet.cpp +++ b/Modules/IGTBase/src/mitkNavigationDataSet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataSet.h" #include "mitkPointSet.h" diff --git a/Modules/IGTBase/src/mitkQuaternionAveraging.cpp b/Modules/IGTBase/src/mitkQuaternionAveraging.cpp index 3a6cc9ff911..92ac7e00f0a 100644 --- a/Modules/IGTBase/src/mitkQuaternionAveraging.cpp +++ b/Modules/IGTBase/src/mitkQuaternionAveraging.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkQuaternionAveraging.h" //#include "bussvrmath/Quaternion.h" diff --git a/Modules/IGTBase/src/mitkRealTimeClock.cpp b/Modules/IGTBase/src/mitkRealTimeClock.cpp index ee2201f5c2c..71cc053292d 100644 --- a/Modules/IGTBase/src/mitkRealTimeClock.cpp +++ b/Modules/IGTBase/src/mitkRealTimeClock.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRealTimeClock.h" diff --git a/Modules/IGTBase/src/mitkStaticIGTHelperFunctions.cpp b/Modules/IGTBase/src/mitkStaticIGTHelperFunctions.cpp index 4fb5e779cf1..1614b0b5c8c 100644 --- a/Modules/IGTBase/src/mitkStaticIGTHelperFunctions.cpp +++ b/Modules/IGTBase/src/mitkStaticIGTHelperFunctions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/IGTBase/src/mitkWindowsRealTimeClock.cpp b/Modules/IGTBase/src/mitkWindowsRealTimeClock.cpp index 0defc66a12d..d88cc4499a0 100644 --- a/Modules/IGTBase/src/mitkWindowsRealTimeClock.cpp +++ b/Modules/IGTBase/src/mitkWindowsRealTimeClock.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkWindowsRealTimeClock.h" diff --git a/Modules/IGTUI/Qmitk/QmitkAbstractTrackingDeviceWidget.cpp b/Modules/IGTUI/Qmitk/QmitkAbstractTrackingDeviceWidget.cpp index f84d1676a59..0bc061e97c3 100644 --- a/Modules/IGTUI/Qmitk/QmitkAbstractTrackingDeviceWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkAbstractTrackingDeviceWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAbstractTrackingDeviceWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkAbstractTrackingDeviceWidget.h b/Modules/IGTUI/Qmitk/QmitkAbstractTrackingDeviceWidget.h index 4ba6276ca82..9fbbf8ffecc 100644 --- a/Modules/IGTUI/Qmitk/QmitkAbstractTrackingDeviceWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkAbstractTrackingDeviceWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAbstractTrackingDeviceWidget_H #define QmitkAbstractTrackingDeviceWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkFiducialRegistrationWidget.cpp b/Modules/IGTUI/Qmitk/QmitkFiducialRegistrationWidget.cpp index 375961abdf2..ee1b33b2567 100644 --- a/Modules/IGTUI/Qmitk/QmitkFiducialRegistrationWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkFiducialRegistrationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFiducialRegistrationWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkFiducialRegistrationWidget.h b/Modules/IGTUI/Qmitk/QmitkFiducialRegistrationWidget.h index a35c84fd949..2c6e5a2ddfb 100644 --- a/Modules/IGTUI/Qmitk/QmitkFiducialRegistrationWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkFiducialRegistrationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkFiducialRegistrationWidget_H_INCLUDED #define _QmitkFiducialRegistrationWidget_H_INCLUDED diff --git a/Modules/IGTUI/Qmitk/QmitkIGTCommonHelper.cpp b/Modules/IGTUI/Qmitk/QmitkIGTCommonHelper.cpp index b5ca3695ea6..48e6372d67a 100644 --- a/Modules/IGTUI/Qmitk/QmitkIGTCommonHelper.cpp +++ b/Modules/IGTUI/Qmitk/QmitkIGTCommonHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/IGTUI/Qmitk/QmitkIGTCommonHelper.h b/Modules/IGTUI/Qmitk/QmitkIGTCommonHelper.h index 2b72ea72908..9cad92b73f1 100644 --- a/Modules/IGTUI/Qmitk/QmitkIGTCommonHelper.h +++ b/Modules/IGTUI/Qmitk/QmitkIGTCommonHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTCommonHelper_H #define QmitkIGTCommonHelper_H diff --git a/Modules/IGTUI/Qmitk/QmitkIGTConnectionWidget.cpp b/Modules/IGTUI/Qmitk/QmitkIGTConnectionWidget.cpp index 099873b7547..2ee6f49843e 100644 --- a/Modules/IGTUI/Qmitk/QmitkIGTConnectionWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkIGTConnectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTConnectionWidget.h" #include "QmitkTrackingDeviceConfigurationWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkIGTConnectionWidget.h b/Modules/IGTUI/Qmitk/QmitkIGTConnectionWidget.h index 2e824b894e4..645c1151a7e 100644 --- a/Modules/IGTUI/Qmitk/QmitkIGTConnectionWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkIGTConnectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTConnectionWidget_H #define QmitkIGTConnectionWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkIGTLoggerWidget.cpp b/Modules/IGTUI/Qmitk/QmitkIGTLoggerWidget.cpp index 7a9a1f72100..5c21f787ff6 100644 --- a/Modules/IGTUI/Qmitk/QmitkIGTLoggerWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkIGTLoggerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTLoggerWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkIGTLoggerWidget.h b/Modules/IGTUI/Qmitk/QmitkIGTLoggerWidget.h index 0bd66f9205f..d16f30dc770 100644 --- a/Modules/IGTUI/Qmitk/QmitkIGTLoggerWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkIGTLoggerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTLoggerWidget_H #define QmitkIGTLoggerWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkIGTPlayerWidget.cpp b/Modules/IGTUI/Qmitk/QmitkIGTPlayerWidget.cpp index 18cb04bf578..0ac7dcf116f 100644 --- a/Modules/IGTUI/Qmitk/QmitkIGTPlayerWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkIGTPlayerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTPlayerWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkIGTPlayerWidget.h b/Modules/IGTUI/Qmitk/QmitkIGTPlayerWidget.h index f8198149193..34136740e73 100644 --- a/Modules/IGTUI/Qmitk/QmitkIGTPlayerWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkIGTPlayerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTPlayerWidget_H #define QmitkIGTPlayerWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkInteractiveTransformationWidget.cpp b/Modules/IGTUI/Qmitk/QmitkInteractiveTransformationWidget.cpp index b5514731c07..394054efc94 100644 --- a/Modules/IGTUI/Qmitk/QmitkInteractiveTransformationWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkInteractiveTransformationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkInteractiveTransformationWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkInteractiveTransformationWidget.h b/Modules/IGTUI/Qmitk/QmitkInteractiveTransformationWidget.h index 2095dbce3cc..0146b3d8e60 100644 --- a/Modules/IGTUI/Qmitk/QmitkInteractiveTransformationWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkInteractiveTransformationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkInteractiveTransformationWidget_H #define QmitkInteractiveTransformationWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkMicronTrackerWidget.cpp b/Modules/IGTUI/Qmitk/QmitkMicronTrackerWidget.cpp index c1d1401646a..cbe2651b41e 100644 --- a/Modules/IGTUI/Qmitk/QmitkMicronTrackerWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkMicronTrackerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMicronTrackerWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkMicronTrackerWidget.h b/Modules/IGTUI/Qmitk/QmitkMicronTrackerWidget.h index 1c05a687a55..afa420860e0 100644 --- a/Modules/IGTUI/Qmitk/QmitkMicronTrackerWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkMicronTrackerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMicronTrackerWidget_H #define QmitkMicronTrackerWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkNDIAbstractDeviceWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNDIAbstractDeviceWidget.cpp index ad8d4b758d2..6f0a7b11e74 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIAbstractDeviceWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNDIAbstractDeviceWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNDIAbstractDeviceWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNDIAbstractDeviceWidget.h b/Modules/IGTUI/Qmitk/QmitkNDIAbstractDeviceWidget.h index e1d4f2da918..cdc797f704a 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIAbstractDeviceWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNDIAbstractDeviceWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNDIAbstractDeviceWidget_H #define QmitkNDIAbstractDeviceWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkNDIAuroraWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNDIAuroraWidget.cpp index e225eab219b..74ae6a95249 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIAuroraWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNDIAuroraWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNDIAuroraWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNDIAuroraWidget.h b/Modules/IGTUI/Qmitk/QmitkNDIAuroraWidget.h index 47a9e9e38ec..b77f26e6dfd 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIAuroraWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNDIAuroraWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNDIAuroraWidget_H #define QmitkNDIAuroraWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkNDIConfigurationWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNDIConfigurationWidget.cpp index 8cf7c86059d..01cb561002f 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIConfigurationWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNDIConfigurationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define MITK_NO_DEPRECATED_WARNINGS diff --git a/Modules/IGTUI/Qmitk/QmitkNDIConfigurationWidget.h b/Modules/IGTUI/Qmitk/QmitkNDIConfigurationWidget.h index b4d90134249..8036b16dbfc 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIConfigurationWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNDIConfigurationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkNDIConfigurationWidget_H_INCLUDED #define _QmitkNDIConfigurationWidget_H_INCLUDED diff --git a/Modules/IGTUI/Qmitk/QmitkNDIPolarisWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNDIPolarisWidget.cpp index 78ee14ea62f..b00bd512c43 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIPolarisWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNDIPolarisWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNDIPolarisWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNDIPolarisWidget.h b/Modules/IGTUI/Qmitk/QmitkNDIPolarisWidget.h index 7eb065a5804..450eb9fa9ce 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIPolarisWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNDIPolarisWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNDIPolarisWidget_H #define QmitkNDIPolarisWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkNDIToolDelegate.cpp b/Modules/IGTUI/Qmitk/QmitkNDIToolDelegate.cpp index ac6a94cbcf7..68e577301e2 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIToolDelegate.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNDIToolDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNDIToolDelegate.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNDIToolDelegate.h b/Modules/IGTUI/Qmitk/QmitkNDIToolDelegate.h index 077e3993be9..c9184e9d554 100644 --- a/Modules/IGTUI/Qmitk/QmitkNDIToolDelegate.h +++ b/Modules/IGTUI/Qmitk/QmitkNDIToolDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNDIToolDelegate_h #define QmitkNDIToolDelegate_h diff --git a/Modules/IGTUI/Qmitk/QmitkNPOptitrackWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNPOptitrackWidget.cpp index cc690ce35ca..b9cc6b8e85a 100644 --- a/Modules/IGTUI/Qmitk/QmitkNPOptitrackWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNPOptitrackWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNPOptitrackWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNPOptitrackWidget.h b/Modules/IGTUI/Qmitk/QmitkNPOptitrackWidget.h index 95758cde7ab..4e2cc01f576 100644 --- a/Modules/IGTUI/Qmitk/QmitkNPOptitrackWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNPOptitrackWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNPOptitrackWidget_H #define QmitkNPOptitrackWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationDataPlayerControlWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNavigationDataPlayerControlWidget.cpp index 24cd1114396..0c825500f84 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationDataPlayerControlWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNavigationDataPlayerControlWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNavigationDataPlayerControlWidget.h" #include "ui_QmitkNavigationDataPlayerControlWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationDataPlayerControlWidget.h b/Modules/IGTUI/Qmitk/QmitkNavigationDataPlayerControlWidget.h index 65318f59728..e7e2a3ca177 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationDataPlayerControlWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNavigationDataPlayerControlWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKNAVIGATIONDATAPLAYERCONTROLWIDGET_H #define QMITKNAVIGATIONDATAPLAYERCONTROLWIDGET_H diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationDataSequentialPlayerControlWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNavigationDataSequentialPlayerControlWidget.cpp index 6e344753701..b2eb713e1af 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationDataSequentialPlayerControlWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNavigationDataSequentialPlayerControlWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNavigationDataSequentialPlayerControlWidget.h" #include "ui_QmitkNavigationDataSequentialPlayerControlWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationDataSequentialPlayerControlWidget.h b/Modules/IGTUI/Qmitk/QmitkNavigationDataSequentialPlayerControlWidget.h index 8ed2883b5ba..db1b7bda9e9 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationDataSequentialPlayerControlWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNavigationDataSequentialPlayerControlWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKNAVIGATIONDATASEQUENTIALPLAYERCONTROLWIDGET_H #define QMITKNAVIGATIONDATASEQUENTIALPLAYERCONTROLWIDGET_H diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationDataSourceSelectionWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNavigationDataSourceSelectionWidget.cpp index d1adf13a79a..e921bce29cc 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationDataSourceSelectionWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNavigationDataSourceSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNavigationDataSourceSelectionWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationDataSourceSelectionWidget.h b/Modules/IGTUI/Qmitk/QmitkNavigationDataSourceSelectionWidget.h index c0fdd2e9960..11c50b6ed7b 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationDataSourceSelectionWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNavigationDataSourceSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNavigationDataSourceSelectionWidget_H #define QmitkNavigationDataSourceSelectionWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationToolCreationWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNavigationToolCreationWidget.cpp index 1dc7d01eaaf..60cb9e101cb 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationToolCreationWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNavigationToolCreationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNavigationToolCreationWidget.h" @@ -394,4 +390,4 @@ void QmitkNavigationToolCreationWidget::RefreshTrackingDeviceCollection() m_Controls->m_TrackingDeviceTypeChooser->addItem(QString::fromStdString(name)); } } -} \ No newline at end of file +} diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationToolCreationWidget.h b/Modules/IGTUI/Qmitk/QmitkNavigationToolCreationWidget.h index 5526f6fce0a..aa32dbcc878 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationToolCreationWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNavigationToolCreationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNavigationToolCreationWidget_H #define QmitkNavigationToolCreationWidget_H @@ -126,7 +122,7 @@ class MITKIGTUI_EXPORT QmitkNavigationToolCreationWidget : public QWidget Ui::QmitkNavigationToolCreationWidgetControls* m_Controls; - /** @brief this pointer holds the tool which is edited. If finished is clicked, it will be copied to the final tool, if it is cancled, it is reseted and not used. + /** @brief this pointer holds the tool which is edited. If finished is clicked, it will be copied to the final tool, if it is cancled, it is reseted and not used. This can be regarded as the clipboard for all changes. */ mitk::NavigationTool::Pointer m_ToolToBeEdited; diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationToolManagementWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNavigationToolManagementWidget.cpp index 93c08e12753..c3c26634463 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationToolManagementWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNavigationToolManagementWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNavigationToolManagementWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationToolManagementWidget.h b/Modules/IGTUI/Qmitk/QmitkNavigationToolManagementWidget.h index 6c401c2382f..67c3773a759 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationToolManagementWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNavigationToolManagementWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKNAVIGATIONTOOLMANAGEMENTWIDGET_H #define QMITKNAVIGATIONTOOLMANAGEMENTWIDGET_H diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationToolStorageSelectionWidget.cpp b/Modules/IGTUI/Qmitk/QmitkNavigationToolStorageSelectionWidget.cpp index c897baadc2a..789c7348265 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationToolStorageSelectionWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkNavigationToolStorageSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNavigationToolStorageSelectionWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkNavigationToolStorageSelectionWidget.h b/Modules/IGTUI/Qmitk/QmitkNavigationToolStorageSelectionWidget.h index 579f7bf33cf..b78639e1e2d 100644 --- a/Modules/IGTUI/Qmitk/QmitkNavigationToolStorageSelectionWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkNavigationToolStorageSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNavigationToolStorageSelectionWidget_H #define QmitkNavigationToolStorageSelectionWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkOpenIGTLinkWidget.cpp b/Modules/IGTUI/Qmitk/QmitkOpenIGTLinkWidget.cpp index 317575e58d6..4b295842d8d 100644 --- a/Modules/IGTUI/Qmitk/QmitkOpenIGTLinkWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkOpenIGTLinkWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOpenIGTLinkWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkOpenIGTLinkWidget.h b/Modules/IGTUI/Qmitk/QmitkOpenIGTLinkWidget.h index 9a1ca8c349c..162fbfd36b3 100644 --- a/Modules/IGTUI/Qmitk/QmitkOpenIGTLinkWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkOpenIGTLinkWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkOpenIGTLinkWidget_H #define QmitkOpenIGTLinkWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkPolhemusTrackerWidget.cpp b/Modules/IGTUI/Qmitk/QmitkPolhemusTrackerWidget.cpp index 47de34a0b7e..dab4c134fce 100644 --- a/Modules/IGTUI/Qmitk/QmitkPolhemusTrackerWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkPolhemusTrackerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPolhemusTrackerWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkPolhemusTrackerWidget.h b/Modules/IGTUI/Qmitk/QmitkPolhemusTrackerWidget.h index 56c0595f3dd..9de0852b29a 100644 --- a/Modules/IGTUI/Qmitk/QmitkPolhemusTrackerWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkPolhemusTrackerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPolhemusTrackerWidget_H #define QmitkPolhemusTrackerWidget_H diff --git a/Modules/IGTUI/Qmitk/QmitkToolDistanceWidget.cpp b/Modules/IGTUI/Qmitk/QmitkToolDistanceWidget.cpp index b203d37b056..84929a84f20 100644 --- a/Modules/IGTUI/Qmitk/QmitkToolDistanceWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkToolDistanceWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToolDistanceWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkToolDistanceWidget.h b/Modules/IGTUI/Qmitk/QmitkToolDistanceWidget.h index 103a6504e31..46a9055601e 100644 --- a/Modules/IGTUI/Qmitk/QmitkToolDistanceWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkToolDistanceWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkToolDistanceWidget_H_INCLUDED #define _QmitkToolDistanceWidget_H_INCLUDED diff --git a/Modules/IGTUI/Qmitk/QmitkToolSelectionWidget.cpp b/Modules/IGTUI/Qmitk/QmitkToolSelectionWidget.cpp index f44d57192ed..c0cd807e04c 100644 --- a/Modules/IGTUI/Qmitk/QmitkToolSelectionWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkToolSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToolSelectionWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkToolSelectionWidget.h b/Modules/IGTUI/Qmitk/QmitkToolSelectionWidget.h index 4f6cf7e2513..83e0695b35c 100644 --- a/Modules/IGTUI/Qmitk/QmitkToolSelectionWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkToolSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkToolSelectionWidget_H_INCLUDED #define _QmitkToolSelectionWidget_H_INCLUDED diff --git a/Modules/IGTUI/Qmitk/QmitkToolTrackingStatusWidget.cpp b/Modules/IGTUI/Qmitk/QmitkToolTrackingStatusWidget.cpp index da82cc42f06..5dfbad6a380 100644 --- a/Modules/IGTUI/Qmitk/QmitkToolTrackingStatusWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkToolTrackingStatusWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToolTrackingStatusWidget.h" #include @@ -189,7 +185,7 @@ void QmitkToolTrackingStatusWidget::ShowStatusLabels() label->setFrameStyle(QFrame::Panel | QFrame::Sunken); m_StatusLabels->append(label); - if (m_Style == QmitkToolTrackingStatusWidget::VerticalUpperStyle) + if (m_Style == QmitkToolTrackingStatusWidget::VerticalUpperStyle) m_Controls->m_VerticalLayout->addWidget(m_StatusLabels->at(i)); else m_Controls->m_GridLayout->addWidget(m_StatusLabels->at(i),i,0); } diff --git a/Modules/IGTUI/Qmitk/QmitkToolTrackingStatusWidget.h b/Modules/IGTUI/Qmitk/QmitkToolTrackingStatusWidget.h index cee8cb6aefe..053e1578098 100644 --- a/Modules/IGTUI/Qmitk/QmitkToolTrackingStatusWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkToolTrackingStatusWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkToolTrackingStatusWidget_H_INCLUDED #define _QmitkToolTrackingStatusWidget_H_INCLUDED diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidget.cpp b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidget.cpp index 8f1f07205eb..6f2237bbf2c 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTrackingDeviceConfigurationWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidget.h b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidget.h index 8627cd918c7..29377e83da7 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTRACKINGDEVICECONFIGURATIONWIDGET_H #define QMITKTRACKINGDEVICECONFIGURATIONWIDGET_H diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetConnectionWorker.cpp b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetConnectionWorker.cpp index 96c1472657c..0e6cf15b47f 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetConnectionWorker.cpp +++ b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetConnectionWorker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTrackingDeviceConfigurationWidgetConnectionWorker.h" @@ -66,4 +62,4 @@ void QmitkTrackingDeviceConfigurationWidgetConnectionWorker::TestConnectionThrea void QmitkTrackingDeviceConfigurationWidgetConnectionWorker::SetTrackingDevice(mitk::TrackingDevice::Pointer t) { m_TrackingDevice = t; -} \ No newline at end of file +} diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetConnectionWorker.h b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetConnectionWorker.h index 800d00b10a8..407d5f0acb2 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetConnectionWorker.h +++ b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetConnectionWorker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkTrackingDeviceConfigurationWidgetConnectionWorker_H diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.cpp b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.cpp index cce3c42af66..b66533d8934 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.cpp +++ b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.h" diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.h b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.h index 25741159c32..81c04275812 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.h +++ b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceConfigurationWidgetScanPortsWorker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkTrackingDeviceConfigurationWidgetScanPortsWorker_H #define QmitkTrackingDeviceConfigurationWidgetScanPortsWorker_H diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceWidget.cpp b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceWidget.cpp index 76834179072..b64c7233e3f 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTrackingDeviceWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceWidget.h b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceWidget.h index 06c0740f4ad..336163e0556 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingDeviceWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkTrackingDeviceWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTRACKINGDEVICEWIDGET_H #define QMITKTRACKINGDEVICEWIDGET_H diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingSourcesCheckBoxPanelWidget.cpp b/Modules/IGTUI/Qmitk/QmitkTrackingSourcesCheckBoxPanelWidget.cpp index a8dada8d713..bf204f50354 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingSourcesCheckBoxPanelWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkTrackingSourcesCheckBoxPanelWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTrackingSourcesCheckBoxPanelWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkTrackingSourcesCheckBoxPanelWidget.h b/Modules/IGTUI/Qmitk/QmitkTrackingSourcesCheckBoxPanelWidget.h index 6fdc98c9109..cc9e31d6e20 100644 --- a/Modules/IGTUI/Qmitk/QmitkTrackingSourcesCheckBoxPanelWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkTrackingSourcesCheckBoxPanelWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkTrackingSourcesCheckBoxPanelWidget_H_INCLUDED #define _QmitkTrackingSourcesCheckBoxPanelWidget_H_INCLUDED diff --git a/Modules/IGTUI/Qmitk/QmitkUpdateTimerWidget.cpp b/Modules/IGTUI/Qmitk/QmitkUpdateTimerWidget.cpp index f37f681acbf..40740ee2bec 100644 --- a/Modules/IGTUI/Qmitk/QmitkUpdateTimerWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkUpdateTimerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUpdateTimerWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkUpdateTimerWidget.h b/Modules/IGTUI/Qmitk/QmitkUpdateTimerWidget.h index cf0dc04b532..f5eacbc954a 100644 --- a/Modules/IGTUI/Qmitk/QmitkUpdateTimerWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkUpdateTimerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkUpdateTimerWidget_H_INCLUDED #define _QmitkUpdateTimerWidget_H_INCLUDED diff --git a/Modules/IGTUI/Qmitk/QmitkVirtualTrackerWidget.cpp b/Modules/IGTUI/Qmitk/QmitkVirtualTrackerWidget.cpp index 257b3fe1bcf..5a4189876e1 100644 --- a/Modules/IGTUI/Qmitk/QmitkVirtualTrackerWidget.cpp +++ b/Modules/IGTUI/Qmitk/QmitkVirtualTrackerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkVirtualTrackerWidget.h" diff --git a/Modules/IGTUI/Qmitk/QmitkVirtualTrackerWidget.h b/Modules/IGTUI/Qmitk/QmitkVirtualTrackerWidget.h index a77898cc845..52a9650aac7 100644 --- a/Modules/IGTUI/Qmitk/QmitkVirtualTrackerWidget.h +++ b/Modules/IGTUI/Qmitk/QmitkVirtualTrackerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkVirtualTrackerWidget_H #define QmitkVirtualTrackerWidget_H diff --git a/Modules/IGTUI/Qmitk/mitkTrackingDeviceWidgetCollection.cpp b/Modules/IGTUI/Qmitk/mitkTrackingDeviceWidgetCollection.cpp index 596d40caf2d..1d8c46ed8fc 100644 --- a/Modules/IGTUI/Qmitk/mitkTrackingDeviceWidgetCollection.cpp +++ b/Modules/IGTUI/Qmitk/mitkTrackingDeviceWidgetCollection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDeviceWidgetCollection.h" diff --git a/Modules/IGTUI/Qmitk/mitkTrackingDeviceWidgetCollection.h b/Modules/IGTUI/Qmitk/mitkTrackingDeviceWidgetCollection.h index 2a30e7f1c32..9d7fca9f49e 100644 --- a/Modules/IGTUI/Qmitk/mitkTrackingDeviceWidgetCollection.h +++ b/Modules/IGTUI/Qmitk/mitkTrackingDeviceWidgetCollection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef TrackingDeviceWidgetCollection_H_INCLUDED #define TrackingDeviceWidgetCollection_H_INCLUDED diff --git a/Modules/IGTUI/autoload/ConfigurationWidgetRegistry/src/mitkIGTUIActivator.cpp b/Modules/IGTUI/autoload/ConfigurationWidgetRegistry/src/mitkIGTUIActivator.cpp index 4820db746c8..a541b179935 100644 --- a/Modules/IGTUI/autoload/ConfigurationWidgetRegistry/src/mitkIGTUIActivator.cpp +++ b/Modules/IGTUI/autoload/ConfigurationWidgetRegistry/src/mitkIGTUIActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTConfig.h" #include "mitkIGTUIActivator.h" @@ -77,4 +73,4 @@ namespace mitk } } -US_EXPORT_MODULE_ACTIVATOR(mitk::IGTUIActivator) \ No newline at end of file +US_EXPORT_MODULE_ACTIVATOR(mitk::IGTUIActivator) diff --git a/Modules/IGTUI/autoload/ConfigurationWidgetRegistry/src/mitkIGTUIActivator.h b/Modules/IGTUI/autoload/ConfigurationWidgetRegistry/src/mitkIGTUIActivator.h index 9e0609439d4..7f7c65f6207 100644 --- a/Modules/IGTUI/autoload/ConfigurationWidgetRegistry/src/mitkIGTUIActivator.h +++ b/Modules/IGTUI/autoload/ConfigurationWidgetRegistry/src/mitkIGTUIActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIGTUIActivator_H #define mitkIGTUIActivator_H diff --git a/Modules/IOExt/Internal/mitkIOExtActivator.cpp b/Modules/IOExt/Internal/mitkIOExtActivator.cpp index ce44c1b7bcb..c2d7ba41eac 100644 --- a/Modules/IOExt/Internal/mitkIOExtActivator.cpp +++ b/Modules/IOExt/Internal/mitkIOExtActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOExtActivator.h" diff --git a/Modules/IOExt/Internal/mitkIOExtActivator.h b/Modules/IOExt/Internal/mitkIOExtActivator.h index 09e231bb705..78aa30c8f74 100644 --- a/Modules/IOExt/Internal/mitkIOExtActivator.h +++ b/Modules/IOExt/Internal/mitkIOExtActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIOEXTACTIVATOR_H #define MITKIOEXTACTIVATOR_H diff --git a/Modules/IOExt/Internal/mitkIOExtObjectFactory.cpp b/Modules/IOExt/Internal/mitkIOExtObjectFactory.cpp index fc718475f9e..ee4c2453dcf 100644 --- a/Modules/IOExt/Internal/mitkIOExtObjectFactory.cpp +++ b/Modules/IOExt/Internal/mitkIOExtObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIOExtObjectFactory.h" diff --git a/Modules/IOExt/Internal/mitkIOExtObjectFactory.h b/Modules/IOExt/Internal/mitkIOExtObjectFactory.h index 6758461b897..631fa8f2948 100644 --- a/Modules/IOExt/Internal/mitkIOExtObjectFactory.h +++ b/Modules/IOExt/Internal/mitkIOExtObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef COREEXTOBJECTFACTORY_H_INCLUDED #define COREEXTOBJECTFACTORY_H_INCLUDED diff --git a/Modules/IOExt/Internal/mitkObjFileReaderService.cpp b/Modules/IOExt/Internal/mitkObjFileReaderService.cpp index 05ba01e7c07..b60f99fb6d2 100644 --- a/Modules/IOExt/Internal/mitkObjFileReaderService.cpp +++ b/Modules/IOExt/Internal/mitkObjFileReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkObjFileReaderService.h" diff --git a/Modules/IOExt/Internal/mitkObjFileReaderService.h b/Modules/IOExt/Internal/mitkObjFileReaderService.h index a07f422a6f2..6a059881c87 100644 --- a/Modules/IOExt/Internal/mitkObjFileReaderService.h +++ b/Modules/IOExt/Internal/mitkObjFileReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ObjFileReaderService_h #define ObjFileReaderService_h diff --git a/Modules/IOExt/Internal/mitkParRecFileIOFactory.cpp b/Modules/IOExt/Internal/mitkParRecFileIOFactory.cpp index e5e1614d9ab..b55561accd2 100644 --- a/Modules/IOExt/Internal/mitkParRecFileIOFactory.cpp +++ b/Modules/IOExt/Internal/mitkParRecFileIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkParRecFileIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/IOExt/Internal/mitkParRecFileIOFactory.h b/Modules/IOExt/Internal/mitkParRecFileIOFactory.h index d65aa226f38..fe8b7461568 100644 --- a/Modules/IOExt/Internal/mitkParRecFileIOFactory.h +++ b/Modules/IOExt/Internal/mitkParRecFileIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkParRecFileIOFactory_h #define __mitkParRecFileIOFactory_h diff --git a/Modules/IOExt/Internal/mitkParRecFileReader.cpp b/Modules/IOExt/Internal/mitkParRecFileReader.cpp index 62bde823971..975e0bff4a3 100644 --- a/Modules/IOExt/Internal/mitkParRecFileReader.cpp +++ b/Modules/IOExt/Internal/mitkParRecFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkParRecFileReader.h" #include diff --git a/Modules/IOExt/Internal/mitkParRecFileReader.h b/Modules/IOExt/Internal/mitkParRecFileReader.h index c4654ebe494..c88615c87f7 100644 --- a/Modules/IOExt/Internal/mitkParRecFileReader.h +++ b/Modules/IOExt/Internal/mitkParRecFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PARRECFILEREADER_H_HEADER_INCLUDED_C1F48A22 #define PARRECFILEREADER_H_HEADER_INCLUDED_C1F48A22 diff --git a/Modules/IOExt/Internal/mitkPlyFileReaderService.cpp b/Modules/IOExt/Internal/mitkPlyFileReaderService.cpp index 5a3d03f540b..8f6bf4eb1ab 100644 --- a/Modules/IOExt/Internal/mitkPlyFileReaderService.cpp +++ b/Modules/IOExt/Internal/mitkPlyFileReaderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkPlyFileReaderService.h" diff --git a/Modules/IOExt/Internal/mitkPlyFileReaderService.h b/Modules/IOExt/Internal/mitkPlyFileReaderService.h index 30ad53a035b..ac81e403e6e 100644 --- a/Modules/IOExt/Internal/mitkPlyFileReaderService.h +++ b/Modules/IOExt/Internal/mitkPlyFileReaderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PlyFileReaderService_h #define PlyFileReaderService_h diff --git a/Modules/IOExt/Internal/mitkPlyFileWriterService.cpp b/Modules/IOExt/Internal/mitkPlyFileWriterService.cpp index 09bc6d9e6da..88420327ece 100644 --- a/Modules/IOExt/Internal/mitkPlyFileWriterService.cpp +++ b/Modules/IOExt/Internal/mitkPlyFileWriterService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkPlyFileWriterService.h" diff --git a/Modules/IOExt/Internal/mitkPlyFileWriterService.h b/Modules/IOExt/Internal/mitkPlyFileWriterService.h index b08b86e3c00..0c3b70c99da 100644 --- a/Modules/IOExt/Internal/mitkPlyFileWriterService.h +++ b/Modules/IOExt/Internal/mitkPlyFileWriterService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PlyFileWriterService_h #define PlyFileWriterService_h diff --git a/Modules/IOExt/Internal/mitkSceneFileReader.cpp b/Modules/IOExt/Internal/mitkSceneFileReader.cpp index e712eb923cf..121c6a38178 100644 --- a/Modules/IOExt/Internal/mitkSceneFileReader.cpp +++ b/Modules/IOExt/Internal/mitkSceneFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSceneFileReader.h" diff --git a/Modules/IOExt/Internal/mitkSceneFileReader.h b/Modules/IOExt/Internal/mitkSceneFileReader.h index e0886278b16..e2c89774a39 100644 --- a/Modules/IOExt/Internal/mitkSceneFileReader.h +++ b/Modules/IOExt/Internal/mitkSceneFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SceneFileReader_H_HEADER_INCLUDED #define SceneFileReader_H_HEADER_INCLUDED diff --git a/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesIOFactory.cpp b/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesIOFactory.cpp index 1866321ba7f..ec46addd403 100644 --- a/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesIOFactory.cpp +++ b/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStlVolumeTimeSeriesIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesIOFactory.h b/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesIOFactory.h index a9cae822a22..9dae68952df 100644 --- a/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesIOFactory.h +++ b/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkStlVolumeTimeSeriesIOFactory_h #define __mitkStlVolumeTimeSeriesIOFactory_h diff --git a/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesReader.cpp b/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesReader.cpp index d05562844a4..cce6a8c5dda 100644 --- a/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesReader.cpp +++ b/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStlVolumeTimeSeriesReader.h" #include "mitkSurface.h" diff --git a/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesReader.h b/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesReader.h index 8aee28d007a..3fb1582f0f6 100644 --- a/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesReader.h +++ b/Modules/IOExt/Internal/mitkStlVolumeTimeSeriesReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _Stl_VOLUME_TIME_SERIES_READER__H_ #define _Stl_VOLUME_TIME_SERIES_READER__H_ diff --git a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.cpp b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.cpp index e4982b0b190..703f17f8a9d 100644 --- a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.cpp +++ b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUnstructuredGridVtkWriter.h" #include "mitkUnstructuredGridVtkWriter.txx" diff --git a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.h b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.h index afbf336e8ad..da2c2815120 100644 --- a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.h +++ b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_UNSTRUCTURED_GRID_VTK_WRITER__H_ #define _MITK_UNSTRUCTURED_GRID_VTK_WRITER__H_ diff --git a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.txx b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.txx index fd6b207dca5..3f44c734b9c 100644 --- a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.txx +++ b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_UNSTRUCTURED_GRID_VTKWRITER_TXX_ #define _MITK_UNSTRUCTURED_GRID_VTKWRITER_TXX_ diff --git a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriterFactory.cpp b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriterFactory.cpp index 44c85b630c0..379bdb9bc46 100644 --- a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriterFactory.cpp +++ b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriterFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUnstructuredGridVtkWriterFactory.h" diff --git a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriterFactory.h b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriterFactory.h index 0e84e9804fd..684f12b1dc1 100644 --- a/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriterFactory.h +++ b/Modules/IOExt/Internal/mitkUnstructuredGridVtkWriterFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef UNSTRUCTURED_GRID_WRITERFACTORY_H_HEADER_INCLUDED #define UNSTRUCTURED_GRID_WRITERFACTORY_H_HEADER_INCLUDED diff --git a/Modules/IOExt/Internal/mitkVtkUnstructuredGridReader.cpp b/Modules/IOExt/Internal/mitkVtkUnstructuredGridReader.cpp index a5b3b25f925..13481b99631 100644 --- a/Modules/IOExt/Internal/mitkVtkUnstructuredGridReader.cpp +++ b/Modules/IOExt/Internal/mitkVtkUnstructuredGridReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkUnstructuredGridReader.h" #include #include diff --git a/Modules/IOExt/Internal/mitkVtkUnstructuredGridReader.h b/Modules/IOExt/Internal/mitkVtkUnstructuredGridReader.h index 665d8c6dd84..1c9fa10f9f6 100644 --- a/Modules/IOExt/Internal/mitkVtkUnstructuredGridReader.h +++ b/Modules/IOExt/Internal/mitkVtkUnstructuredGridReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VtkUnstructuredGridReader_H_HEADER_INCLUDED #define VtkUnstructuredGridReader_H_HEADER_INCLUDED diff --git a/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesIOFactory.cpp b/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesIOFactory.cpp index 7dcec83d83b..0060b44fb71 100644 --- a/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesIOFactory.cpp +++ b/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkVolumeTimeSeriesIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesIOFactory.h b/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesIOFactory.h index 140953e0303..c7544f6ef67 100644 --- a/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesIOFactory.h +++ b/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkVtkVolumeTimeSeriesIOFactory_h #define __mitkVtkVolumeTimeSeriesIOFactory_h diff --git a/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesReader.cpp b/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesReader.cpp index 072ba9dac70..5e953eea8fd 100644 --- a/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesReader.cpp +++ b/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkVolumeTimeSeriesReader.h" #include "mitkSurface.h" diff --git a/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesReader.h b/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesReader.h index b17c88348b9..095ca62e43f 100644 --- a/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesReader.h +++ b/Modules/IOExt/Internal/mitkVtkVolumeTimeSeriesReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _Vtk_VOLUME_TIME_SERIES_READER__H_ #define _Vtk_VOLUME_TIME_SERIES_READER__H_ diff --git a/Modules/ImageDenoising/Testing/itkTotalVariationDenoisingImageFilterTest.cpp b/Modules/ImageDenoising/Testing/itkTotalVariationDenoisingImageFilterTest.cpp index b779e7f7218..ac6c9ca2276 100644 --- a/Modules/ImageDenoising/Testing/itkTotalVariationDenoisingImageFilterTest.cpp +++ b/Modules/ImageDenoising/Testing/itkTotalVariationDenoisingImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkImageRegionIterator.h" #include "itkLocalVariationImageFilter.h" diff --git a/Modules/ImageDenoising/itkLocalVariationImageFilter.h b/Modules/ImageDenoising/itkLocalVariationImageFilter.h index 19795e45b79..5270b407a41 100644 --- a/Modules/ImageDenoising/itkLocalVariationImageFilter.h +++ b/Modules/ImageDenoising/itkLocalVariationImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkLocalVariationImageFilter_h #define __itkLocalVariationImageFilter_h diff --git a/Modules/ImageDenoising/itkLocalVariationImageFilter.txx b/Modules/ImageDenoising/itkLocalVariationImageFilter.txx index 3cc4a1823e6..679247d56b1 100644 --- a/Modules/ImageDenoising/itkLocalVariationImageFilter.txx +++ b/Modules/ImageDenoising/itkLocalVariationImageFilter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/ImageDenoising/itkTotalVariationDenoisingImageFilter.h b/Modules/ImageDenoising/itkTotalVariationDenoisingImageFilter.h index 669601bdd9a..8720a8d4f35 100644 --- a/Modules/ImageDenoising/itkTotalVariationDenoisingImageFilter.h +++ b/Modules/ImageDenoising/itkTotalVariationDenoisingImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkTotalVariationDenoisingImageFilter_h #define __itkTotalVariationDenoisingImageFilter_h diff --git a/Modules/ImageDenoising/itkTotalVariationDenoisingImageFilter.txx b/Modules/ImageDenoising/itkTotalVariationDenoisingImageFilter.txx index acbadbb11c6..d5b776752bd 100644 --- a/Modules/ImageDenoising/itkTotalVariationDenoisingImageFilter.txx +++ b/Modules/ImageDenoising/itkTotalVariationDenoisingImageFilter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/ImageDenoising/itkTotalVariationSingleIterationImageFilter.h b/Modules/ImageDenoising/itkTotalVariationSingleIterationImageFilter.h index 3ef983e41a3..e408161153d 100644 --- a/Modules/ImageDenoising/itkTotalVariationSingleIterationImageFilter.h +++ b/Modules/ImageDenoising/itkTotalVariationSingleIterationImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkTotalVariationSingleIterationImageFilter_h #define __itkTotalVariationSingleIterationImageFilter_h diff --git a/Modules/ImageDenoising/itkTotalVariationSingleIterationImageFilter.txx b/Modules/ImageDenoising/itkTotalVariationSingleIterationImageFilter.txx index 488730a2ad1..a8fa6f60631 100644 --- a/Modules/ImageDenoising/itkTotalVariationSingleIterationImageFilter.txx +++ b/Modules/ImageDenoising/itkTotalVariationSingleIterationImageFilter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/ImageDenoising/mitkBilateralFilter.cpp b/Modules/ImageDenoising/mitkBilateralFilter.cpp index 593519f33f4..797804586b3 100644 --- a/Modules/ImageDenoising/mitkBilateralFilter.cpp +++ b/Modules/ImageDenoising/mitkBilateralFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBilateralFilter.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/ImageDenoising/mitkBilateralFilter.h b/Modules/ImageDenoising/mitkBilateralFilter.h index 0177c0eed7a..964990e2fcb 100644 --- a/Modules/ImageDenoising/mitkBilateralFilter.h +++ b/Modules/ImageDenoising/mitkBilateralFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkBilateralFilter_h #define __mitkBilateralFilter_h diff --git a/Modules/ImageExtraction/Testing/mitkCompareImageSliceTestHelper.h b/Modules/ImageExtraction/Testing/mitkCompareImageSliceTestHelper.h index 3fae3a498b2..17df0ea48a1 100644 --- a/Modules/ImageExtraction/Testing/mitkCompareImageSliceTestHelper.h +++ b/Modules/ImageExtraction/Testing/mitkCompareImageSliceTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCompareImageSliceTestHelperhincluded #define mitkCompareImageSliceTestHelperhincluded diff --git a/Modules/ImageExtraction/Testing/mitkExtractDirectedPlaneImageFilterTest.cpp b/Modules/ImageExtraction/Testing/mitkExtractDirectedPlaneImageFilterTest.cpp index e3dcde6bcdf..1bcc6d5245a 100644 --- a/Modules/ImageExtraction/Testing/mitkExtractDirectedPlaneImageFilterTest.cpp +++ b/Modules/ImageExtraction/Testing/mitkExtractDirectedPlaneImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // //#include "mitkExtractDirectedPlaneImageFilter.h" //#include "mitkStandardFileLocations.h" diff --git a/Modules/ImageExtraction/Testing/mitkExtractImageFilterTest.cpp b/Modules/ImageExtraction/Testing/mitkExtractImageFilterTest.cpp index 177640f4c3d..e77d972d268 100644 --- a/Modules/ImageExtraction/Testing/mitkExtractImageFilterTest.cpp +++ b/Modules/ImageExtraction/Testing/mitkExtractImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCompareImageSliceTestHelper.h" #include "mitkCoreObjectFactory.h" diff --git a/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilter.cpp b/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilter.cpp index 0babfd09a4a..14922b27b89 100644 --- a/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilter.cpp +++ b/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtractDirectedPlaneImageFilter.h" #include "mitkAbstractTransformGeometry.h" diff --git a/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilter.h b/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilter.h index dcbff663690..6a7ede7531d 100644 --- a/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilter.h +++ b/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkExtractDirectedPlaneImageFilter_h_Included #define mitkExtractDirectedPlaneImageFilter_h_Included diff --git a/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilterNew.cpp b/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilterNew.cpp index b8b98cdc13a..6070306cfa6 100644 --- a/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilterNew.cpp +++ b/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilterNew.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtractDirectedPlaneImageFilterNew.h" #include "itkImageRegionIterator.h" diff --git a/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilterNew.h b/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilterNew.h index f6a8c471dec..c4d80cf1ab5 100644 --- a/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilterNew.h +++ b/Modules/ImageExtraction/mitkExtractDirectedPlaneImageFilterNew.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkExtractDirectedPlaneImageFilterNew_h_Included #define mitkExtractDirectedPlaneImageFilterNew_h_Included diff --git a/Modules/ImageExtraction/mitkExtractImageFilter.cpp b/Modules/ImageExtraction/mitkExtractImageFilter.cpp index ab0c2e8079d..e23f3f9537c 100644 --- a/Modules/ImageExtraction/mitkExtractImageFilter.cpp +++ b/Modules/ImageExtraction/mitkExtractImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtractImageFilter.h" #include "mitkITKImageImport.h" diff --git a/Modules/ImageExtraction/mitkExtractImageFilter.h b/Modules/ImageExtraction/mitkExtractImageFilter.h index 7d2ea190faa..513435797f7 100644 --- a/Modules/ImageExtraction/mitkExtractImageFilter.h +++ b/Modules/ImageExtraction/mitkExtractImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkExtractImageFilter_h_Included #define mitkExtractImageFilter_h_Included diff --git a/Modules/ImageStatistics/Testing/mitkImageStatisticsCalculatorTest.cpp b/Modules/ImageStatistics/Testing/mitkImageStatisticsCalculatorTest.cpp index 2237e4b7ce6..e06482a23de 100644 --- a/Modules/ImageStatistics/Testing/mitkImageStatisticsCalculatorTest.cpp +++ b/Modules/ImageStatistics/Testing/mitkImageStatisticsCalculatorTest.cpp @@ -1,19 +1,15 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageStatisticsCalculator.h" #include #include @@ -76,7 +72,7 @@ class mitkImageStatisticsCalculatorTestSuite : public mitk::TestFixture void TestCase10(); void TestCase11(); void TestCase12(); - + void TestPic3DCroppedNoMask(); void TestPic3DCroppedBinMask(); void TestPic3DCroppedMultilabelMask(); diff --git a/Modules/ImageStatistics/Testing/mitkImageStatisticsContainerManagerTest.cpp b/Modules/ImageStatistics/Testing/mitkImageStatisticsContainerManagerTest.cpp index 5ff94409cb7..69081a273eb 100644 --- a/Modules/ImageStatistics/Testing/mitkImageStatisticsContainerManagerTest.cpp +++ b/Modules/ImageStatistics/Testing/mitkImageStatisticsContainerManagerTest.cpp @@ -1,13 +1,14 @@ -/*=================================================================== +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. + +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. -See LICENSE.txt or http://www.mitk.org for details. -===================================================================*/ + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ // Testing #include "mitkTestingMacros.h" #include "mitkTestFixture.h" @@ -175,7 +176,7 @@ class mitkImageStatisticsContainerManagerTestSuite : public mitk::TestFixture //new rule: (image-->statistics2) --> returns statistic because statistic2 has no mask connection CreateNodeRelationImage(m_statisticsContainer2.GetPointer(), m_image.GetPointer()); - + auto statisticsNode2 = mitk::CreateImageStatisticsNode(m_statisticsContainer2, "testStatistics2"); standaloneDataStorage->Add(statisticsNode2); @@ -248,4 +249,4 @@ class mitkImageStatisticsContainerManagerTestSuite : public mitk::TestFixture } }; -MITK_TEST_SUITE_REGISTRATION(mitkImageStatisticsContainerManager) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkImageStatisticsContainerManager) diff --git a/Modules/ImageStatistics/Testing/mitkImageStatisticsHotspotTest.cpp b/Modules/ImageStatistics/Testing/mitkImageStatisticsHotspotTest.cpp index 2c527c2df00..b993b0f89ee 100644 --- a/Modules/ImageStatistics/Testing/mitkImageStatisticsHotspotTest.cpp +++ b/Modules/ImageStatistics/Testing/mitkImageStatisticsHotspotTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageStatisticsCalculator.h" #include "itkMultiGaussianImageSource.h" diff --git a/Modules/ImageStatistics/Testing/mitkImageStatisticsTextureAnalysisTest.cpp b/Modules/ImageStatistics/Testing/mitkImageStatisticsTextureAnalysisTest.cpp index 039239e9673..f55425c8726 100644 --- a/Modules/ImageStatistics/Testing/mitkImageStatisticsTextureAnalysisTest.cpp +++ b/Modules/ImageStatistics/Testing/mitkImageStatisticsTextureAnalysisTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "itkImage.h" diff --git a/Modules/ImageStatistics/Testing/mitkMultiGaussianTest.cpp b/Modules/ImageStatistics/Testing/mitkMultiGaussianTest.cpp index 3f70bc9d9d1..26e0c1e563c 100644 --- a/Modules/ImageStatistics/Testing/mitkMultiGaussianTest.cpp +++ b/Modules/ImageStatistics/Testing/mitkMultiGaussianTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "itkMultiGaussianImageSource.h" diff --git a/Modules/ImageStatistics/Testing/mitkPointSetDifferenceStatisticsCalculatorTest.cpp b/Modules/ImageStatistics/Testing/mitkPointSetDifferenceStatisticsCalculatorTest.cpp index 50e86bcc507..c1ad7cc852e 100644 --- a/Modules/ImageStatistics/Testing/mitkPointSetDifferenceStatisticsCalculatorTest.cpp +++ b/Modules/ImageStatistics/Testing/mitkPointSetDifferenceStatisticsCalculatorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "mitkPointSetDifferenceStatisticsCalculator.h" diff --git a/Modules/ImageStatistics/Testing/mitkPointSetStatisticsCalculatorTest.cpp b/Modules/ImageStatistics/Testing/mitkPointSetStatisticsCalculatorTest.cpp index 1e765f70625..958857b93c3 100644 --- a/Modules/ImageStatistics/Testing/mitkPointSetStatisticsCalculatorTest.cpp +++ b/Modules/ImageStatistics/Testing/mitkPointSetStatisticsCalculatorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStandardFileLocations.h" #include "mitkTestingMacros.h" diff --git a/Modules/ImageStatistics/mitkExtendedLabelStatisticsImageFilter.h b/Modules/ImageStatistics/mitkExtendedLabelStatisticsImageFilter.h index ec06faaf9bd..37352663b75 100644 --- a/Modules/ImageStatistics/mitkExtendedLabelStatisticsImageFilter.h +++ b/Modules/ImageStatistics/mitkExtendedLabelStatisticsImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkExtendedLabelStatisticsImageFilter #define __mitkExtendedLabelStatisticsImageFilter diff --git a/Modules/ImageStatistics/mitkExtendedLabelStatisticsImageFilter.hxx b/Modules/ImageStatistics/mitkExtendedLabelStatisticsImageFilter.hxx index 403574bbda0..794133be0ad 100644 --- a/Modules/ImageStatistics/mitkExtendedLabelStatisticsImageFilter.hxx +++ b/Modules/ImageStatistics/mitkExtendedLabelStatisticsImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkExtendedLabelStatisticsImageFilter_hxx #define _mitkExtendedLabelStatisticsImageFilter_hxx diff --git a/Modules/ImageStatistics/mitkExtendedStatisticsImageFilter.h b/Modules/ImageStatistics/mitkExtendedStatisticsImageFilter.h index 92bcdebbbce..00236bce162 100644 --- a/Modules/ImageStatistics/mitkExtendedStatisticsImageFilter.h +++ b/Modules/ImageStatistics/mitkExtendedStatisticsImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkExtendedStatisticsImageFilter #define __mitkExtendedStatisticsImageFilter diff --git a/Modules/ImageStatistics/mitkExtendedStatisticsImageFilter.hxx b/Modules/ImageStatistics/mitkExtendedStatisticsImageFilter.hxx index bb8e3b7e3f3..7ade1af4e93 100644 --- a/Modules/ImageStatistics/mitkExtendedStatisticsImageFilter.hxx +++ b/Modules/ImageStatistics/mitkExtendedStatisticsImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkExtendedStatisticsImageFilter_hxx #define __mitkExtendedStatisticsImageFilter_hxx diff --git a/Modules/ImageStatistics/mitkHistogramStatisticsCalculator.cpp b/Modules/ImageStatistics/mitkHistogramStatisticsCalculator.cpp index be868342618..02c0241e7b2 100644 --- a/Modules/ImageStatistics/mitkHistogramStatisticsCalculator.cpp +++ b/Modules/ImageStatistics/mitkHistogramStatisticsCalculator.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include diff --git a/Modules/ImageStatistics/mitkHistogramStatisticsCalculator.h b/Modules/ImageStatistics/mitkHistogramStatisticsCalculator.h index a7e3e3d450d..0f1fa85d92e 100644 --- a/Modules/ImageStatistics/mitkHistogramStatisticsCalculator.h +++ b/Modules/ImageStatistics/mitkHistogramStatisticsCalculator.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKHISTOGRAMSTATISTICSCALCULATOR #define MITKHISTOGRAMSTATISTICSCALCULATOR diff --git a/Modules/ImageStatistics/mitkHotspotMaskGenerator.cpp b/Modules/ImageStatistics/mitkHotspotMaskGenerator.cpp index 9e594ba377a..83814b422cb 100644 --- a/Modules/ImageStatistics/mitkHotspotMaskGenerator.cpp +++ b/Modules/ImageStatistics/mitkHotspotMaskGenerator.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include #include diff --git a/Modules/ImageStatistics/mitkHotspotMaskGenerator.h b/Modules/ImageStatistics/mitkHotspotMaskGenerator.h index 88ec1265067..dbe0bbf1f13 100644 --- a/Modules/ImageStatistics/mitkHotspotMaskGenerator.h +++ b/Modules/ImageStatistics/mitkHotspotMaskGenerator.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKHOTSPOTCALCULATOR_H #define MITKHOTSPOTCALCULATOR_H diff --git a/Modules/ImageStatistics/mitkIgnorePixelMaskGenerator.cpp b/Modules/ImageStatistics/mitkIgnorePixelMaskGenerator.cpp index 4e419497517..3f35368492e 100644 --- a/Modules/ImageStatistics/mitkIgnorePixelMaskGenerator.cpp +++ b/Modules/ImageStatistics/mitkIgnorePixelMaskGenerator.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include #include diff --git a/Modules/ImageStatistics/mitkIgnorePixelMaskGenerator.h b/Modules/ImageStatistics/mitkIgnorePixelMaskGenerator.h index 55619cabe8b..1b251671edd 100644 --- a/Modules/ImageStatistics/mitkIgnorePixelMaskGenerator.h +++ b/Modules/ImageStatistics/mitkIgnorePixelMaskGenerator.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKIGNOREPIXELMASKGEN_ #define MITKIGNOREPIXELMASKGEN_ diff --git a/Modules/ImageStatistics/mitkImageMaskGenerator.cpp b/Modules/ImageStatistics/mitkImageMaskGenerator.cpp index d1ebd9366e9..d8f37a4e21d 100644 --- a/Modules/ImageStatistics/mitkImageMaskGenerator.cpp +++ b/Modules/ImageStatistics/mitkImageMaskGenerator.cpp @@ -1,4 +1,14 @@ +/*============================================================================ +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ #include #include diff --git a/Modules/ImageStatistics/mitkImageMaskGenerator.h b/Modules/ImageStatistics/mitkImageMaskGenerator.h index 6dd3fe13229..730732498f7 100644 --- a/Modules/ImageStatistics/mitkImageMaskGenerator.h +++ b/Modules/ImageStatistics/mitkImageMaskGenerator.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkBinaryMaskGenerator #define mitkBinaryMaskGenerator diff --git a/Modules/ImageStatistics/mitkImageStatisticsCalculator.cpp b/Modules/ImageStatistics/mitkImageStatisticsCalculator.cpp index 9aebc4c34c5..e7f7f64ccbc 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsCalculator.cpp +++ b/Modules/ImageStatistics/mitkImageStatisticsCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageStatisticsCalculator.h" #include diff --git a/Modules/ImageStatistics/mitkImageStatisticsCalculator.h b/Modules/ImageStatistics/mitkImageStatisticsCalculator.h index 1099a4ae141..fb24c60b41b 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsCalculator.h +++ b/Modules/ImageStatistics/mitkImageStatisticsCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGESTATISTICSCALCULATOR #define MITKIMAGESTATISTICSCALCULATOR diff --git a/Modules/ImageStatistics/mitkImageStatisticsConstants.cpp b/Modules/ImageStatistics/mitkImageStatisticsConstants.cpp index a1909086b89..6ab36532249 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsConstants.cpp +++ b/Modules/ImageStatistics/mitkImageStatisticsConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageStatisticsConstants.h" diff --git a/Modules/ImageStatistics/mitkImageStatisticsConstants.h b/Modules/ImageStatistics/mitkImageStatisticsConstants.h index 1e38b75081c..d42ef2fa3a6 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsConstants.h +++ b/Modules/ImageStatistics/mitkImageStatisticsConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_IMAGE_STATISTICS_CONSTANTS_H_ #define _MITK_IMAGE_STATISTICS_CONSTANTS_H_ diff --git a/Modules/ImageStatistics/mitkImageStatisticsContainer.cpp b/Modules/ImageStatistics/mitkImageStatisticsContainer.cpp index b4a84118920..43399737799 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsContainer.cpp +++ b/Modules/ImageStatistics/mitkImageStatisticsContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ImageStatistics/mitkImageStatisticsContainer.h b/Modules/ImageStatistics/mitkImageStatisticsContainer.h index 1a3c0eb202f..2948bca5b9f 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsContainer.h +++ b/Modules/ImageStatistics/mitkImageStatisticsContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGESTATISTICSCONTAINER #define MITKIMAGESTATISTICSCONTAINER diff --git a/Modules/ImageStatistics/mitkImageStatisticsContainerManager.cpp b/Modules/ImageStatistics/mitkImageStatisticsContainerManager.cpp index 847916decab..2710c49a63c 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsContainerManager.cpp +++ b/Modules/ImageStatistics/mitkImageStatisticsContainerManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageStatisticsContainerManager.h" @@ -45,7 +41,7 @@ mitk::ImageStatisticsContainer::ConstPointer mitk::ImageStatisticsContainerManag for (const auto& node : *statisticContainerCandidateNodes) { statisticContainerCandidateNodesFiltered->push_back(node); } - + if (statisticContainerCandidateNodesFiltered->empty()) { return nullptr; } diff --git a/Modules/ImageStatistics/mitkImageStatisticsContainerManager.h b/Modules/ImageStatistics/mitkImageStatisticsContainerManager.h index 9f1b7ccfa61..403724fbe52 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsContainerManager.h +++ b/Modules/ImageStatistics/mitkImageStatisticsContainerManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkImageStatisticsContainerManager_H__INCLUDED #define QmitkImageStatisticsContainerManager_H__INCLUDED diff --git a/Modules/ImageStatistics/mitkImageStatisticsContainerNodeHelper.cpp b/Modules/ImageStatistics/mitkImageStatisticsContainerNodeHelper.cpp index 90904c20fdc..6eda3ca7c41 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsContainerNodeHelper.cpp +++ b/Modules/ImageStatistics/mitkImageStatisticsContainerNodeHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageStatisticsContainerNodeHelper.h" #include diff --git a/Modules/ImageStatistics/mitkImageStatisticsContainerNodeHelper.h b/Modules/ImageStatistics/mitkImageStatisticsContainerNodeHelper.h index 9c5bf00fb0b..f021e0a0bb6 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsContainerNodeHelper.h +++ b/Modules/ImageStatistics/mitkImageStatisticsContainerNodeHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGESTATISTICSCONTAINERNODEHELPER #define MITKIMAGESTATISTICSCONTAINERNODEHELPER diff --git a/Modules/ImageStatistics/mitkImageStatisticsPredicateHelper.cpp b/Modules/ImageStatistics/mitkImageStatisticsPredicateHelper.cpp index d40d6cf33c1..623924f0b39 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsPredicateHelper.cpp +++ b/Modules/ImageStatistics/mitkImageStatisticsPredicateHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageStatisticsPredicateHelper.h" diff --git a/Modules/ImageStatistics/mitkImageStatisticsPredicateHelper.h b/Modules/ImageStatistics/mitkImageStatisticsPredicateHelper.h index 5fe1a472458..354cba5a6dc 100644 --- a/Modules/ImageStatistics/mitkImageStatisticsPredicateHelper.h +++ b/Modules/ImageStatistics/mitkImageStatisticsPredicateHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPREDICATEHELPER_H #define MITKPREDICATEHELPER_H diff --git a/Modules/ImageStatistics/mitkIntensityProfile.cpp b/Modules/ImageStatistics/mitkIntensityProfile.cpp index f7e6d1491d8..6523ef049aa 100644 --- a/Modules/ImageStatistics/mitkIntensityProfile.cpp +++ b/Modules/ImageStatistics/mitkIntensityProfile.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ImageStatistics/mitkIntensityProfile.h b/Modules/ImageStatistics/mitkIntensityProfile.h index 361ef34268b..40600127267 100644 --- a/Modules/ImageStatistics/mitkIntensityProfile.h +++ b/Modules/ImageStatistics/mitkIntensityProfile.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIntensityProfile_h #define mitkIntensityProfile_h diff --git a/Modules/ImageStatistics/mitkMaskGenerator.cpp b/Modules/ImageStatistics/mitkMaskGenerator.cpp index 611e0fb7aaf..af8b4a812b6 100644 --- a/Modules/ImageStatistics/mitkMaskGenerator.cpp +++ b/Modules/ImageStatistics/mitkMaskGenerator.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include namespace mitk diff --git a/Modules/ImageStatistics/mitkMaskGenerator.h b/Modules/ImageStatistics/mitkMaskGenerator.h index 112e669e37c..b8a9253b877 100644 --- a/Modules/ImageStatistics/mitkMaskGenerator.h +++ b/Modules/ImageStatistics/mitkMaskGenerator.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKMASKGENERATOR #define MITKMASKGENERATOR diff --git a/Modules/ImageStatistics/mitkMaskUtilities.cpp b/Modules/ImageStatistics/mitkMaskUtilities.cpp index 9da8e3b2aab..dd478f69bb2 100644 --- a/Modules/ImageStatistics/mitkMaskUtilities.cpp +++ b/Modules/ImageStatistics/mitkMaskUtilities.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKMASKUTIL_CPP #define MITKMASKUTIL_CPP diff --git a/Modules/ImageStatistics/mitkMaskUtilities.h b/Modules/ImageStatistics/mitkMaskUtilities.h index 79d93ab86b3..08965afab5a 100644 --- a/Modules/ImageStatistics/mitkMaskUtilities.h +++ b/Modules/ImageStatistics/mitkMaskUtilities.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKMASKUTIL #define MITKMASKUTIL diff --git a/Modules/ImageStatistics/mitkMinMaxImageFilterWithIndex.h b/Modules/ImageStatistics/mitkMinMaxImageFilterWithIndex.h index 1e746fc0432..99ec49358c9 100644 --- a/Modules/ImageStatistics/mitkMinMaxImageFilterWithIndex.h +++ b/Modules/ImageStatistics/mitkMinMaxImageFilterWithIndex.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITK_MINMAXIMAGEFILTERWITHINDEX_H #define MITK_MINMAXIMAGEFILTERWITHINDEX_H diff --git a/Modules/ImageStatistics/mitkMinMaxLabelmageFilterWithIndex.h b/Modules/ImageStatistics/mitkMinMaxLabelmageFilterWithIndex.h index 46b16262cdc..2d535951780 100644 --- a/Modules/ImageStatistics/mitkMinMaxLabelmageFilterWithIndex.h +++ b/Modules/ImageStatistics/mitkMinMaxLabelmageFilterWithIndex.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITK_MINMAXLABELIMAGEFILTERWITHINDEX_H #define MITK_MINMAXLABELIMAGEFILTERWITHINDEX_H diff --git a/Modules/ImageStatistics/mitkMultiLabelMaskGenerator.cpp b/Modules/ImageStatistics/mitkMultiLabelMaskGenerator.cpp index e3d467c857f..b615da27de7 100644 --- a/Modules/ImageStatistics/mitkMultiLabelMaskGenerator.cpp +++ b/Modules/ImageStatistics/mitkMultiLabelMaskGenerator.cpp @@ -1 +1,13 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include diff --git a/Modules/ImageStatistics/mitkMultiLabelMaskGenerator.h b/Modules/ImageStatistics/mitkMultiLabelMaskGenerator.h index 830ed2003c3..75eba26aaf1 100644 --- a/Modules/ImageStatistics/mitkMultiLabelMaskGenerator.h +++ b/Modules/ImageStatistics/mitkMultiLabelMaskGenerator.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKMULTILABELMASKGENERATOR #define MITKMULTILABELMASKGENERATOR diff --git a/Modules/ImageStatistics/mitkPlanarFigureMaskGenerator.cpp b/Modules/ImageStatistics/mitkPlanarFigureMaskGenerator.cpp index f80ec0bdc82..4b92f1931ea 100644 --- a/Modules/ImageStatistics/mitkPlanarFigureMaskGenerator.cpp +++ b/Modules/ImageStatistics/mitkPlanarFigureMaskGenerator.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include #include #include diff --git a/Modules/ImageStatistics/mitkPlanarFigureMaskGenerator.h b/Modules/ImageStatistics/mitkPlanarFigureMaskGenerator.h index 6d5c632109d..0c8898b46da 100644 --- a/Modules/ImageStatistics/mitkPlanarFigureMaskGenerator.h +++ b/Modules/ImageStatistics/mitkPlanarFigureMaskGenerator.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKPLANARFIGUREMASKGENERATOR #define MITKPLANARFIGUREMASKGENERATOR diff --git a/Modules/ImageStatistics/mitkPointSetDifferenceStatisticsCalculator.cpp b/Modules/ImageStatistics/mitkPointSetDifferenceStatisticsCalculator.cpp index f28d1163df9..a6577cd8d9a 100644 --- a/Modules/ImageStatistics/mitkPointSetDifferenceStatisticsCalculator.cpp +++ b/Modules/ImageStatistics/mitkPointSetDifferenceStatisticsCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetDifferenceStatisticsCalculator.h" diff --git a/Modules/ImageStatistics/mitkPointSetDifferenceStatisticsCalculator.h b/Modules/ImageStatistics/mitkPointSetDifferenceStatisticsCalculator.h index 3fc2ba5427a..bc66ef47fa8 100644 --- a/Modules/ImageStatistics/mitkPointSetDifferenceStatisticsCalculator.h +++ b/Modules/ImageStatistics/mitkPointSetDifferenceStatisticsCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PointSetDifferenceStatisticsCalculator_H diff --git a/Modules/ImageStatistics/mitkPointSetStatisticsCalculator.cpp b/Modules/ImageStatistics/mitkPointSetStatisticsCalculator.cpp index ccabbb3b48c..9e0597cdc0e 100644 --- a/Modules/ImageStatistics/mitkPointSetStatisticsCalculator.cpp +++ b/Modules/ImageStatistics/mitkPointSetStatisticsCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetStatisticsCalculator.h" diff --git a/Modules/ImageStatistics/mitkPointSetStatisticsCalculator.h b/Modules/ImageStatistics/mitkPointSetStatisticsCalculator.h index 9495c501b75..5c406d2f50e 100644 --- a/Modules/ImageStatistics/mitkPointSetStatisticsCalculator.h +++ b/Modules/ImageStatistics/mitkPointSetStatisticsCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PointSetSTATISTICSCALCULATOR_H diff --git a/Modules/ImageStatistics/mitkStatisticsToImageRelationRule.cpp b/Modules/ImageStatistics/mitkStatisticsToImageRelationRule.cpp index 97969d183e3..ba6cd7040fc 100644 --- a/Modules/ImageStatistics/mitkStatisticsToImageRelationRule.cpp +++ b/Modules/ImageStatistics/mitkStatisticsToImageRelationRule.cpp @@ -1,21 +1,17 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStatisticsToImageRelationRule.h" -mitk::StatisticsToImageRelationRule::StatisticsToImageRelationRule() : +mitk::StatisticsToImageRelationRule::StatisticsToImageRelationRule() : GenericIDRelationRule("statisticsToImage", "relation between ImageStatisticsContainer and Image that was used as computation input", "ImageStatisticsContainer", "Image"){ } diff --git a/Modules/ImageStatistics/mitkStatisticsToImageRelationRule.h b/Modules/ImageStatistics/mitkStatisticsToImageRelationRule.h index 20325c7e3fa..c6f0ad0b233 100644 --- a/Modules/ImageStatistics/mitkStatisticsToImageRelationRule.h +++ b/Modules/ImageStatistics/mitkStatisticsToImageRelationRule.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkStatisticsToImageRelationRule_h #define mitkStatisticsToImageRelationRule_h diff --git a/Modules/ImageStatistics/mitkStatisticsToMaskRelationRule.cpp b/Modules/ImageStatistics/mitkStatisticsToMaskRelationRule.cpp index 79f52458142..a2d802f8f99 100644 --- a/Modules/ImageStatistics/mitkStatisticsToMaskRelationRule.cpp +++ b/Modules/ImageStatistics/mitkStatisticsToMaskRelationRule.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStatisticsToMaskRelationRule.h" diff --git a/Modules/ImageStatistics/mitkStatisticsToMaskRelationRule.h b/Modules/ImageStatistics/mitkStatisticsToMaskRelationRule.h index 1bee1304df6..2164d23826e 100644 --- a/Modules/ImageStatistics/mitkStatisticsToMaskRelationRule.h +++ b/Modules/ImageStatistics/mitkStatisticsToMaskRelationRule.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkStatisticsToMaskRelationRule_h #define mitkStatisticsToMaskRelationRule_h diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkHistogramVisualizationWidget.cpp b/Modules/ImageStatisticsUI/Qmitk/QmitkHistogramVisualizationWidget.cpp index 854c1aa2528..b7fabed2c23 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkHistogramVisualizationWidget.cpp +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkHistogramVisualizationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkHistogramVisualizationWidget.h" @@ -195,4 +191,4 @@ void QmitkHistogramVisualizationWidget::OnMaxValueSpinBoxValueChanged() m_Controls.doubleSpinBoxMinValue->setMaximum(m_Controls.doubleSpinBoxMaxValue->value()-1); m_Controls.chartWidget->SetMinMaxValueXView(m_Controls.doubleSpinBoxMinValue->value(),m_Controls.doubleSpinBoxMaxValue->value()); m_Controls.chartWidget->Show(); -} \ No newline at end of file +} diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkHistogramVisualizationWidget.h b/Modules/ImageStatisticsUI/Qmitk/QmitkHistogramVisualizationWidget.h index 2ce54ef3114..71633b7524e 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkHistogramVisualizationWidget.h +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkHistogramVisualizationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkHistogramVisualizationWidget_H__INCLUDED #define QmitkHistogramVisualizationWidget_H__INCLUDED @@ -80,4 +76,4 @@ class MITKIMAGESTATISTICSUI_EXPORT QmitkHistogramVisualizationWidget : public QW itk::Statistics::Histogram::ConstPointer m_Histogram; }; -#endif // QmitkHistogramVisualizationWidget_H__INCLUDED \ No newline at end of file +#endif // QmitkHistogramVisualizationWidget_H__INCLUDED diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsCalculationJob.cpp b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsCalculationJob.cpp index 360293d6191..c07bcda3864 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsCalculationJob.cpp +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsCalculationJob.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkImageStatisticsCalculationJob.h" diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsCalculationJob.h b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsCalculationJob.h index c5e4e4dde8e..4ddf54a65ed 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsCalculationJob.h +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsCalculationJob.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKIMAGESTATISTICSCALCULATIONTHREAD_H_INCLUDED #define QMITKIMAGESTATISTICSCALCULATIONTHREAD_H_INCLUDED diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeItem.cpp b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeItem.cpp index 7042b3210d2..43ec8cf2f6f 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeItem.cpp +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkImageStatisticsTreeItem.h" diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeItem.h b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeItem.h index f28ca97cf3a..055cb549913 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeItem.h +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkImageStatisticsTreeItem_h #define QmitkImageStatisticsTreeItem_h diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeModel.cpp b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeModel.cpp index a47cc5d8386..fb201ae56c1 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeModel.cpp +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkImageStatisticsTreeModel.h" diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeModel.h b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeModel.h index e954a63372e..47977197020 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeModel.h +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsTreeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkImageStatisticsTreeModel_h diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsWidget.cpp b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsWidget.cpp index 4236f235168..23e9c0cc994 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsWidget.cpp +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkImageStatisticsWidget.h" diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsWidget.h b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsWidget.h index 2805fc717fa..2635b6fd29a 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsWidget.h +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkImageStatisticsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkImageStatisticsWidget_H__INCLUDED #define QmitkImageStatisticsWidget_H__INCLUDED diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkIntensityProfileVisualizationWidget.cpp b/Modules/ImageStatisticsUI/Qmitk/QmitkIntensityProfileVisualizationWidget.cpp index 9af758ca5b8..aa12818e915 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkIntensityProfileVisualizationWidget.cpp +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkIntensityProfileVisualizationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIntensityProfileVisualizationWidget.h" diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkIntensityProfileVisualizationWidget.h b/Modules/ImageStatisticsUI/Qmitk/QmitkIntensityProfileVisualizationWidget.h index 955e4d10d03..1517d1ea69a 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkIntensityProfileVisualizationWidget.h +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkIntensityProfileVisualizationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIntensityProfileVisualizationWidget_H__INCLUDED #define QmitkIntensityProfileVisualizationWidget_H__INCLUDED @@ -65,4 +61,4 @@ class MITKIMAGESTATISTICSUI_EXPORT QmitkIntensityProfileVisualizationWidget : pu std::vector m_IntensityProfileList; }; -#endif //QmitkIntensityProfileVisualizationWidget_H__INCLUDED \ No newline at end of file +#endif //QmitkIntensityProfileVisualizationWidget_H__INCLUDED diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkStatisticsModelToStringConverter.cpp b/Modules/ImageStatisticsUI/Qmitk/QmitkStatisticsModelToStringConverter.cpp index b9a49a52a70..168c04cd40e 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkStatisticsModelToStringConverter.cpp +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkStatisticsModelToStringConverter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStatisticsModelToStringConverter.h" #include "mitkExceptionMacro.h" diff --git a/Modules/ImageStatisticsUI/Qmitk/QmitkStatisticsModelToStringConverter.h b/Modules/ImageStatisticsUI/Qmitk/QmitkStatisticsModelToStringConverter.h index 445989e5d8c..51430815d8d 100644 --- a/Modules/ImageStatisticsUI/Qmitk/QmitkStatisticsModelToStringConverter.h +++ b/Modules/ImageStatisticsUI/Qmitk/QmitkStatisticsModelToStringConverter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkTableModelToQString_H__INCLUDED #define QmitkTableModelToQString_H__INCLUDED @@ -23,9 +19,9 @@ See LICENSE.txt or http://www.mitk.org for details. \brief Converts the content of the statistics model to a string \details -The content of a table model is converted to a string. Each cell is converted to a string. Default -oder: iteration over rows. The line separation delimiter (default: '\n') and the column separation -delimiter (default: ',') can be chosen. It also can be chosen if the headers should +The content of a table model is converted to a string. Each cell is converted to a string. Default +oder: iteration over rows. The line separation delimiter (default: '\n') and the column separation +delimiter (default: ',') can be chosen. It also can be chosen if the headers should be exported to the string. By default, the produced string is csv conform diff --git a/Modules/IpPicSupportIO/Internal/mitkIpPicSupportIOActivator.cpp b/Modules/IpPicSupportIO/Internal/mitkIpPicSupportIOActivator.cpp index cbc66505e1b..bda1a4b95aa 100644 --- a/Modules/IpPicSupportIO/Internal/mitkIpPicSupportIOActivator.cpp +++ b/Modules/IpPicSupportIO/Internal/mitkIpPicSupportIOActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/IpPicSupportIO/Internal/mitkPicFileReader.cpp b/Modules/IpPicSupportIO/Internal/mitkPicFileReader.cpp index e2b76f3b87d..2a5c956b32e 100644 --- a/Modules/IpPicSupportIO/Internal/mitkPicFileReader.cpp +++ b/Modules/IpPicSupportIO/Internal/mitkPicFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPicFileReader.h" #include "mitkPicHelper.h" diff --git a/Modules/IpPicSupportIO/Internal/mitkPicFileReader.h b/Modules/IpPicSupportIO/Internal/mitkPicFileReader.h index 89aff319d0d..e22f15614f1 100644 --- a/Modules/IpPicSupportIO/Internal/mitkPicFileReader.h +++ b/Modules/IpPicSupportIO/Internal/mitkPicFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PICFILEREADER_H_HEADER_INCLUDED_C1F48A22 #define PICFILEREADER_H_HEADER_INCLUDED_C1F48A22 diff --git a/Modules/IpPicSupportIO/Internal/mitkPicHelper.cpp b/Modules/IpPicSupportIO/Internal/mitkPicHelper.cpp index 867dd117d92..6a9c030958a 100644 --- a/Modules/IpPicSupportIO/Internal/mitkPicHelper.cpp +++ b/Modules/IpPicSupportIO/Internal/mitkPicHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPicHelper.h" #include "mitkConfig.h" diff --git a/Modules/IpPicSupportIO/Internal/mitkPicHelper.h b/Modules/IpPicSupportIO/Internal/mitkPicHelper.h index d3113eacfc6..7ac64991b5b 100644 --- a/Modules/IpPicSupportIO/Internal/mitkPicHelper.h +++ b/Modules/IpPicSupportIO/Internal/mitkPicHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPICHELPER_H_HEADER_INCLUDED_C1F4DAB4 #define MITKPICHELPER_H_HEADER_INCLUDED_C1F4DAB4 diff --git a/Modules/IpPicSupportIO/Testing/mitkPicFileIOTest.cpp b/Modules/IpPicSupportIO/Testing/mitkPicFileIOTest.cpp index ed288067cfb..826517ec8f7 100644 --- a/Modules/IpPicSupportIO/Testing/mitkPicFileIOTest.cpp +++ b/Modules/IpPicSupportIO/Testing/mitkPicFileIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImage.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/IpPicSupportIO/Testing/mitkPicFileReaderTest.cpp b/Modules/IpPicSupportIO/Testing/mitkPicFileReaderTest.cpp index da829cf4473..b01188d57d4 100644 --- a/Modules/IpPicSupportIO/Testing/mitkPicFileReaderTest.cpp +++ b/Modules/IpPicSupportIO/Testing/mitkPicFileReaderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" diff --git a/Modules/LegacyGL/mitkGL.h b/Modules/LegacyGL/mitkGL.h index fc1398efc96..8141f631c76 100644 --- a/Modules/LegacyGL/mitkGL.h +++ b/Modules/LegacyGL/mitkGL.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGL_H_HEADER_INCLUDED_C1C53722 #define MITKGL_H_HEADER_INCLUDED_C1C53722 diff --git a/Modules/LegacyGL/mitkGLMapper.cpp b/Modules/LegacyGL/mitkGLMapper.cpp index e8cb8a16088..188a017d960 100644 --- a/Modules/LegacyGL/mitkGLMapper.cpp +++ b/Modules/LegacyGL/mitkGLMapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGLMapper.h" #include "mitkGL.h" diff --git a/Modules/LegacyGL/mitkGLMapper.h b/Modules/LegacyGL/mitkGLMapper.h index 342a57b17ea..a0399c125dc 100644 --- a/Modules/LegacyGL/mitkGLMapper.h +++ b/Modules/LegacyGL/mitkGLMapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGLMAPPER_H_HEADER_INCLUDED_C197C872 #define MITKGLMAPPER_H_HEADER_INCLUDED_C197C872 diff --git a/Modules/LegacyGL/mitkGLMapper2D.h b/Modules/LegacyGL/mitkGLMapper2D.h index 2a6a4d333b1..8322ed989e1 100644 --- a/Modules/LegacyGL/mitkGLMapper2D.h +++ b/Modules/LegacyGL/mitkGLMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGLMAPPER2D_H_HEADER_INCLUDED_C197C872 #define MITKGLMAPPER2D_H_HEADER_INCLUDED_C197C872 diff --git a/Modules/LegacyGL/mitkVtkGLMapperWrapper.cpp b/Modules/LegacyGL/mitkVtkGLMapperWrapper.cpp index 8c6ed6834d2..b86b02d8640 100644 --- a/Modules/LegacyGL/mitkVtkGLMapperWrapper.cpp +++ b/Modules/LegacyGL/mitkVtkGLMapperWrapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkGLMapperWrapper.h" diff --git a/Modules/LegacyGL/mitkVtkGLMapperWrapper.h b/Modules/LegacyGL/mitkVtkGLMapperWrapper.h index b841e7efc16..2bdd03d696d 100644 --- a/Modules/LegacyGL/mitkVtkGLMapperWrapper.h +++ b/Modules/LegacyGL/mitkVtkGLMapperWrapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVtkGLMapperWrapper_H_HEADER #define MITKVtkGLMapperWrapper_H_HEADER diff --git a/Modules/LegacyGL/vtkGLMapperProp.cpp b/Modules/LegacyGL/vtkGLMapperProp.cpp index f36a787a19a..04a4c745f08 100644 --- a/Modules/LegacyGL/vtkGLMapperProp.cpp +++ b/Modules/LegacyGL/vtkGLMapperProp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkGLMapperProp.h" diff --git a/Modules/LegacyGL/vtkGLMapperProp.h b/Modules/LegacyGL/vtkGLMapperProp.h index 23fc08e7615..b15d3332c1b 100644 --- a/Modules/LegacyGL/vtkGLMapperProp.h +++ b/Modules/LegacyGL/vtkGLMapperProp.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef vtkGLMapperProp_h #define vtkGLMapperProp_h diff --git a/Modules/LegacyIO/mitkBaseDataIOFactory.cpp b/Modules/LegacyIO/mitkBaseDataIOFactory.cpp index dedc56ba11f..48fe5062508 100644 --- a/Modules/LegacyIO/mitkBaseDataIOFactory.cpp +++ b/Modules/LegacyIO/mitkBaseDataIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifdef _MSC_VER #pragma warning(disable : 4786) diff --git a/Modules/LegacyIO/mitkBaseDataIOFactory.h b/Modules/LegacyIO/mitkBaseDataIOFactory.h index 3a4042ed962..21a24d5c9bd 100644 --- a/Modules/LegacyIO/mitkBaseDataIOFactory.h +++ b/Modules/LegacyIO/mitkBaseDataIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkBaseDataIO_h #define __mitkBaseDataIO_h diff --git a/Modules/LegacyIO/mitkFileSeriesReader.cpp b/Modules/LegacyIO/mitkFileSeriesReader.cpp index ddac3555752..a9e8a5b719d 100644 --- a/Modules/LegacyIO/mitkFileSeriesReader.cpp +++ b/Modules/LegacyIO/mitkFileSeriesReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFileSeriesReader.h" #include diff --git a/Modules/LegacyIO/mitkFileSeriesReader.h b/Modules/LegacyIO/mitkFileSeriesReader.h index cadc8a9e0de..95ed19613d8 100644 --- a/Modules/LegacyIO/mitkFileSeriesReader.h +++ b/Modules/LegacyIO/mitkFileSeriesReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_FILE_SERIES_READER__H_ #define __MITK_FILE_SERIES_READER__H_ diff --git a/Modules/LegacyIO/mitkImageWriter.cpp b/Modules/LegacyIO/mitkImageWriter.cpp index 8b719cd1c92..4cec0c6130c 100644 --- a/Modules/LegacyIO/mitkImageWriter.cpp +++ b/Modules/LegacyIO/mitkImageWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageWriter.h" diff --git a/Modules/LegacyIO/mitkImageWriter.h b/Modules/LegacyIO/mitkImageWriter.h index c2ad3d6ff8b..8151f9efa01 100644 --- a/Modules/LegacyIO/mitkImageWriter.h +++ b/Modules/LegacyIO/mitkImageWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_IMAGE_WRITER__H_ #define _MITK_IMAGE_WRITER__H_ diff --git a/Modules/LegacyIO/mitkImageWriterFactory.cpp b/Modules/LegacyIO/mitkImageWriterFactory.cpp index 3e0807d8f81..11ea3e40dbc 100644 --- a/Modules/LegacyIO/mitkImageWriterFactory.cpp +++ b/Modules/LegacyIO/mitkImageWriterFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageWriterFactory.h" diff --git a/Modules/LegacyIO/mitkImageWriterFactory.h b/Modules/LegacyIO/mitkImageWriterFactory.h index 25939bc08cd..629ca47bb1e 100644 --- a/Modules/LegacyIO/mitkImageWriterFactory.h +++ b/Modules/LegacyIO/mitkImageWriterFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGEWRITERFACTORY_H_HEADER_INCLUDED #define IMAGEWRITERFACTORY_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/mitkItkImageFileIOFactory.cpp b/Modules/LegacyIO/mitkItkImageFileIOFactory.cpp index 7c7100971bb..424429ffb43 100644 --- a/Modules/LegacyIO/mitkItkImageFileIOFactory.cpp +++ b/Modules/LegacyIO/mitkItkImageFileIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkItkImageFileIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/LegacyIO/mitkItkImageFileIOFactory.h b/Modules/LegacyIO/mitkItkImageFileIOFactory.h index 6e7f32dd351..9b1b391e503 100644 --- a/Modules/LegacyIO/mitkItkImageFileIOFactory.h +++ b/Modules/LegacyIO/mitkItkImageFileIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkItkImageFileIOFactory_h #define __mitkItkImageFileIOFactory_h diff --git a/Modules/LegacyIO/mitkItkImageFileReader.cpp b/Modules/LegacyIO/mitkItkImageFileReader.cpp index bad828651b8..ef09bea936a 100644 --- a/Modules/LegacyIO/mitkItkImageFileReader.cpp +++ b/Modules/LegacyIO/mitkItkImageFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkItkImageFileReader.h" #include "mitkConfig.h" diff --git a/Modules/LegacyIO/mitkItkImageFileReader.h b/Modules/LegacyIO/mitkItkImageFileReader.h index e936260d1ea..dafc68791bc 100644 --- a/Modules/LegacyIO/mitkItkImageFileReader.h +++ b/Modules/LegacyIO/mitkItkImageFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ItkImageFileReader_H_HEADER_INCLUDED #define ItkImageFileReader_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/mitkItkPictureWrite.cpp b/Modules/LegacyIO/mitkItkPictureWrite.cpp index a856f3ead6b..96f77c9ca26 100644 --- a/Modules/LegacyIO/mitkItkPictureWrite.cpp +++ b/Modules/LegacyIO/mitkItkPictureWrite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/LegacyIO/mitkItkPictureWrite.h b/Modules/LegacyIO/mitkItkPictureWrite.h index 0b8de30d644..4de49ba9ff3 100644 --- a/Modules/LegacyIO/mitkItkPictureWrite.h +++ b/Modules/LegacyIO/mitkItkPictureWrite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /** @file mitkItkPictureWrite.h */ diff --git a/Modules/LegacyIO/mitkPointSetIOFactory.cpp b/Modules/LegacyIO/mitkPointSetIOFactory.cpp index 76197c1db0f..cc6145c3ec4 100644 --- a/Modules/LegacyIO/mitkPointSetIOFactory.cpp +++ b/Modules/LegacyIO/mitkPointSetIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/LegacyIO/mitkPointSetIOFactory.h b/Modules/LegacyIO/mitkPointSetIOFactory.h index 87734a9b155..1766afc38d4 100644 --- a/Modules/LegacyIO/mitkPointSetIOFactory.h +++ b/Modules/LegacyIO/mitkPointSetIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkPointSetIOFactory_h #define __mitkPointSetIOFactory_h diff --git a/Modules/LegacyIO/mitkPointSetReader.cpp b/Modules/LegacyIO/mitkPointSetReader.cpp index 8d1e0045ea1..7222c061e57 100644 --- a/Modules/LegacyIO/mitkPointSetReader.cpp +++ b/Modules/LegacyIO/mitkPointSetReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetReader.h" #include diff --git a/Modules/LegacyIO/mitkPointSetReader.h b/Modules/LegacyIO/mitkPointSetReader.h index 279bc8e7511..b3b84f6b2cc 100644 --- a/Modules/LegacyIO/mitkPointSetReader.h +++ b/Modules/LegacyIO/mitkPointSetReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_POINT_SET_READER__H_ #define _MITK_POINT_SET_READER__H_ diff --git a/Modules/LegacyIO/mitkPointSetWriter.cpp b/Modules/LegacyIO/mitkPointSetWriter.cpp index f3adbcfc2e9..a6058081bd1 100644 --- a/Modules/LegacyIO/mitkPointSetWriter.cpp +++ b/Modules/LegacyIO/mitkPointSetWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetWriter.h" #include diff --git a/Modules/LegacyIO/mitkPointSetWriter.h b/Modules/LegacyIO/mitkPointSetWriter.h index 7b6695ad637..43536bd4b39 100644 --- a/Modules/LegacyIO/mitkPointSetWriter.h +++ b/Modules/LegacyIO/mitkPointSetWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_POINT_SET_WRITER__H_ #define _MITK_POINT_SET_WRITER__H_ diff --git a/Modules/LegacyIO/mitkPointSetWriterFactory.cpp b/Modules/LegacyIO/mitkPointSetWriterFactory.cpp index 9ca868f8d3a..133c6c3fa4d 100644 --- a/Modules/LegacyIO/mitkPointSetWriterFactory.cpp +++ b/Modules/LegacyIO/mitkPointSetWriterFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetWriterFactory.h" diff --git a/Modules/LegacyIO/mitkPointSetWriterFactory.h b/Modules/LegacyIO/mitkPointSetWriterFactory.h index eb44ae2160e..df0c53b6e18 100644 --- a/Modules/LegacyIO/mitkPointSetWriterFactory.h +++ b/Modules/LegacyIO/mitkPointSetWriterFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef POINTSETWRITERFACTORY_H_HEADER_INCLUDED #define POINTSETWRITERFACTORY_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/mitkRawImageFileReader.cpp b/Modules/LegacyIO/mitkRawImageFileReader.cpp index 8063d15e3ff..f4bd907ba03 100644 --- a/Modules/LegacyIO/mitkRawImageFileReader.cpp +++ b/Modules/LegacyIO/mitkRawImageFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRawImageFileReader.h" #include "mitkImageCast.h" diff --git a/Modules/LegacyIO/mitkRawImageFileReader.h b/Modules/LegacyIO/mitkRawImageFileReader.h index 6f8f383d5c3..3d01cf6bdef 100644 --- a/Modules/LegacyIO/mitkRawImageFileReader.h +++ b/Modules/LegacyIO/mitkRawImageFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef RawImageFileReader_H_HEADER_INCLUDED #define RawImageFileReader_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/mitkSTLFileIOFactory.cpp b/Modules/LegacyIO/mitkSTLFileIOFactory.cpp index 55a683d740f..d6d201e9446 100644 --- a/Modules/LegacyIO/mitkSTLFileIOFactory.cpp +++ b/Modules/LegacyIO/mitkSTLFileIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSTLFileIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/LegacyIO/mitkSTLFileIOFactory.h b/Modules/LegacyIO/mitkSTLFileIOFactory.h index facfa3277fa..8f91c90e7ee 100644 --- a/Modules/LegacyIO/mitkSTLFileIOFactory.h +++ b/Modules/LegacyIO/mitkSTLFileIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkSTLFileIOFactory_h #define __mitkSTLFileIOFactory_h diff --git a/Modules/LegacyIO/mitkSTLFileReader.cpp b/Modules/LegacyIO/mitkSTLFileReader.cpp index 9824a40260a..33a294d9a42 100644 --- a/Modules/LegacyIO/mitkSTLFileReader.cpp +++ b/Modules/LegacyIO/mitkSTLFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSTLFileReader.h" #include #include diff --git a/Modules/LegacyIO/mitkSTLFileReader.h b/Modules/LegacyIO/mitkSTLFileReader.h index f178b06780e..bf7ad78e4b4 100644 --- a/Modules/LegacyIO/mitkSTLFileReader.h +++ b/Modules/LegacyIO/mitkSTLFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef STLFileReader_H_HEADER_INCLUDED #define STLFileReader_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/mitkSurfaceVtkWriter.cpp b/Modules/LegacyIO/mitkSurfaceVtkWriter.cpp index f0d59c91b2e..09048aed754 100644 --- a/Modules/LegacyIO/mitkSurfaceVtkWriter.cpp +++ b/Modules/LegacyIO/mitkSurfaceVtkWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/LegacyIO/mitkSurfaceVtkWriter.h b/Modules/LegacyIO/mitkSurfaceVtkWriter.h index bbe9ef75699..652a13efd66 100644 --- a/Modules/LegacyIO/mitkSurfaceVtkWriter.h +++ b/Modules/LegacyIO/mitkSurfaceVtkWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_SURFACE_VTK_WRITER__H_ #define _MITK_SURFACE_VTK_WRITER__H_ diff --git a/Modules/LegacyIO/mitkSurfaceVtkWriter.txx b/Modules/LegacyIO/mitkSurfaceVtkWriter.txx index 5b7d40f6d42..82b0c18fab8 100644 --- a/Modules/LegacyIO/mitkSurfaceVtkWriter.txx +++ b/Modules/LegacyIO/mitkSurfaceVtkWriter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceVtkWriter.h" #include diff --git a/Modules/LegacyIO/mitkSurfaceVtkWriterFactory.cpp b/Modules/LegacyIO/mitkSurfaceVtkWriterFactory.cpp index 79e8dba818f..9bbd7bf630e 100644 --- a/Modules/LegacyIO/mitkSurfaceVtkWriterFactory.cpp +++ b/Modules/LegacyIO/mitkSurfaceVtkWriterFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceVtkWriterFactory.h" diff --git a/Modules/LegacyIO/mitkSurfaceVtkWriterFactory.h b/Modules/LegacyIO/mitkSurfaceVtkWriterFactory.h index de718b4a764..63069b661d7 100644 --- a/Modules/LegacyIO/mitkSurfaceVtkWriterFactory.h +++ b/Modules/LegacyIO/mitkSurfaceVtkWriterFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SURFACEWRITERFACTORY_H_HEADER_INCLUDED #define SURFACEWRITERFACTORY_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/mitkVtiFileIOFactory.cpp b/Modules/LegacyIO/mitkVtiFileIOFactory.cpp index ae9d13d8359..50d0c613537 100644 --- a/Modules/LegacyIO/mitkVtiFileIOFactory.cpp +++ b/Modules/LegacyIO/mitkVtiFileIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtiFileIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/LegacyIO/mitkVtiFileIOFactory.h b/Modules/LegacyIO/mitkVtiFileIOFactory.h index fe08b8238a7..67d123cb193 100644 --- a/Modules/LegacyIO/mitkVtiFileIOFactory.h +++ b/Modules/LegacyIO/mitkVtiFileIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkVtiFileIOFactory_h #define __mitkVtiFileIOFactory_h diff --git a/Modules/LegacyIO/mitkVtiFileReader.cpp b/Modules/LegacyIO/mitkVtiFileReader.cpp index 62de9945042..f5fd740b7b8 100644 --- a/Modules/LegacyIO/mitkVtiFileReader.cpp +++ b/Modules/LegacyIO/mitkVtiFileReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtiFileReader.h" diff --git a/Modules/LegacyIO/mitkVtiFileReader.h b/Modules/LegacyIO/mitkVtiFileReader.h index 84d99453f9c..375ada5b205 100644 --- a/Modules/LegacyIO/mitkVtiFileReader.h +++ b/Modules/LegacyIO/mitkVtiFileReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VtiFileReader_H_HEADER_INCLUDED #define VtiFileReader_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/mitkVtkImageIOFactory.cpp b/Modules/LegacyIO/mitkVtkImageIOFactory.cpp index d6c8cf0ce6e..a879fefbb40 100644 --- a/Modules/LegacyIO/mitkVtkImageIOFactory.cpp +++ b/Modules/LegacyIO/mitkVtkImageIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkImageIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/LegacyIO/mitkVtkImageIOFactory.h b/Modules/LegacyIO/mitkVtkImageIOFactory.h index 46b55f5c2e0..e89412689d2 100644 --- a/Modules/LegacyIO/mitkVtkImageIOFactory.h +++ b/Modules/LegacyIO/mitkVtkImageIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkVtkImageIOFactory_h #define __mitkVtkImageIOFactory_h diff --git a/Modules/LegacyIO/mitkVtkImageReader.cpp b/Modules/LegacyIO/mitkVtkImageReader.cpp index 3a2fd3c028d..060b6e9e0f7 100644 --- a/Modules/LegacyIO/mitkVtkImageReader.cpp +++ b/Modules/LegacyIO/mitkVtkImageReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkImageReader.h" diff --git a/Modules/LegacyIO/mitkVtkImageReader.h b/Modules/LegacyIO/mitkVtkImageReader.h index bf96279769e..04fcda9c87b 100644 --- a/Modules/LegacyIO/mitkVtkImageReader.h +++ b/Modules/LegacyIO/mitkVtkImageReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VtkImageReader_H_HEADER_INCLUDED #define VtkImageReader_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/mitkVtkSurfaceIOFactory.cpp b/Modules/LegacyIO/mitkVtkSurfaceIOFactory.cpp index 4e255c093d7..5f962f4d65e 100644 --- a/Modules/LegacyIO/mitkVtkSurfaceIOFactory.cpp +++ b/Modules/LegacyIO/mitkVtkSurfaceIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkSurfaceIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/LegacyIO/mitkVtkSurfaceIOFactory.h b/Modules/LegacyIO/mitkVtkSurfaceIOFactory.h index 870841e9b84..24bfc007429 100644 --- a/Modules/LegacyIO/mitkVtkSurfaceIOFactory.h +++ b/Modules/LegacyIO/mitkVtkSurfaceIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkVtkSurfaceIOFactory_h #define __mitkVtkSurfaceIOFactory_h diff --git a/Modules/LegacyIO/mitkVtkSurfaceReader.cpp b/Modules/LegacyIO/mitkVtkSurfaceReader.cpp index 60ca830ebae..8db4c4abaa0 100644 --- a/Modules/LegacyIO/mitkVtkSurfaceReader.cpp +++ b/Modules/LegacyIO/mitkVtkSurfaceReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVtkSurfaceReader.h" #include #include diff --git a/Modules/LegacyIO/mitkVtkSurfaceReader.h b/Modules/LegacyIO/mitkVtkSurfaceReader.h index 8670923cfa5..e9442dd420e 100644 --- a/Modules/LegacyIO/mitkVtkSurfaceReader.h +++ b/Modules/LegacyIO/mitkVtkSurfaceReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef VtkSurfaceReader_H_HEADER_INCLUDED #define VtkSurfaceReader_H_HEADER_INCLUDED diff --git a/Modules/LegacyIO/vtkPointSetXMLParser.cpp b/Modules/LegacyIO/vtkPointSetXMLParser.cpp index cf1a4f130c1..f26c1430f21 100644 --- a/Modules/LegacyIO/vtkPointSetXMLParser.cpp +++ b/Modules/LegacyIO/vtkPointSetXMLParser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkPointSetXMLParser.h" #include "mitkInteractionConst.h" diff --git a/Modules/LegacyIO/vtkPointSetXMLParser.h b/Modules/LegacyIO/vtkPointSetXMLParser.h index 7194e418873..e18b85e9b52 100644 --- a/Modules/LegacyIO/vtkPointSetXMLParser.h +++ b/Modules/LegacyIO/vtkPointSetXMLParser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _VTK_POINT_SET_XML_READER__H_ #define _VTK_POINT_SET_XML_READER__H_ diff --git a/Modules/MapperExt/include/mitkEnhancedPointSetVtkMapper3D.h b/Modules/MapperExt/include/mitkEnhancedPointSetVtkMapper3D.h index e1e59c578e5..79d4a4c1bde 100644 --- a/Modules/MapperExt/include/mitkEnhancedPointSetVtkMapper3D.h +++ b/Modules/MapperExt/include/mitkEnhancedPointSetVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEnhancedPointSetVtkMapper3D_H_HEADER_INCLUDED_C1907273 #define MITKEnhancedPointSetVtkMapper3D_H_HEADER_INCLUDED_C1907273 diff --git a/Modules/MapperExt/include/mitkGPUVolumeMapper3D.h b/Modules/MapperExt/include/mitkGPUVolumeMapper3D.h index 76a9f58b8ec..1b7f5f0fdb8 100644 --- a/Modules/MapperExt/include/mitkGPUVolumeMapper3D.h +++ b/Modules/MapperExt/include/mitkGPUVolumeMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGPUVOLUMEMAPPER3D_H_HEADER_INCLUDED #define MITKGPUVOLUMEMAPPER3D_H_HEADER_INCLUDED diff --git a/Modules/MapperExt/include/mitkMeshMapper2D.h b/Modules/MapperExt/include/mitkMeshMapper2D.h index d60a390c5c9..776be3b4e53 100644 --- a/Modules/MapperExt/include/mitkMeshMapper2D.h +++ b/Modules/MapperExt/include/mitkMeshMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMESHMAPPER2D_H_HEADER_INCLUDED #define MITKMESHMAPPER2D_H_HEADER_INCLUDED diff --git a/Modules/MapperExt/include/mitkMeshVtkMapper3D.h b/Modules/MapperExt/include/mitkMeshVtkMapper3D.h index 608cb78982c..2a33a7d3725 100644 --- a/Modules/MapperExt/include/mitkMeshVtkMapper3D.h +++ b/Modules/MapperExt/include/mitkMeshVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMESHVTKMAPPER3D_H_HEADER_INCLUDED #define MITKMESHVTKMAPPER3D_H_HEADER_INCLUDED diff --git a/Modules/MapperExt/include/mitkSplineVtkMapper3D.h b/Modules/MapperExt/include/mitkSplineVtkMapper3D.h index 17306aab84c..a26bc7610de 100644 --- a/Modules/MapperExt/include/mitkSplineVtkMapper3D.h +++ b/Modules/MapperExt/include/mitkSplineVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_SPLINE_VTK_MAPPER_3D__H #define _MITK_SPLINE_VTK_MAPPER_3D__H diff --git a/Modules/MapperExt/include/mitkUnstructuredGridMapper2D.h b/Modules/MapperExt/include/mitkUnstructuredGridMapper2D.h index 736a60b7a7c..513837f4707 100644 --- a/Modules/MapperExt/include/mitkUnstructuredGridMapper2D.h +++ b/Modules/MapperExt/include/mitkUnstructuredGridMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MitkPointSetSliceLMapper2D_H #define MitkPointSetSliceLMapper2D_H diff --git a/Modules/MapperExt/include/mitkUnstructuredGridVtkMapper3D.h b/Modules/MapperExt/include/mitkUnstructuredGridVtkMapper3D.h index b96b93b9428..618d2f81cb4 100644 --- a/Modules/MapperExt/include/mitkUnstructuredGridVtkMapper3D.h +++ b/Modules/MapperExt/include/mitkUnstructuredGridVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_UNSTRUCTURED_GRID_VTK_MAPPER_3D_H_ #define _MITK_UNSTRUCTURED_GRID_VTK_MAPPER_3D_H_ diff --git a/Modules/MapperExt/include/mitkVectorImageMapper2D.h b/Modules/MapperExt/include/mitkVectorImageMapper2D.h index 5d680cb8e0e..6555ee96ead 100644 --- a/Modules/MapperExt/include/mitkVectorImageMapper2D.h +++ b/Modules/MapperExt/include/mitkVectorImageMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_VECTOR_IMAGE_MAPPER_2D__H_ #define _MITK_VECTOR_IMAGE_MAPPER_2D__H_ diff --git a/Modules/MapperExt/include/mitkVolumeMapperVtkSmart3D.h b/Modules/MapperExt/include/mitkVolumeMapperVtkSmart3D.h index 679e11b1695..d2c6e6ccba1 100644 --- a/Modules/MapperExt/include/mitkVolumeMapperVtkSmart3D.h +++ b/Modules/MapperExt/include/mitkVolumeMapperVtkSmart3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVTKSMARTVOLUMEMAPPER_H_HEADER_INCLUDED #define MITKVTKSMARTVOLUMEMAPPER_H_HEADER_INCLUDED @@ -54,7 +50,7 @@ namespace mitk void ApplyProperties(vtkActor *actor, mitk::BaseRenderer *renderer) override; static void SetDefaultProperties(mitk::DataNode *node, mitk::BaseRenderer *renderer = nullptr, bool overwrite = false); - + protected: VolumeMapperVtkSmart3D(); ~VolumeMapperVtkSmart3D() override; @@ -73,7 +69,7 @@ namespace mitk vtkSmartPointer m_RenderingOpenGL2ObjectFactory; vtkSmartPointer m_RenderingVolumeOpenGL2ObjectFactory; - + void UpdateTransferFunctions(mitk::BaseRenderer *renderer); void UpdateRenderMode(mitk::BaseRenderer *renderer); }; diff --git a/Modules/MapperExt/include/vtkMaskedGlyph2D.h b/Modules/MapperExt/include/vtkMaskedGlyph2D.h index 99f6ebfb501..56b9439c45f 100644 --- a/Modules/MapperExt/include/vtkMaskedGlyph2D.h +++ b/Modules/MapperExt/include/vtkMaskedGlyph2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __vtkMaskedGlyph2D_h #define __vtkMaskedGlyph2D_h diff --git a/Modules/MapperExt/include/vtkMaskedGlyph3D.h b/Modules/MapperExt/include/vtkMaskedGlyph3D.h index f0a9588d0fd..c9ea2d6a5f2 100644 --- a/Modules/MapperExt/include/vtkMaskedGlyph3D.h +++ b/Modules/MapperExt/include/vtkMaskedGlyph3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __vtkMaskedGlyph3D_h #define __vtkMaskedGlyph3D_h diff --git a/Modules/MapperExt/include/vtkMitkGPUVolumeRayCastMapper.h b/Modules/MapperExt/include/vtkMitkGPUVolumeRayCastMapper.h index 7ee3a3cf03c..7d1bf537110 100644 --- a/Modules/MapperExt/include/vtkMitkGPUVolumeRayCastMapper.h +++ b/Modules/MapperExt/include/vtkMitkGPUVolumeRayCastMapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= Program: Visualization Toolkit diff --git a/Modules/MapperExt/include/vtkUnstructuredGridMapper.h b/Modules/MapperExt/include/vtkUnstructuredGridMapper.h index 1c652dda7e3..d71d1665be3 100644 --- a/Modules/MapperExt/include/vtkUnstructuredGridMapper.h +++ b/Modules/MapperExt/include/vtkUnstructuredGridMapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __vtkUnstructuredGridMapper_h #define __vtkUnstructuredGridMapper_h diff --git a/Modules/MapperExt/src/mitkEnhancedPointSetVtkMapper3D.cpp b/Modules/MapperExt/src/mitkEnhancedPointSetVtkMapper3D.cpp index a418b0033ca..26dab184b58 100644 --- a/Modules/MapperExt/src/mitkEnhancedPointSetVtkMapper3D.cpp +++ b/Modules/MapperExt/src/mitkEnhancedPointSetVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkEnhancedPointSetVtkMapper3D.h" diff --git a/Modules/MapperExt/src/mitkGPUVolumeMapper3D.cpp b/Modules/MapperExt/src/mitkGPUVolumeMapper3D.cpp index e83db656139..b339cc0dfca 100644 --- a/Modules/MapperExt/src/mitkGPUVolumeMapper3D.cpp +++ b/Modules/MapperExt/src/mitkGPUVolumeMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define GPU_INFO MITK_INFO("mapper.vr") #define GPU_WARN MITK_WARN("mapper.vr") diff --git a/Modules/MapperExt/src/mitkMeshMapper2D.cpp b/Modules/MapperExt/src/mitkMeshMapper2D.cpp index 0865e33d27c..c67bb42de69 100644 --- a/Modules/MapperExt/src/mitkMeshMapper2D.cpp +++ b/Modules/MapperExt/src/mitkMeshMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMeshMapper2D.h" #include "mitkBaseRenderer.h" diff --git a/Modules/MapperExt/src/mitkMeshVtkMapper3D.cpp b/Modules/MapperExt/src/mitkMeshVtkMapper3D.cpp index f0a07615604..1fca78d2207 100644 --- a/Modules/MapperExt/src/mitkMeshVtkMapper3D.cpp +++ b/Modules/MapperExt/src/mitkMeshVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMeshVtkMapper3D.h" #include "mitkDataNode.h" diff --git a/Modules/MapperExt/src/mitkSplineVtkMapper3D.cpp b/Modules/MapperExt/src/mitkSplineVtkMapper3D.cpp index 7738c62afb1..9639f15754b 100644 --- a/Modules/MapperExt/src/mitkSplineVtkMapper3D.cpp +++ b/Modules/MapperExt/src/mitkSplineVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSplineVtkMapper3D.h" #include diff --git a/Modules/MapperExt/src/mitkUnstructuredGridMapper2D.cpp b/Modules/MapperExt/src/mitkUnstructuredGridMapper2D.cpp index 237deb677b6..a4e89fbf060 100644 --- a/Modules/MapperExt/src/mitkUnstructuredGridMapper2D.cpp +++ b/Modules/MapperExt/src/mitkUnstructuredGridMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUnstructuredGridMapper2D.h" #include diff --git a/Modules/MapperExt/src/mitkUnstructuredGridVtkMapper3D.cpp b/Modules/MapperExt/src/mitkUnstructuredGridVtkMapper3D.cpp index b578230cb40..647c3830d89 100644 --- a/Modules/MapperExt/src/mitkUnstructuredGridVtkMapper3D.cpp +++ b/Modules/MapperExt/src/mitkUnstructuredGridVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUnstructuredGridVtkMapper3D.h" #include "mitkColorProperty.h" diff --git a/Modules/MapperExt/src/mitkVectorImageMapper2D.cpp b/Modules/MapperExt/src/mitkVectorImageMapper2D.cpp index a7aa3412ef1..0d13d2960bb 100644 --- a/Modules/MapperExt/src/mitkVectorImageMapper2D.cpp +++ b/Modules/MapperExt/src/mitkVectorImageMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVectorImageMapper2D.h" diff --git a/Modules/MapperExt/src/mitkVolumeMapperVtkSmart3D.cpp b/Modules/MapperExt/src/mitkVolumeMapperVtkSmart3D.cpp index 6e53a34b4a0..502d8a43e41 100644 --- a/Modules/MapperExt/src/mitkVolumeMapperVtkSmart3D.cpp +++ b/Modules/MapperExt/src/mitkVolumeMapperVtkSmart3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVolumeMapperVtkSmart3D.h" #include "mitkTransferFunctionProperty.h" @@ -116,7 +112,7 @@ void mitk::VolumeMapperVtkSmart3D::createMapper(vtkImageData* imageData) } void mitk::VolumeMapperVtkSmart3D::createVolume() -{ +{ m_Volume->VisibilityOff(); m_Volume->SetMapper(m_SmartVolumeMapper); m_Volume->SetProperty(m_VolumeProperty); @@ -141,7 +137,7 @@ void mitk::VolumeMapperVtkSmart3D::UpdateTransferFunctions(mitk::BaseRenderer *r if (isBinary) { colorTransferFunction = vtkSmartPointer::New(); - + float rgb[3]; if (!GetDataNode()->GetColor(rgb, renderer)) rgb[0] = rgb[1] = rgb[2] = 1; @@ -197,7 +193,7 @@ void mitk::VolumeMapperVtkSmart3D::UpdateRenderMode(mitk::BaseRenderer *renderer m_SmartVolumeMapper->SetBlendMode(blendMode); else if (usemip) m_SmartVolumeMapper->SetBlendMode(vtkSmartVolumeMapper::MAXIMUM_INTENSITY_BLEND); - + // shading parameter if (m_SmartVolumeMapper->GetRequestedRenderMode() == vtkSmartVolumeMapper::GPURenderMode) { diff --git a/Modules/MapperExt/src/vtkMaskedGlyph2D.cpp b/Modules/MapperExt/src/vtkMaskedGlyph2D.cpp index 225ea8c467b..2e0aba52027 100644 --- a/Modules/MapperExt/src/vtkMaskedGlyph2D.cpp +++ b/Modules/MapperExt/src/vtkMaskedGlyph2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkMaskedGlyph2D.h" diff --git a/Modules/MapperExt/src/vtkMaskedGlyph3D.cpp b/Modules/MapperExt/src/vtkMaskedGlyph3D.cpp index 0e26a14cd49..6c16ae53b52 100644 --- a/Modules/MapperExt/src/vtkMaskedGlyph3D.cpp +++ b/Modules/MapperExt/src/vtkMaskedGlyph3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkMaskedGlyph3D.h" diff --git a/Modules/MapperExt/src/vtkMitkGPUVolumeRayCastMapper.cpp b/Modules/MapperExt/src/vtkMitkGPUVolumeRayCastMapper.cpp index c1351b96e4c..7858b5a49d4 100644 --- a/Modules/MapperExt/src/vtkMitkGPUVolumeRayCastMapper.cpp +++ b/Modules/MapperExt/src/vtkMitkGPUVolumeRayCastMapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= Program: Visualization Toolkit diff --git a/Modules/MapperExt/src/vtkMitkOpenGLVolumeTextureMapper3D.cpp b/Modules/MapperExt/src/vtkMitkOpenGLVolumeTextureMapper3D.cpp index f3ea2ef5269..aaa400fbbfd 100644 --- a/Modules/MapperExt/src/vtkMitkOpenGLVolumeTextureMapper3D.cpp +++ b/Modules/MapperExt/src/vtkMitkOpenGLVolumeTextureMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifdef _OPENMP #include diff --git a/Modules/MapperExt/src/vtkMitkVolumeTextureMapper3D.cpp b/Modules/MapperExt/src/vtkMitkVolumeTextureMapper3D.cpp index 3b5d232b4a8..dc9e6b306a7 100644 --- a/Modules/MapperExt/src/vtkMitkVolumeTextureMapper3D.cpp +++ b/Modules/MapperExt/src/vtkMitkVolumeTextureMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkMitkVolumeTextureMapper3D.h" #include "mitkCommon.h" diff --git a/Modules/MapperExt/src/vtkPointSetSlicer.cxx b/Modules/MapperExt/src/vtkPointSetSlicer.cxx index 5918dbbea96..19246c91529 100644 --- a/Modules/MapperExt/src/vtkPointSetSlicer.cxx +++ b/Modules/MapperExt/src/vtkPointSetSlicer.cxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/MapperExt/src/vtkPointSetSlicer.h b/Modules/MapperExt/src/vtkPointSetSlicer.h index 37abb7630d9..80980044f73 100644 --- a/Modules/MapperExt/src/vtkPointSetSlicer.h +++ b/Modules/MapperExt/src/vtkPointSetSlicer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _VTKPOINTSETSLICER_H_ #define _VTKPOINTSETSLICER_H_ diff --git a/Modules/MapperExt/src/vtkUnstructuredGridMapper.cpp b/Modules/MapperExt/src/vtkUnstructuredGridMapper.cpp index 4ad4eea95f1..47d5c6a32e7 100644 --- a/Modules/MapperExt/src/vtkUnstructuredGridMapper.cpp +++ b/Modules/MapperExt/src/vtkUnstructuredGridMapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "vtkUnstructuredGridMapper.h" #include "vtkExecutive.h" diff --git a/Modules/MapperExt/test/mitkSplineVtkMapper3DTest.cpp b/Modules/MapperExt/test/mitkSplineVtkMapper3DTest.cpp index 3397415cf22..979bed133e0 100644 --- a/Modules/MapperExt/test/mitkSplineVtkMapper3DTest.cpp +++ b/Modules/MapperExt/test/mitkSplineVtkMapper3DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/MatchPointRegistration/Helper/QmitkAlgorithmListModel.cpp b/Modules/MatchPointRegistration/Helper/QmitkAlgorithmListModel.cpp index 3f24fdfad6e..37c0e985624 100644 --- a/Modules/MatchPointRegistration/Helper/QmitkAlgorithmListModel.cpp +++ b/Modules/MatchPointRegistration/Helper/QmitkAlgorithmListModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAlgorithmListModel.h" diff --git a/Modules/MatchPointRegistration/Helper/QmitkAlgorithmListModel.h b/Modules/MatchPointRegistration/Helper/QmitkAlgorithmListModel.h index 4f1c048a517..e54e5465078 100644 --- a/Modules/MatchPointRegistration/Helper/QmitkAlgorithmListModel.h +++ b/Modules/MatchPointRegistration/Helper/QmitkAlgorithmListModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAlgorithmListModel_h #define QmitkAlgorithmListModel_h diff --git a/Modules/MatchPointRegistration/Helper/QmitkMapPropertyDelegate.cpp b/Modules/MatchPointRegistration/Helper/QmitkMapPropertyDelegate.cpp index a006bbc092e..095ba33e5ac 100644 --- a/Modules/MatchPointRegistration/Helper/QmitkMapPropertyDelegate.cpp +++ b/Modules/MatchPointRegistration/Helper/QmitkMapPropertyDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NOMINMAX #define NOMINMAX diff --git a/Modules/MatchPointRegistration/Helper/QmitkMapPropertyDelegate.h b/Modules/MatchPointRegistration/Helper/QmitkMapPropertyDelegate.h index d6db9907887..ac5be416f7f 100644 --- a/Modules/MatchPointRegistration/Helper/QmitkMapPropertyDelegate.h +++ b/Modules/MatchPointRegistration/Helper/QmitkMapPropertyDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyDelegate_h #define QmitkPropertyDelegate_h diff --git a/Modules/MatchPointRegistration/Helper/mitkAlgorithmHelper.cpp b/Modules/MatchPointRegistration/Helper/mitkAlgorithmHelper.cpp index 2f17becddbf..cee321423e9 100644 --- a/Modules/MatchPointRegistration/Helper/mitkAlgorithmHelper.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkAlgorithmHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAlgorithmHelper.h" @@ -44,7 +40,7 @@ namespace mitk using InternalDefault2DImageType = itk::Image; using InternalDefault3DImageType = itk::Image; - using Alg2DType = const ::map::algorithm::facet::ImageRegistrationAlgorithmInterface; + using Alg2DType = const ::map::algorithm::facet::ImageRegistrationAlgorithmInterface; if (dynamic_cast(algorithm) != nullptr) return true; using Alg3DType = const ::map::algorithm::facet::ImageRegistrationAlgorithmInterface; if (dynamic_cast(algorithm) != nullptr) return true; diff --git a/Modules/MatchPointRegistration/Helper/mitkAlgorithmHelper.h b/Modules/MatchPointRegistration/Helper/mitkAlgorithmHelper.h index 7cc70aeda41..087c0b2425c 100644 --- a/Modules/MatchPointRegistration/Helper/mitkAlgorithmHelper.h +++ b/Modules/MatchPointRegistration/Helper/mitkAlgorithmHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAlgorithmHelper_h diff --git a/Modules/MatchPointRegistration/Helper/mitkImageMappingHelper.cpp b/Modules/MatchPointRegistration/Helper/mitkImageMappingHelper.cpp index eb7b353ef3c..494f35049c4 100644 --- a/Modules/MatchPointRegistration/Helper/mitkImageMappingHelper.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkImageMappingHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/MatchPointRegistration/Helper/mitkImageMappingHelper.h b/Modules/MatchPointRegistration/Helper/mitkImageMappingHelper.h index 5ec0aa53e1e..d5996bb65c0 100644 --- a/Modules/MatchPointRegistration/Helper/mitkImageMappingHelper.h +++ b/Modules/MatchPointRegistration/Helper/mitkImageMappingHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_IMAGE_MAPPING_HELPER_H diff --git a/Modules/MatchPointRegistration/Helper/mitkMaskedAlgorithmHelper.cpp b/Modules/MatchPointRegistration/Helper/mitkMaskedAlgorithmHelper.cpp index a1fa06893d6..0b3551dc418 100644 --- a/Modules/MatchPointRegistration/Helper/mitkMaskedAlgorithmHelper.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkMaskedAlgorithmHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMaskedAlgorithmHelper.h" diff --git a/Modules/MatchPointRegistration/Helper/mitkMaskedAlgorithmHelper.h b/Modules/MatchPointRegistration/Helper/mitkMaskedAlgorithmHelper.h index c878bfd0a33..515ebc90c8e 100644 --- a/Modules/MatchPointRegistration/Helper/mitkMaskedAlgorithmHelper.h +++ b/Modules/MatchPointRegistration/Helper/mitkMaskedAlgorithmHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMaskedAlgorithmHelper_h diff --git a/Modules/MatchPointRegistration/Helper/mitkPointSetMappingHelper.cpp b/Modules/MatchPointRegistration/Helper/mitkPointSetMappingHelper.cpp index 8c4cc74146c..c71d4bc2ff9 100644 --- a/Modules/MatchPointRegistration/Helper/mitkPointSetMappingHelper.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkPointSetMappingHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mapRegistration.h" diff --git a/Modules/MatchPointRegistration/Helper/mitkPointSetMappingHelper.h b/Modules/MatchPointRegistration/Helper/mitkPointSetMappingHelper.h index b12df31d4e3..522d7546b4a 100644 --- a/Modules/MatchPointRegistration/Helper/mitkPointSetMappingHelper.h +++ b/Modules/MatchPointRegistration/Helper/mitkPointSetMappingHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_POINTSET_MAPPING_HELPER_H @@ -61,4 +57,4 @@ namespace mitk } -#endif \ No newline at end of file +#endif diff --git a/Modules/MatchPointRegistration/Helper/mitkQMAPAlgorithmModel.cpp b/Modules/MatchPointRegistration/Helper/mitkQMAPAlgorithmModel.cpp index cf3d09ff82a..ca102a9c6a6 100644 --- a/Modules/MatchPointRegistration/Helper/mitkQMAPAlgorithmModel.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkQMAPAlgorithmModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkQMAPAlgorithmModel.h" diff --git a/Modules/MatchPointRegistration/Helper/mitkQMAPAlgorithmModel.h b/Modules/MatchPointRegistration/Helper/mitkQMAPAlgorithmModel.h index 108f648b70c..33b67b00979 100644 --- a/Modules/MatchPointRegistration/Helper/mitkQMAPAlgorithmModel.h +++ b/Modules/MatchPointRegistration/Helper/mitkQMAPAlgorithmModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkQMAPAlgorithmModel_h #define mitkQMAPAlgorithmModel_h diff --git a/Modules/MatchPointRegistration/Helper/mitkRegistrationHelper.cpp b/Modules/MatchPointRegistration/Helper/mitkRegistrationHelper.cpp index c03702e6a67..aca74e7aa4c 100644 --- a/Modules/MatchPointRegistration/Helper/mitkRegistrationHelper.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkRegistrationHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegistrationHelper.h" diff --git a/Modules/MatchPointRegistration/Helper/mitkRegistrationHelper.h b/Modules/MatchPointRegistration/Helper/mitkRegistrationHelper.h index 296b4c0d537..0b11d166cc4 100644 --- a/Modules/MatchPointRegistration/Helper/mitkRegistrationHelper.h +++ b/Modules/MatchPointRegistration/Helper/mitkRegistrationHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkRegistrationHelper_h diff --git a/Modules/MatchPointRegistration/Helper/mitkResultNodeGenerationHelper.cpp b/Modules/MatchPointRegistration/Helper/mitkResultNodeGenerationHelper.cpp index 7e0cd9ff1e5..74d8534725c 100644 --- a/Modules/MatchPointRegistration/Helper/mitkResultNodeGenerationHelper.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkResultNodeGenerationHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkResultNodeGenerationHelper.h" diff --git a/Modules/MatchPointRegistration/Helper/mitkResultNodeGenerationHelper.h b/Modules/MatchPointRegistration/Helper/mitkResultNodeGenerationHelper.h index df18a519b60..ac199730230 100644 --- a/Modules/MatchPointRegistration/Helper/mitkResultNodeGenerationHelper.h +++ b/Modules/MatchPointRegistration/Helper/mitkResultNodeGenerationHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_RESULT_NODE_GENERATION_HELPER_H @@ -48,4 +44,4 @@ namespace mitk } -#endif \ No newline at end of file +#endif diff --git a/Modules/MatchPointRegistration/Helper/mitkTimeFramesRegistrationHelper.cpp b/Modules/MatchPointRegistration/Helper/mitkTimeFramesRegistrationHelper.cpp index 038382d6a9a..6c18fa1dc23 100644 --- a/Modules/MatchPointRegistration/Helper/mitkTimeFramesRegistrationHelper.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkTimeFramesRegistrationHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkCommand.h" diff --git a/Modules/MatchPointRegistration/Helper/mitkTimeFramesRegistrationHelper.h b/Modules/MatchPointRegistration/Helper/mitkTimeFramesRegistrationHelper.h index afc897cae97..89f89dac689 100644 --- a/Modules/MatchPointRegistration/Helper/mitkTimeFramesRegistrationHelper.h +++ b/Modules/MatchPointRegistration/Helper/mitkTimeFramesRegistrationHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef __MITK_TIME_FRAMES_REGISTRATION_HELPER_H_ #define __MITK_TIME_FRAMES_REGISTRATION_HELPER_H_ diff --git a/Modules/MatchPointRegistration/Helper/mitkUIDHelper.cpp b/Modules/MatchPointRegistration/Helper/mitkUIDHelper.cpp index f44e4cc902e..9531bd3169b 100644 --- a/Modules/MatchPointRegistration/Helper/mitkUIDHelper.cpp +++ b/Modules/MatchPointRegistration/Helper/mitkUIDHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUIDHelper.h" diff --git a/Modules/MatchPointRegistration/Helper/mitkUIDHelper.h b/Modules/MatchPointRegistration/Helper/mitkUIDHelper.h index a0c3652d8d5..6561288aa91 100644 --- a/Modules/MatchPointRegistration/Helper/mitkUIDHelper.h +++ b/Modules/MatchPointRegistration/Helper/mitkUIDHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkUIDHelper_h diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegEvalStyleProperty.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegEvalStyleProperty.cpp index 465a27d3954..117a014946d 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegEvalStyleProperty.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegEvalStyleProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegEvalStyleProperty.h" diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegEvalStyleProperty.h b/Modules/MatchPointRegistration/Rendering/mitkRegEvalStyleProperty.h index 56de51dda94..20969e7acae 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegEvalStyleProperty.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegEvalStyleProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_REG_EVAL_STYLE_PROPERTY__H_ diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegEvalWipeStyleProperty.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegEvalWipeStyleProperty.cpp index 84233be399a..8a65932fcf9 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegEvalWipeStyleProperty.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegEvalWipeStyleProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegEvalWipeStyleProperty.h" diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegEvalWipeStyleProperty.h b/Modules/MatchPointRegistration/Rendering/mitkRegEvalWipeStyleProperty.h index 4f73bc8059e..dd116e7667d 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegEvalWipeStyleProperty.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegEvalWipeStyleProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_REG_EVAL_WIPE_STYLE_PROPERTY__H_ diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegEvaluationMapper2D.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegEvaluationMapper2D.cpp index e58cd970455..32ff499f6bd 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegEvaluationMapper2D.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegEvaluationMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //MITK #include diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegEvaluationMapper2D.h b/Modules/MatchPointRegistration/Rendering/mitkRegEvaluationMapper2D.h index 99103f02724..a4a832edbea 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegEvaluationMapper2D.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegEvaluationMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_REG_EVALUATION_MAPPER_2D_H #define MITK_REG_EVALUATION_MAPPER_2D_H diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisColorStyleProperty.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegVisColorStyleProperty.cpp index f9ed48d3344..7bfab3b8d8e 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisColorStyleProperty.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisColorStyleProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegVisColorStyleProperty.h" diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisColorStyleProperty.h b/Modules/MatchPointRegistration/Rendering/mitkRegVisColorStyleProperty.h index f504ce3dac6..f80b10bf1c5 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisColorStyleProperty.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisColorStyleProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_REG_VIS_COLOR_STYLE_PROPERTY__H_ diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisDirectionProperty.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegVisDirectionProperty.cpp index 524a9e8ea44..7c79c47d4f8 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisDirectionProperty.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisDirectionProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegVisDirectionProperty.h" diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisDirectionProperty.h b/Modules/MatchPointRegistration/Rendering/mitkRegVisDirectionProperty.h index 94c012c539d..c5794796fb2 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisDirectionProperty.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisDirectionProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_REG_VIS_DIRECTION_PROPERTY__H_ diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisHelper.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegVisHelper.cpp index 6207463c713..07d5d312f03 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisHelper.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //VTK diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisHelper.h b/Modules/MatchPointRegistration/Rendering/mitkRegVisHelper.h index c20cbe312a2..f0ca1666592 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisHelper.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_REG_VIS_HELPER__H_ diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisPropertyTags.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegVisPropertyTags.cpp index d613c1a8cf9..14efe1fced7 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisPropertyTags.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisPropertyTags.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegVisPropertyTags.h" diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisPropertyTags.h b/Modules/MatchPointRegistration/Rendering/mitkRegVisPropertyTags.h index 1aded79c0a5..9ecd352aeac 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisPropertyTags.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisPropertyTags.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_REG_VIS_PROPERTY_TAGS__H_ diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisStyleProperty.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegVisStyleProperty.cpp index 2b039df6bfa..d464b1c162e 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisStyleProperty.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisStyleProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegVisStyleProperty.h" diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegVisStyleProperty.h b/Modules/MatchPointRegistration/Rendering/mitkRegVisStyleProperty.h index 11f9b1ab0ed..3b38a8df306 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegVisStyleProperty.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegVisStyleProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_REG_VIS_STYLE_PROPERTY__H_ diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper2D.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper2D.cpp index ca16ac3b852..c110d835934 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper2D.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper2D.h b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper2D.h index a66b032eed1..161f3e0157a 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper2D.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MITK_REGISTRATION_WRAPPER_MAPPER_2D_H diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper3D.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper3D.cpp index faff01450c5..d72cc795183 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper3D.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper3D.h b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper3D.h index a7d39894530..2e1f4f3fd35 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper3D.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MITK_REGISTRATION_WRAPPER_MAPPER_3D_H diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapperBase.cpp b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapperBase.cpp index 88aa7c03c73..a41e15fc8f8 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapperBase.cpp +++ b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapperBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapperBase.h b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapperBase.h index a9bfbcbeafb..552249b3475 100644 --- a/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapperBase.h +++ b/Modules/MatchPointRegistration/Rendering/mitkRegistrationWrapperMapperBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MITK_REGISTRATION_WRAPPER_MAPPER_BASE_H diff --git a/Modules/MatchPointRegistration/Testing/mitkTimeFramesRegistrationHelperTest.cpp b/Modules/MatchPointRegistration/Testing/mitkTimeFramesRegistrationHelperTest.cpp index ff665949c40..d79d48fc476 100644 --- a/Modules/MatchPointRegistration/Testing/mitkTimeFramesRegistrationHelperTest.cpp +++ b/Modules/MatchPointRegistration/Testing/mitkTimeFramesRegistrationHelperTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "mitkTestFixture.h" @@ -108,4 +104,4 @@ class mitkTimeFramesRegistrationHelperTestSuite : public mitk::TestFixture }; -MITK_TEST_SUITE_REGISTRATION(mitkTimeFramesRegistrationHelper) \ No newline at end of file +MITK_TEST_SUITE_REGISTRATION(mitkTimeFramesRegistrationHelper) diff --git a/Modules/MatchPointRegistration/algorithms/mitkFastSymmetricForcesDemonsMultiResDefaultRegistrationAlgorithm.h b/Modules/MatchPointRegistration/algorithms/mitkFastSymmetricForcesDemonsMultiResDefaultRegistrationAlgorithm.h index f3f1d8c3be3..1cc7c856652 100644 --- a/Modules/MatchPointRegistration/algorithms/mitkFastSymmetricForcesDemonsMultiResDefaultRegistrationAlgorithm.h +++ b/Modules/MatchPointRegistration/algorithms/mitkFastSymmetricForcesDemonsMultiResDefaultRegistrationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFastSymmetricForcesDemonsMultiResDefaultRegistrationAlgorithm_h #define mitkFastSymmetricForcesDemonsMultiResDefaultRegistrationAlgorithm_h diff --git a/Modules/MatchPointRegistration/algorithms/mitkLevelSetMotionMultiResDefaultRegistrationAlgorithm.h b/Modules/MatchPointRegistration/algorithms/mitkLevelSetMotionMultiResDefaultRegistrationAlgorithm.h index d5b08d5c791..7d97e4383dc 100644 --- a/Modules/MatchPointRegistration/algorithms/mitkLevelSetMotionMultiResDefaultRegistrationAlgorithm.h +++ b/Modules/MatchPointRegistration/algorithms/mitkLevelSetMotionMultiResDefaultRegistrationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLevelSetMotionMultiResDefaultRegistrationAlgorithm_h #define mitkLevelSetMotionMultiResDefaultRegistrationAlgorithm_h diff --git a/Modules/MatchPointRegistration/algorithms/mitkMultiModalAffineDefaultRegistrationAlgorithm.h b/Modules/MatchPointRegistration/algorithms/mitkMultiModalAffineDefaultRegistrationAlgorithm.h index 74f88494c72..29fa67031f3 100644 --- a/Modules/MatchPointRegistration/algorithms/mitkMultiModalAffineDefaultRegistrationAlgorithm.h +++ b/Modules/MatchPointRegistration/algorithms/mitkMultiModalAffineDefaultRegistrationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMultiModalAffineDefaultRegistrationAlgorithm_h #define mitkMultiModalAffineDefaultRegistrationAlgorithm_h @@ -29,7 +25,7 @@ namespace mitk /** \class MultiModalAffineDefaultRegistrationAlgorithm * Algorithm is used as default solution for multimodal affine problem statements in DIPP. * Uses 3 Resolution levels. By default initializes via image centers - */ + */ template class MultiModalAffineDefaultRegistrationAlgorithm : public map::algorithm::boxed::ITKAffineMattesMIMultiResRegistrationAlgorithm >, map::algorithm::itk::NoComponentInitializationPolicy> diff --git a/Modules/MatchPointRegistration/algorithms/mitkMultiModalRigidDefaultRegistrationAlgorithm.h b/Modules/MatchPointRegistration/algorithms/mitkMultiModalRigidDefaultRegistrationAlgorithm.h index c85e5f735e3..145b6fb9a95 100644 --- a/Modules/MatchPointRegistration/algorithms/mitkMultiModalRigidDefaultRegistrationAlgorithm.h +++ b/Modules/MatchPointRegistration/algorithms/mitkMultiModalRigidDefaultRegistrationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMultiModalRigidDefaultRegistrationAlgorithm_h #define mitkMultiModalRigidDefaultRegistrationAlgorithm_h diff --git a/Modules/MatchPointRegistration/algorithms/mitkMultiModalTransDefaultRegistrationAlgorithm.h b/Modules/MatchPointRegistration/algorithms/mitkMultiModalTransDefaultRegistrationAlgorithm.h index 9800c94fbd6..6cb83a72ffd 100644 --- a/Modules/MatchPointRegistration/algorithms/mitkMultiModalTransDefaultRegistrationAlgorithm.h +++ b/Modules/MatchPointRegistration/algorithms/mitkMultiModalTransDefaultRegistrationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMultiModalTransDefaultRegistrationAlgorithm_h #define mitkMultiModalTransDefaultRegistrationAlgorithm_h diff --git a/Modules/MatchPointRegistration/algorithms/mitkRigidClosedFormPointsDefaultRegistrationAlgorithm.h b/Modules/MatchPointRegistration/algorithms/mitkRigidClosedFormPointsDefaultRegistrationAlgorithm.h index 60718bb5dd5..d5c3b617e9e 100644 --- a/Modules/MatchPointRegistration/algorithms/mitkRigidClosedFormPointsDefaultRegistrationAlgorithm.h +++ b/Modules/MatchPointRegistration/algorithms/mitkRigidClosedFormPointsDefaultRegistrationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRigidClosedFormPointsDefaultRegistrationAlgorithm_h #define mitkRigidClosedFormPointsDefaultRegistrationAlgorithm_h diff --git a/Modules/MatchPointRegistration/algorithms/mitkRigidICPDefaultRegistrationAlgorithm.h b/Modules/MatchPointRegistration/algorithms/mitkRigidICPDefaultRegistrationAlgorithm.h index c9e83ea381a..7bf45349061 100644 --- a/Modules/MatchPointRegistration/algorithms/mitkRigidICPDefaultRegistrationAlgorithm.h +++ b/Modules/MatchPointRegistration/algorithms/mitkRigidICPDefaultRegistrationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRigidICPDefaultRegistrationAlgorithm_h #define mitkRigidICPDefaultRegistrationAlgorithm_h diff --git a/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperIO.cpp b/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperIO.cpp index 99dc2351e9f..72b1e391523 100644 --- a/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperIO.cpp +++ b/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperIO.h b/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperIO.h index 310768e9756..62f7180a035 100644 --- a/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperIO.h +++ b/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MAP_REGISTRATION_WRAPPER_IO_H #define _MITK_MAP_REGISTRATION_WRAPPER_IO_H diff --git a/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperSerializer.cpp b/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperSerializer.cpp index 162387fde97..db05f68585b 100644 --- a/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperSerializer.cpp +++ b/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMAPRegistrationWrapperSerializer.h" diff --git a/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperSerializer.h b/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperSerializer.h index 853ba6dbbf5..35e3f168a67 100644 --- a/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperSerializer.h +++ b/Modules/MatchPointRegistration/autoload/IO/mitkMAPRegistrationWrapperSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkMAPRegistrationWrapperSerializer_h diff --git a/Modules/MatchPointRegistration/autoload/IO/mitkMatchPointActivator.cpp b/Modules/MatchPointRegistration/autoload/IO/mitkMatchPointActivator.cpp index e77775995df..7f9bce6a46b 100644 --- a/Modules/MatchPointRegistration/autoload/IO/mitkMatchPointActivator.cpp +++ b/Modules/MatchPointRegistration/autoload/IO/mitkMatchPointActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMAPRegistrationWrapperIO.h" diff --git a/Modules/MatchPointRegistration/deployment/mitkFastSymmetricForcesDemonsMultiRes_default.cpp b/Modules/MatchPointRegistration/deployment/mitkFastSymmetricForcesDemonsMultiRes_default.cpp index 1a3ef6ce5c5..f956a3401f7 100644 --- a/Modules/MatchPointRegistration/deployment/mitkFastSymmetricForcesDemonsMultiRes_default.cpp +++ b/Modules/MatchPointRegistration/deployment/mitkFastSymmetricForcesDemonsMultiRes_default.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mapDeploymentDLLHelper.h" #include "mapDiscreteElements.h" diff --git a/Modules/MatchPointRegistration/deployment/mitkLevelSetMotionMultiRes_default.cpp b/Modules/MatchPointRegistration/deployment/mitkLevelSetMotionMultiRes_default.cpp index 768877a8e18..2dcb7e3b622 100644 --- a/Modules/MatchPointRegistration/deployment/mitkLevelSetMotionMultiRes_default.cpp +++ b/Modules/MatchPointRegistration/deployment/mitkLevelSetMotionMultiRes_default.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mapDeploymentDLLHelper.h" #include "mapDiscreteElements.h" diff --git a/Modules/MatchPointRegistration/deployment/mitkMultiModalAffine_default.cpp b/Modules/MatchPointRegistration/deployment/mitkMultiModalAffine_default.cpp index db76ef9a72d..7b267096b22 100644 --- a/Modules/MatchPointRegistration/deployment/mitkMultiModalAffine_default.cpp +++ b/Modules/MatchPointRegistration/deployment/mitkMultiModalAffine_default.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mapDeploymentDLLHelper.h" #include "mapDiscreteElements.h" diff --git a/Modules/MatchPointRegistration/deployment/mitkMultiModalRigid_default.cpp b/Modules/MatchPointRegistration/deployment/mitkMultiModalRigid_default.cpp index 5aacdbbfaa7..239bde397ef 100644 --- a/Modules/MatchPointRegistration/deployment/mitkMultiModalRigid_default.cpp +++ b/Modules/MatchPointRegistration/deployment/mitkMultiModalRigid_default.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mapDeploymentDLLHelper.h" #include "mapDiscreteElements.h" diff --git a/Modules/MatchPointRegistration/deployment/mitkMultiModalTrans_default.cpp b/Modules/MatchPointRegistration/deployment/mitkMultiModalTrans_default.cpp index f16d4a27915..4e0c7151c0f 100644 --- a/Modules/MatchPointRegistration/deployment/mitkMultiModalTrans_default.cpp +++ b/Modules/MatchPointRegistration/deployment/mitkMultiModalTrans_default.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mapDeploymentDLLHelper.h" #include "mapDiscreteElements.h" diff --git a/Modules/MatchPointRegistration/deployment/mitkRigidClosedFormPoints_default.cpp b/Modules/MatchPointRegistration/deployment/mitkRigidClosedFormPoints_default.cpp index 5649c34ad27..74ad6a1a021 100644 --- a/Modules/MatchPointRegistration/deployment/mitkRigidClosedFormPoints_default.cpp +++ b/Modules/MatchPointRegistration/deployment/mitkRigidClosedFormPoints_default.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mapDeploymentDLLHelper.h" #include "mapContinuousElements.h" diff --git a/Modules/MatchPointRegistration/deployment/mitkRigidICP_default.cpp b/Modules/MatchPointRegistration/deployment/mitkRigidICP_default.cpp index 82a791f572f..0a8d0b18009 100644 --- a/Modules/MatchPointRegistration/deployment/mitkRigidICP_default.cpp +++ b/Modules/MatchPointRegistration/deployment/mitkRigidICP_default.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mapDeploymentDLLHelper.h" #include "mapContinuousElements.h" diff --git a/Modules/MatchPointRegistration/mitkMAPRegistrationWrapper.cpp b/Modules/MatchPointRegistration/mitkMAPRegistrationWrapper.cpp index 67095e298f7..616f02f66bb 100644 --- a/Modules/MatchPointRegistration/mitkMAPRegistrationWrapper.cpp +++ b/Modules/MatchPointRegistration/mitkMAPRegistrationWrapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMAPRegistrationWrapper.h" diff --git a/Modules/MatchPointRegistration/mitkMAPRegistrationWrapper.h b/Modules/MatchPointRegistration/mitkMAPRegistrationWrapper.h index 40c72cf435b..ece571beded 100644 --- a/Modules/MatchPointRegistration/mitkMAPRegistrationWrapper.h +++ b/Modules/MatchPointRegistration/mitkMAPRegistrationWrapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMAPRegistrationWrapper_h diff --git a/Modules/MatchPointRegistration/mitkMAPRegistrationWrapperObjectFactory.cpp b/Modules/MatchPointRegistration/mitkMAPRegistrationWrapperObjectFactory.cpp index 36dd9d4278a..ef826f915d8 100644 --- a/Modules/MatchPointRegistration/mitkMAPRegistrationWrapperObjectFactory.cpp +++ b/Modules/MatchPointRegistration/mitkMAPRegistrationWrapperObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMAPRegistrationWrapperObjectFactory.h" diff --git a/Modules/MatchPointRegistration/mitkMAPRegistrationWrapperObjectFactory.h b/Modules/MatchPointRegistration/mitkMAPRegistrationWrapperObjectFactory.h index 08502ff5e6a..e7e2b931408 100644 --- a/Modules/MatchPointRegistration/mitkMAPRegistrationWrapperObjectFactory.h +++ b/Modules/MatchPointRegistration/mitkMAPRegistrationWrapperObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkMAPRegistrationWrapperObjectFactory_h diff --git a/Modules/MatchPointRegistration/mitkMatchPointPropertyTags.h b/Modules/MatchPointRegistration/mitkMatchPointPropertyTags.h index e17b074d9dc..a3226dbf7b0 100644 --- a/Modules/MatchPointRegistration/mitkMatchPointPropertyTags.h +++ b/Modules/MatchPointRegistration/mitkMatchPointPropertyTags.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MATCHPOINTPROPERTY_TAGS__H_ #define _MITK_MATCHPOINTPROPERTY_TAGS__H_ diff --git a/Modules/MatchPointRegistration/mitkRegEvaluationObject.cpp b/Modules/MatchPointRegistration/mitkRegEvaluationObject.cpp index ecdbe14490e..3d1b70b1f7c 100644 --- a/Modules/MatchPointRegistration/mitkRegEvaluationObject.cpp +++ b/Modules/MatchPointRegistration/mitkRegEvaluationObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/MatchPointRegistration/mitkRegEvaluationObject.h b/Modules/MatchPointRegistration/mitkRegEvaluationObject.h index 8f193a1983e..eee23b24f29 100644 --- a/Modules/MatchPointRegistration/mitkRegEvaluationObject.h +++ b/Modules/MatchPointRegistration/mitkRegEvaluationObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRegEvaluationObject_h #define mitkRegEvaluationObject_h diff --git a/Modules/MatchPointRegistration/mitkRegEvaluationObjectFactory.cpp b/Modules/MatchPointRegistration/mitkRegEvaluationObjectFactory.cpp index 50029645420..a5b59f13631 100644 --- a/Modules/MatchPointRegistration/mitkRegEvaluationObjectFactory.cpp +++ b/Modules/MatchPointRegistration/mitkRegEvaluationObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegEvaluationObjectFactory.h" diff --git a/Modules/MatchPointRegistration/mitkRegEvaluationObjectFactory.h b/Modules/MatchPointRegistration/mitkRegEvaluationObjectFactory.h index 816a9c8f42f..b7448303ae8 100644 --- a/Modules/MatchPointRegistration/mitkRegEvaluationObjectFactory.h +++ b/Modules/MatchPointRegistration/mitkRegEvaluationObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITKRegEvaluationObjectFactory_h #define __MITKRegEvaluationObjectFactory_h diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmListModel.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmListModel.cpp index 0046972fe06..87b4af6c051 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmListModel.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmListModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAlgorithmListModel.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmListModel.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmListModel.h index 8c755c14ab8..ce557afb6ea 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmListModel.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmListModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAlgorithmListModel_h #define QmitkAlgorithmListModel_h diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmProfileViewer.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmProfileViewer.cpp index cb154eb83a8..e7dad3416ae 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmProfileViewer.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmProfileViewer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAlgorithmProfileViewer.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmProfileViewer.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmProfileViewer.h index ffc22356208..52f2d5bd684 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmProfileViewer.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmProfileViewer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_ALGORITHM_PROFILE_VIEWER_H #define QMITK_ALGORITHM_PROFILE_VIEWER_H diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmSettingsConfig.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmSettingsConfig.cpp index 5abf2aa129e..71193523828 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmSettingsConfig.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmSettingsConfig.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAlgorithmSettingsConfig.h" @@ -57,4 +53,4 @@ void QmitkAlgorithmSettingsConfig::setAlgorithm(map::algorithm::RegistrationAlgo map::algorithm::RegistrationAlgorithmBase *QmitkAlgorithmSettingsConfig::getAlgorithm() { return this->m_currentAlg; -} \ No newline at end of file +} diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmSettingsConfig.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmSettingsConfig.h index c390ffa1d78..c576a872838 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmSettingsConfig.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkAlgorithmSettingsConfig.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_ALGORITHM_SETTINGS_CONFIG_H #define QMITK_ALGORITHM_SETTINGS_CONFIG_H diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkFramesRegistrationJob.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkFramesRegistrationJob.cpp index 3214c3403de..16069733263 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkFramesRegistrationJob.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkFramesRegistrationJob.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFramesRegistrationJob.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkFramesRegistrationJob.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkFramesRegistrationJob.h index fbb38a26b21..4338d4809b5 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkFramesRegistrationJob.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkFramesRegistrationJob.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __QMITK_FRAMES_REGISTRATION_JOB_H #define __QMITK_FRAMES_REGISTRATION_JOB_H diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMAPAlgorithmModel.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMAPAlgorithmModel.cpp index b51b22d6db1..7894b1c81b0 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMAPAlgorithmModel.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMAPAlgorithmModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMAPAlgorithmModel.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMAPAlgorithmModel.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMAPAlgorithmModel.h index f99b34d8182..216bdba330a 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMAPAlgorithmModel.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMAPAlgorithmModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMAPAlgorithmModel_h #define QmitkMAPAlgorithmModel_h diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapPropertyDelegate.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapPropertyDelegate.cpp index d8923702366..22b1ab732e2 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapPropertyDelegate.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapPropertyDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NOMINMAX #define NOMINMAX diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapPropertyDelegate.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapPropertyDelegate.h index 46c59de5a94..a48ea6585da 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapPropertyDelegate.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapPropertyDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyDelegate_h #define QmitkPropertyDelegate_h diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapperSettingsWidget.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapperSettingsWidget.cpp index e9c9396c14b..668015c9b2c 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapperSettingsWidget.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapperSettingsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMapperSettingsWidget.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapperSettingsWidget.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapperSettingsWidget.h index c3f4b57a75d..0dd3e5f0cf4 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapperSettingsWidget.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMapperSettingsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_MAPPER_SETTINGS_WIDGET_H #define QMITK_MAPPER_SETTINGS_WIDGET_H diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMappingJob.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMappingJob.cpp index 5ba49ef3bda..a79e39b1fcf 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMappingJob.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMappingJob.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMappingJob.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMappingJob.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMappingJob.h index e1e974370c9..d2314a20d92 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkMappingJob.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkMappingJob.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __QMITK_MAPPING_JOB_H #define __QMITK_MAPPING_JOB_H diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegEvalSettingsWidget.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegEvalSettingsWidget.cpp index e89a7961cbb..9ec824c9f9a 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegEvalSettingsWidget.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegEvalSettingsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegEvalSettingsWidget.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegEvalSettingsWidget.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegEvalSettingsWidget.h index de4f536c04f..abbb5628ee0 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegEvalSettingsWidget.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegEvalSettingsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_REG_EVAL_SETTINGS_WIDGET_H #define QMITK_REG_EVAL_SETTINGS_WIDGET_H diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationJob.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationJob.cpp index 7407b92be62..885e7acfdbc 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationJob.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationJob.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegistrationJob.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationJob.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationJob.h index bcb45285d9c..0e3f57fdc83 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationJob.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationJob.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __QMITK_REGISTRATION_JOB_H #define __QMITK_REGISTRATION_JOB_H diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationManipulationWidget.cpp b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationManipulationWidget.cpp index 7eb0e582a8b..c1bcb2bcbba 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationManipulationWidget.cpp +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationManipulationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Qmitk #include "QmitkRegistrationManipulationWidget.h" diff --git a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationManipulationWidget.h b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationManipulationWidget.h index 02d77842c1a..11747ef3ee7 100644 --- a/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationManipulationWidget.h +++ b/Modules/MatchPointRegistrationUI/Qmitk/QmitkRegistrationManipulationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_REGISTRATION_MANIPULATION_WIDGET_H diff --git a/Modules/ModelFit/autoload/IO/mitkModelFitIOActivator.cpp b/Modules/ModelFit/autoload/IO/mitkModelFitIOActivator.cpp index 81dfce562f0..42cc07157d5 100644 --- a/Modules/ModelFit/autoload/IO/mitkModelFitIOActivator.cpp +++ b/Modules/ModelFit/autoload/IO/mitkModelFitIOActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ModelFit/autoload/Models/mitkModelFitModelsActivator.cpp b/Modules/ModelFit/autoload/Models/mitkModelFitModelsActivator.cpp index afd9e6f55e6..986612331f6 100644 --- a/Modules/ModelFit/autoload/Models/mitkModelFitModelsActivator.cpp +++ b/Modules/ModelFit/autoload/Models/mitkModelFitModelsActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ModelFit/cmdapps/GenericFittingMiniApp.cpp b/Modules/ModelFit/cmdapps/GenericFittingMiniApp.cpp index af1b9630279..68984e081d7 100644 --- a/Modules/ModelFit/cmdapps/GenericFittingMiniApp.cpp +++ b/Modules/ModelFit/cmdapps/GenericFittingMiniApp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // std includes #include diff --git a/Modules/ModelFit/cmdapps/PixelDumpMiniApp.cpp b/Modules/ModelFit/cmdapps/PixelDumpMiniApp.cpp index 13015f4c383..2c50a02d4bd 100644 --- a/Modules/ModelFit/cmdapps/PixelDumpMiniApp.cpp +++ b/Modules/ModelFit/cmdapps/PixelDumpMiniApp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // std includes #include diff --git a/Modules/ModelFit/include/itkMaskedNaryStatisticsImageFilter.h b/Modules/ModelFit/include/itkMaskedNaryStatisticsImageFilter.h index bf0b6d8b3b7..dc31381e2bf 100644 --- a/Modules/ModelFit/include/itkMaskedNaryStatisticsImageFilter.h +++ b/Modules/ModelFit/include/itkMaskedNaryStatisticsImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkMaskedNaryStatisticsImageFilter_h #define __itkMaskedNaryStatisticsImageFilter_h diff --git a/Modules/ModelFit/include/itkMaskedNaryStatisticsImageFilter.hxx b/Modules/ModelFit/include/itkMaskedNaryStatisticsImageFilter.hxx index eb7612a93e9..03b360c5627 100644 --- a/Modules/ModelFit/include/itkMaskedNaryStatisticsImageFilter.hxx +++ b/Modules/ModelFit/include/itkMaskedNaryStatisticsImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkMaskedNaryStatisticsImageFilter_hxx #define __itkMaskedNaryStatisticsImageFilter_hxx diff --git a/Modules/ModelFit/include/itkMultiOutputNaryFunctorImageFilter.h b/Modules/ModelFit/include/itkMultiOutputNaryFunctorImageFilter.h index ba1e9bb51c1..c5f0ea33de5 100644 --- a/Modules/ModelFit/include/itkMultiOutputNaryFunctorImageFilter.h +++ b/Modules/ModelFit/include/itkMultiOutputNaryFunctorImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkMultiOutputNaryFunctorImageFilter_h #define __itkMultiOutputNaryFunctorImageFilter_h diff --git a/Modules/ModelFit/include/itkMultiOutputNaryFunctorImageFilter.tpp b/Modules/ModelFit/include/itkMultiOutputNaryFunctorImageFilter.tpp index 998494d954d..09d16df5738 100644 --- a/Modules/ModelFit/include/itkMultiOutputNaryFunctorImageFilter.tpp +++ b/Modules/ModelFit/include/itkMultiOutputNaryFunctorImageFilter.tpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkMultiOutputNaryFunctorImageFilter_hxx #define __itkMultiOutputNaryFunctorImageFilter_hxx diff --git a/Modules/ModelFit/include/mitkBinaryImageToLabelSetImageFilter.h b/Modules/ModelFit/include/mitkBinaryImageToLabelSetImageFilter.h index c11a782db64..b4aa90543c9 100644 --- a/Modules/ModelFit/include/mitkBinaryImageToLabelSetImageFilter.h +++ b/Modules/ModelFit/include/mitkBinaryImageToLabelSetImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBinaryImageToLabelSetImageFilter_h #define mitkBinaryImageToLabelSetImageFilter_h diff --git a/Modules/ModelFit/include/mitkChiSquareFitCostFunction.h b/Modules/ModelFit/include/mitkChiSquareFitCostFunction.h index acffc1f1d72..1beeb5113c1 100644 --- a/Modules/ModelFit/include/mitkChiSquareFitCostFunction.h +++ b/Modules/ModelFit/include/mitkChiSquareFitCostFunction.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef CHI_SQUARE_FITCOSTFUNCTION_H #define CHI_SQUARE_FITCOSTFUNCTION_H diff --git a/Modules/ModelFit/include/mitkConcreteModelFactoryBase.h b/Modules/ModelFit/include/mitkConcreteModelFactoryBase.h index 98d8c244152..02e48f87b3c 100644 --- a/Modules/ModelFit/include/mitkConcreteModelFactoryBase.h +++ b/Modules/ModelFit/include/mitkConcreteModelFactoryBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __CONCRETE_MODEL_FACTORY_BASE_H #define __CONCRETE_MODEL_FACTORY_BASE_H diff --git a/Modules/ModelFit/include/mitkConcreteModelParameterizerBase.h b/Modules/ModelFit/include/mitkConcreteModelParameterizerBase.h index a079760102c..8cf4eb81cc1 100644 --- a/Modules/ModelFit/include/mitkConcreteModelParameterizerBase.h +++ b/Modules/ModelFit/include/mitkConcreteModelParameterizerBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __CONCRETE_MODEL_PARAMETERIZER_BASE_H #define __CONCRETE_MODEL_PARAMETERIZER_BASE_H diff --git a/Modules/ModelFit/include/mitkConstraintCheckerBase.h b/Modules/ModelFit/include/mitkConstraintCheckerBase.h index 56c78b4d3fe..8bec5b62ad3 100644 --- a/Modules/ModelFit/include/mitkConstraintCheckerBase.h +++ b/Modules/ModelFit/include/mitkConstraintCheckerBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CONSTRAINT_CHECKER_BASE_H #define CONSTRAINT_CHECKER_BASE_H diff --git a/Modules/ModelFit/include/mitkConstraintCheckerInterface.h b/Modules/ModelFit/include/mitkConstraintCheckerInterface.h index 0ed97e430de..ac0b4a75b1a 100644 --- a/Modules/ModelFit/include/mitkConstraintCheckerInterface.h +++ b/Modules/ModelFit/include/mitkConstraintCheckerInterface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CONSTRAINTCHECKER_INTERFACE_H #define CONSTRAINTCHECKER_INTERFACE_H diff --git a/Modules/ModelFit/include/mitkDummyModelFitFunctor.h b/Modules/ModelFit/include/mitkDummyModelFitFunctor.h index fec12a80a2d..ae93452caeb 100644 --- a/Modules/ModelFit/include/mitkDummyModelFitFunctor.h +++ b/Modules/ModelFit/include/mitkDummyModelFitFunctor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __DUMMYMODELFITFUNCTOR_H #define __DUMMYMODELFITFUNCTOR_H diff --git a/Modules/ModelFit/include/mitkExtractTimeGrid.h b/Modules/ModelFit/include/mitkExtractTimeGrid.h index 90cfdb95305..b0d8d48d5a1 100644 --- a/Modules/ModelFit/include/mitkExtractTimeGrid.h +++ b/Modules/ModelFit/include/mitkExtractTimeGrid.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_EXTRACT_TIME_GRID_H_ #define __MITK_EXTRACT_TIME_GRID_H_ diff --git a/Modules/ModelFit/include/mitkFormulaParser.h b/Modules/ModelFit/include/mitkFormulaParser.h index 5ad3b291c83..fa1c4b92197 100644 --- a/Modules/ModelFit/include/mitkFormulaParser.h +++ b/Modules/ModelFit/include/mitkFormulaParser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITKFORMULAPARSER_H__ #define __MITKFORMULAPARSER_H__ diff --git a/Modules/ModelFit/include/mitkFresnel.h b/Modules/ModelFit/include/mitkFresnel.h index 328de738731..7b6b984bbc6 100644 --- a/Modules/ModelFit/include/mitkFresnel.h +++ b/Modules/ModelFit/include/mitkFresnel.h @@ -1,25 +1,21 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /**************************************************************************** * fresnel.h - * Calculation of Fresnel integrals by expansion to Chebyshev series * Expansions are taken from the book * Y.L. Luke. Mathematical functions and their approximations. - * Ìoscow, "Mir", 1980. PP. 145-149 (Russian edition) + * ÃŒoscow, "Mir", 1980. PP. 145-149 (Russian edition) **************************************************************************** */ diff --git a/Modules/ModelFit/include/mitkGaussianNoiseFunctor.h b/Modules/ModelFit/include/mitkGaussianNoiseFunctor.h index d66ad9fdc54..9c76f593b9a 100644 --- a/Modules/ModelFit/include/mitkGaussianNoiseFunctor.h +++ b/Modules/ModelFit/include/mitkGaussianNoiseFunctor.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKGAUSSIANNOISEFUNCTOR_H #define MITKGAUSSIANNOISEFUNCTOR_H diff --git a/Modules/ModelFit/include/mitkGenericParamModel.h b/Modules/ModelFit/include/mitkGenericParamModel.h index fb1c9235695..9c39b3987d3 100644 --- a/Modules/ModelFit/include/mitkGenericParamModel.h +++ b/Modules/ModelFit/include/mitkGenericParamModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_GENERIC_PARAM_MODEL_H_ #define __MITK_GENERIC_PARAM_MODEL_H_ @@ -109,4 +105,4 @@ namespace mitk }; } -#endif \ No newline at end of file +#endif diff --git a/Modules/ModelFit/include/mitkGenericParamModelFactory.h b/Modules/ModelFit/include/mitkGenericParamModelFactory.h index 47982bc94ac..5c036d50fc8 100644 --- a/Modules/ModelFit/include/mitkGenericParamModelFactory.h +++ b/Modules/ModelFit/include/mitkGenericParamModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __GENERIC_PARAM_MODEL_FACTORY_H #define __GENERIC_PARAM_MODEL_FACTORY_H diff --git a/Modules/ModelFit/include/mitkGenericParamModelParameterizer.h b/Modules/ModelFit/include/mitkGenericParamModelParameterizer.h index ed6c9d4650c..6edb2011681 100644 --- a/Modules/ModelFit/include/mitkGenericParamModelParameterizer.h +++ b/Modules/ModelFit/include/mitkGenericParamModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __GENERIC_PARAM_MODEL_PARAMETERIZER_H #define __GENERIC_PARAM_MODEL_PARAMETERIZER_H diff --git a/Modules/ModelFit/include/mitkIModelFitProvider.h b/Modules/ModelFit/include/mitkIModelFitProvider.h index 9e32e804dc6..9ad805a53f1 100644 --- a/Modules/ModelFit/include/mitkIModelFitProvider.h +++ b/Modules/ModelFit/include/mitkIModelFitProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __I_MODEL_FIT_PROVIDER_H #define __I_MODEL_FIT_PROVIDER_H diff --git a/Modules/ModelFit/include/mitkIModelProvider.h b/Modules/ModelFit/include/mitkIModelProvider.h index 5d5ea04aea7..d31cf407ab6 100644 --- a/Modules/ModelFit/include/mitkIModelProvider.h +++ b/Modules/ModelFit/include/mitkIModelProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __I_MODEL_FIT_PROVIDER_H #define __I_MODEL_FIT_PROVIDER_H diff --git a/Modules/ModelFit/include/mitkImageBasedParameterizationDelegate.h b/Modules/ModelFit/include/mitkImageBasedParameterizationDelegate.h index 10c22689808..3cd498e8611 100644 --- a/Modules/ModelFit/include/mitkImageBasedParameterizationDelegate.h +++ b/Modules/ModelFit/include/mitkImageBasedParameterizationDelegate.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKIMAGEBASEDPARAMETERIZATIONDELEGATE_H #define MITKIMAGEBASEDPARAMETERIZATIONDELEGATE_H diff --git a/Modules/ModelFit/include/mitkIndexedValueFunctorBase.h b/Modules/ModelFit/include/mitkIndexedValueFunctorBase.h index 4ad7c27fec9..db98503b5e7 100644 --- a/Modules/ModelFit/include/mitkIndexedValueFunctorBase.h +++ b/Modules/ModelFit/include/mitkIndexedValueFunctorBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IndexedValueFunctorBase_H #define IndexedValueFunctorBase_H diff --git a/Modules/ModelFit/include/mitkIndexedValueFunctorPolicy.h b/Modules/ModelFit/include/mitkIndexedValueFunctorPolicy.h index 0abf293e82e..aebd7ee4608 100644 --- a/Modules/ModelFit/include/mitkIndexedValueFunctorPolicy.h +++ b/Modules/ModelFit/include/mitkIndexedValueFunctorPolicy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IndexedValueFunctorPolicy_H #define IndexedValueFunctorPolicy_H diff --git a/Modules/ModelFit/include/mitkInitialParameterizationDelegateBase.h b/Modules/ModelFit/include/mitkInitialParameterizationDelegateBase.h index 38b49fae53a..655a0e5e3d3 100644 --- a/Modules/ModelFit/include/mitkInitialParameterizationDelegateBase.h +++ b/Modules/ModelFit/include/mitkInitialParameterizationDelegateBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __INITIAL_PARAMETERIZATION_DELEGATE_BASE_H #define __INITIAL_PARAMETERIZATION_DELEGATE_BASE_H diff --git a/Modules/ModelFit/include/mitkLevenbergMarquardtModelFitFunctor.h b/Modules/ModelFit/include/mitkLevenbergMarquardtModelFitFunctor.h index 399808e5540..77f2f87c5ee 100644 --- a/Modules/ModelFit/include/mitkLevenbergMarquardtModelFitFunctor.h +++ b/Modules/ModelFit/include/mitkLevenbergMarquardtModelFitFunctor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef LEVENBERGMARQUARDTMODELFITFUNCTOR_H #define LEVENBERGMARQUARDTMODELFITFUNCTOR_H diff --git a/Modules/ModelFit/include/mitkLinearModel.h b/Modules/ModelFit/include/mitkLinearModel.h index 34480b2258d..51421b0a9c3 100644 --- a/Modules/ModelFit/include/mitkLinearModel.h +++ b/Modules/ModelFit/include/mitkLinearModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_LINEAR_MODEL_H_ #define __MITK_LINEAR_MODEL_H_ diff --git a/Modules/ModelFit/include/mitkLinearModelFactory.h b/Modules/ModelFit/include/mitkLinearModelFactory.h index 771f0d56243..ad3c4ca3ff9 100644 --- a/Modules/ModelFit/include/mitkLinearModelFactory.h +++ b/Modules/ModelFit/include/mitkLinearModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __LINEAR_TEST_MODEL_FACTORY_H #define __LINEAR_TEST_MODEL_FACTORY_H diff --git a/Modules/ModelFit/include/mitkLinearModelParameterizer.h b/Modules/ModelFit/include/mitkLinearModelParameterizer.h index cec8632d242..bc93dc9715e 100644 --- a/Modules/ModelFit/include/mitkLinearModelParameterizer.h +++ b/Modules/ModelFit/include/mitkLinearModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __LINEAR_MODEL_PARAMETERIZER_H #define __LINEAR_MODEL_PARAMETERIZER_H diff --git a/Modules/ModelFit/include/mitkMVConstrainedCostFunctionDecorator.h b/Modules/ModelFit/include/mitkMVConstrainedCostFunctionDecorator.h index fd921661136..53e70486bd1 100644 --- a/Modules/ModelFit/include/mitkMVConstrainedCostFunctionDecorator.h +++ b/Modules/ModelFit/include/mitkMVConstrainedCostFunctionDecorator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MV_CONSTRAINED_COST_FUNCTION_DECORATOR_H #define MV_CONSTRAINED_COST_FUNCTION_DECORATOR_H diff --git a/Modules/ModelFit/include/mitkMVModelFitCostFunction.h b/Modules/ModelFit/include/mitkMVModelFitCostFunction.h index 7752b77fcc3..d4fe8577d72 100644 --- a/Modules/ModelFit/include/mitkMVModelFitCostFunction.h +++ b/Modules/ModelFit/include/mitkMVModelFitCostFunction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MV_MODELFITCOSTFUNCTION_H #define MV_MODELFITCOSTFUNCTION_H diff --git a/Modules/ModelFit/include/mitkMaskedDynamicImageStatisticsGenerator.h b/Modules/ModelFit/include/mitkMaskedDynamicImageStatisticsGenerator.h index 236f61daf16..a0d11010938 100644 --- a/Modules/ModelFit/include/mitkMaskedDynamicImageStatisticsGenerator.h +++ b/Modules/ModelFit/include/mitkMaskedDynamicImageStatisticsGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef __MITK_MASKED_DYMAMIC_IMAGE_STATISTICS_GENERATOR_H #define __MITK_MASKED_DYMAMIC_IMAGE_STATISTICS_GENERATOR_H diff --git a/Modules/ModelFit/include/mitkModelBase.h b/Modules/ModelFit/include/mitkModelBase.h index 491f50667da..4a1edc01a0d 100644 --- a/Modules/ModelFit/include/mitkModelBase.h +++ b/Modules/ModelFit/include/mitkModelBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MODELBASE_H #define MODELBASE_H diff --git a/Modules/ModelFit/include/mitkModelBasedValueFunctorBase.h b/Modules/ModelFit/include/mitkModelBasedValueFunctorBase.h index 7df800933f9..880a66a599c 100644 --- a/Modules/ModelFit/include/mitkModelBasedValueFunctorBase.h +++ b/Modules/ModelFit/include/mitkModelBasedValueFunctorBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ModelBasedValueFunctorBase_H #define ModelBasedValueFunctorBase_H diff --git a/Modules/ModelFit/include/mitkModelDataGenerationFunctor.h b/Modules/ModelFit/include/mitkModelDataGenerationFunctor.h index 0960c5d4912..714a9ca732e 100644 --- a/Modules/ModelFit/include/mitkModelDataGenerationFunctor.h +++ b/Modules/ModelFit/include/mitkModelDataGenerationFunctor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMODELDATAGENERATIONFUNCTOR_H #define MITKMODELDATAGENERATIONFUNCTOR_H diff --git a/Modules/ModelFit/include/mitkModelFactoryBase.h b/Modules/ModelFit/include/mitkModelFactoryBase.h index 06a34821a84..04b4265dc3a 100644 --- a/Modules/ModelFit/include/mitkModelFactoryBase.h +++ b/Modules/ModelFit/include/mitkModelFactoryBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MODEL_FACTORY_BASE_H #define __MODEL_FACTORY_BASE_H diff --git a/Modules/ModelFit/include/mitkModelFitCmdAppsHelper.h b/Modules/ModelFit/include/mitkModelFitCmdAppsHelper.h index 948efb124a2..c1803478a49 100644 --- a/Modules/ModelFit/include/mitkModelFitCmdAppsHelper.h +++ b/Modules/ModelFit/include/mitkModelFitCmdAppsHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MODEL_FIT_CMD_APPS_HELPER_H_ #define _MITK_MODEL_FIT_CMD_APPS_HELPER_H_ diff --git a/Modules/ModelFit/include/mitkModelFitConstants.h b/Modules/ModelFit/include/mitkModelFitConstants.h index 5c47b4264f7..cd46c07776c 100644 --- a/Modules/ModelFit/include/mitkModelFitConstants.h +++ b/Modules/ModelFit/include/mitkModelFitConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MODEL_FIT_CONSTANTS_H_ #define _MITK_MODEL_FIT_CONSTANTS_H_ @@ -37,10 +33,10 @@ namespace mitk /** * modelfit.input.variables ist eine Map der Variablennamen, die einem Eingabebild zu eigen sind und - * unabhängig von einem Fit sind. - * Deren Wert ist ein Array, welches die Variablenwerte für die einzelnen Zeitschritte enthält. - * Die Länge eines solchen Arrays muss entweder der Anzahl der Zeitschritte dieses Bildes entsprechen - * oder genau 1 sein, wenn der Wert für alle Zeitschritte dieses Bildes gleich ist. + * unabhängig von einem Fit sind. + * Deren Wert ist ein Array, welches die Variablenwerte für die einzelnen Zeitschritte enthält. + * Die Länge eines solchen Arrays muss entweder der Anzahl der Zeitschritte dieses Bildes entsprechen + * oder genau 1 sein, wenn der Wert für alle Zeitschritte dieses Bildes gleich ist. * Beispiele: * ["x1":[580], "x2":[3060], "x3":[41]] (1 Zeitschritt, 3 Variablen) * ["TE":[2.47, 5.85, 9.23, 12.61], "TI":[10.3]] (4 Zeitschritte, 2 Variablen) @@ -68,22 +64,22 @@ namespace mitk static const std::string PARAMETER_TYPE_PROPERTY_NAME(); /** - * modelfit.parameter.type Wert für normale Parameters. + * modelfit.parameter.type Wert für normale Parameters. */ static const std::string PARAMETER_TYPE_VALUE_PARAMETER(); /** - * modelfit.parameter.type Wert für derived Parameters. + * modelfit.parameter.type Wert für derived Parameters. */ static const std::string PARAMETER_TYPE_VALUE_DERIVED_PARAMETER(); /** - * modelfit.parameter.type Wert für Crtierion-Parameters. + * modelfit.parameter.type Wert für Crtierion-Parameters. */ static const std::string PARAMETER_TYPE_VALUE_CRITERION(); /** - * modelfit.parameter.type Wert für Evaluation-Parameters. + * modelfit.parameter.type Wert für Evaluation-Parameters. */ static const std::string PARAMETER_TYPE_VALUE_EVALUATION_PARAMETER(); @@ -148,8 +144,8 @@ namespace mitk static const std::string YAXIS_UNIT_PROPERTY_NAME(); /** - * modelfit.fit.uid ist eine einzigartige ID (unabhängig von Ausführungsrechner, Session oder Applikationsinstanz), - * die einem Fit vergeben wird um alle zugehörigen Bilder eindeutig zu kennzeichnen. + * modelfit.fit.uid ist eine einzigartige ID (unabhängig von Ausführungsrechner, Session oder Applikationsinstanz), + * die einem Fit vergeben wird um alle zugehörigen Bilder eindeutig zu kennzeichnen. */ static const std::string FIT_UID_PROPERTY_NAME(); @@ -185,10 +181,10 @@ namespace mitk /** * modelfit.fit.staticParameters ist eine Map der Variablennamen, die im Funktions-String vorkommen und - * nicht mit modelfit.input.variables abgedeckt sind. Dies können z.B. Konstanten sein oder Variablen, - * die sich (abhängig vom Fit) über den Zeitverlauf ändern, wie z.B. der Mittelwert einer Maske über einen Arterienquerschnitt. + * nicht mit modelfit.input.variables abgedeckt sind. Dies können z.B. Konstanten sein oder Variablen, + * die sich (abhängig vom Fit) über den Zeitverlauf ändern, wie z.B. der Mittelwert einer Maske über einen Arterienquerschnitt. * (Entspricht den StaticParameters in mitk::ModelBase) - * Der Wert der Variablen ist ein Array, welches die Variablenwerte enthält. + * Der Wert der Variablen ist ein Array, welches die Variablenwerte enthält. * Beispiel: * ["AIF":[2, 8, 8, 4, 5], "tau":[0.42]] (insgesamt 5 Zeitschritte, 2 Variablen) */ diff --git a/Modules/ModelFit/include/mitkModelFitCostFunctionInterface.h b/Modules/ModelFit/include/mitkModelFitCostFunctionInterface.h index 6ec81f39f0e..3564942b21d 100644 --- a/Modules/ModelFit/include/mitkModelFitCostFunctionInterface.h +++ b/Modules/ModelFit/include/mitkModelFitCostFunctionInterface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MODELFITCOSTFUNCTION_INTERFACE_H #define MODELFITCOSTFUNCTION_INTERFACE_H diff --git a/Modules/ModelFit/include/mitkModelFitException.h b/Modules/ModelFit/include/mitkModelFitException.h index 3b398cdcf0a..c3d460b91e9 100644 --- a/Modules/ModelFit/include/mitkModelFitException.h +++ b/Modules/ModelFit/include/mitkModelFitException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkModelFitException_h #define mitkModelFitException_h diff --git a/Modules/ModelFit/include/mitkModelFitFunctorBase.h b/Modules/ModelFit/include/mitkModelFitFunctorBase.h index e8f349474b8..9500c869542 100644 --- a/Modules/ModelFit/include/mitkModelFitFunctorBase.h +++ b/Modules/ModelFit/include/mitkModelFitFunctorBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MODEL_FIT_FUNCTOR_BASE_H #define MODEL_FIT_FUNCTOR_BASE_H diff --git a/Modules/ModelFit/include/mitkModelFitFunctorPolicy.h b/Modules/ModelFit/include/mitkModelFitFunctorPolicy.h index 8e577776869..5f3efeb70de 100644 --- a/Modules/ModelFit/include/mitkModelFitFunctorPolicy.h +++ b/Modules/ModelFit/include/mitkModelFitFunctorPolicy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MODELFITFUNCTOR_POLICY_H #define MODELFITFUNCTOR_POLICY_H diff --git a/Modules/ModelFit/include/mitkModelFitInfo.h b/Modules/ModelFit/include/mitkModelFitInfo.h index 6c83b168ef1..9cc162070e2 100644 --- a/Modules/ModelFit/include/mitkModelFitInfo.h +++ b/Modules/ModelFit/include/mitkModelFitInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkModelFitInfo_h #define mitkModelFitInfo_h diff --git a/Modules/ModelFit/include/mitkModelFitInfoSignalGenerationFunctor.h b/Modules/ModelFit/include/mitkModelFitInfoSignalGenerationFunctor.h index fbe64ec5919..dc73b26f152 100644 --- a/Modules/ModelFit/include/mitkModelFitInfoSignalGenerationFunctor.h +++ b/Modules/ModelFit/include/mitkModelFitInfoSignalGenerationFunctor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKModelFitInfoSignalGenerationFunctor_H #define MITKModelFitInfoSignalGenerationFunctor_H diff --git a/Modules/ModelFit/include/mitkModelFitParameter.h b/Modules/ModelFit/include/mitkModelFitParameter.h index 2563978942f..35bc60b29aa 100644 --- a/Modules/ModelFit/include/mitkModelFitParameter.h +++ b/Modules/ModelFit/include/mitkModelFitParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkModelFitParameter_h #define mitkModelFitParameter_h @@ -67,4 +63,4 @@ namespace mitk } } -#endif // mitkModelFitParameter_h \ No newline at end of file +#endif // mitkModelFitParameter_h diff --git a/Modules/ModelFit/include/mitkModelFitParameterValueExtraction.h b/Modules/ModelFit/include/mitkModelFitParameterValueExtraction.h index 57028082a23..48d2f117739 100644 --- a/Modules/ModelFit/include/mitkModelFitParameterValueExtraction.h +++ b/Modules/ModelFit/include/mitkModelFitParameterValueExtraction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkModelFitParameterValueExtraction_h #define mitkModelFitParameterValueExtraction_h diff --git a/Modules/ModelFit/include/mitkModelFitPlotDataHelper.h b/Modules/ModelFit/include/mitkModelFitPlotDataHelper.h index 6d8f126ada3..de73de8b14d 100644 --- a/Modules/ModelFit/include/mitkModelFitPlotDataHelper.h +++ b/Modules/ModelFit/include/mitkModelFitPlotDataHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_MODEL_FIT_PLOT_DATA_HELPER_H_ #define __MITK_MODEL_FIT_PLOT_DATA_HELPER_H_ diff --git a/Modules/ModelFit/include/mitkModelFitProviderBase.h b/Modules/ModelFit/include/mitkModelFitProviderBase.h index 54c3098fd05..5049413746a 100644 --- a/Modules/ModelFit/include/mitkModelFitProviderBase.h +++ b/Modules/ModelFit/include/mitkModelFitProviderBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MODEL_FIT_PROVIDER_BASE_H #define __MODEL_FIT_PROVIDER_BASE_H diff --git a/Modules/ModelFit/include/mitkModelFitProviderBase.tpp b/Modules/ModelFit/include/mitkModelFitProviderBase.tpp index 3401d50ce7f..283699ddc5d 100644 --- a/Modules/ModelFit/include/mitkModelFitProviderBase.tpp +++ b/Modules/ModelFit/include/mitkModelFitProviderBase.tpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ModelFit/include/mitkModelFitResultHelper.h b/Modules/ModelFit/include/mitkModelFitResultHelper.h index fe58e629bf4..04cb64a4c5b 100644 --- a/Modules/ModelFit/include/mitkModelFitResultHelper.h +++ b/Modules/ModelFit/include/mitkModelFitResultHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_MODEL_FIT_RESULT_HELPER_H_ #define __MITK_MODEL_FIT_RESULT_HELPER_H_ diff --git a/Modules/ModelFit/include/mitkModelFitStaticParameterMap.h b/Modules/ModelFit/include/mitkModelFitStaticParameterMap.h index 80f95b182a2..ab8bf7e9c99 100644 --- a/Modules/ModelFit/include/mitkModelFitStaticParameterMap.h +++ b/Modules/ModelFit/include/mitkModelFitStaticParameterMap.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkModelFitStaticParameterMap_h #define mitkModelFitStaticParameterMap_h diff --git a/Modules/ModelFit/include/mitkModelFitUIDHelper.h b/Modules/ModelFit/include/mitkModelFitUIDHelper.h index df88559d703..d601844ca3a 100644 --- a/Modules/ModelFit/include/mitkModelFitUIDHelper.h +++ b/Modules/ModelFit/include/mitkModelFitUIDHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkModelFitUIDHelper_h @@ -45,7 +41,7 @@ namespace mitk NodeUIDType MITKMODELFIT_EXPORT EnsureModelFitUID(mitk::DataNode* node); /** Helper that checks if the data has the passed UID. Following strategy will be used for the check. - 1. Checks existance of property "data.uid" and if its content equals the passed uid. + 1. Checks existance of property "data.uid" and if its content equals the passed uid. 2. If 1 fails, it checks the existance of a property for the DICOM tag series instance UID (0x0020, 0x000e) and the equality of its value. 3. If 2 also fails, return will be false.*/ bool MITKMODELFIT_EXPORT CheckModelFitUID(const mitk::BaseData* data, const NodeUIDType& uid); diff --git a/Modules/ModelFit/include/mitkModelGenerator.h b/Modules/ModelFit/include/mitkModelGenerator.h index fb6ef84c42e..67811588f3b 100644 --- a/Modules/ModelFit/include/mitkModelGenerator.h +++ b/Modules/ModelFit/include/mitkModelGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MODEL_GENERATOR_H #define MODEL_GENERATOR_H diff --git a/Modules/ModelFit/include/mitkModelParameterizerBase.h b/Modules/ModelFit/include/mitkModelParameterizerBase.h index be9205dcdc6..049fbc6c494 100644 --- a/Modules/ModelFit/include/mitkModelParameterizerBase.h +++ b/Modules/ModelFit/include/mitkModelParameterizerBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MODEL_PARAMETERIZER_BASE_H #define __MODEL_PARAMETERIZER_BASE_H diff --git a/Modules/ModelFit/include/mitkModelSignalImageGenerator.h b/Modules/ModelFit/include/mitkModelSignalImageGenerator.h index 9c43c19a378..90ae746fb4e 100644 --- a/Modules/ModelFit/include/mitkModelSignalImageGenerator.h +++ b/Modules/ModelFit/include/mitkModelSignalImageGenerator.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MODELSIGNALIMAGEGENERATOR_H #define MODELSIGNALIMAGEGENERATOR_H diff --git a/Modules/ModelFit/include/mitkModelTraitsInterface.h b/Modules/ModelFit/include/mitkModelTraitsInterface.h index f0392463723..79c9202483c 100644 --- a/Modules/ModelFit/include/mitkModelTraitsInterface.h +++ b/Modules/ModelFit/include/mitkModelTraitsInterface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MODEL_TRAITS_INTERFACE_H #define __MODEL_TRAITS_INTERFACE_H diff --git a/Modules/ModelFit/include/mitkNormalizedSumOfSquaredDifferencesFitCostFunction.h b/Modules/ModelFit/include/mitkNormalizedSumOfSquaredDifferencesFitCostFunction.h index f415ca6a64a..96bbc7dfc9a 100644 --- a/Modules/ModelFit/include/mitkNormalizedSumOfSquaredDifferencesFitCostFunction.h +++ b/Modules/ModelFit/include/mitkNormalizedSumOfSquaredDifferencesFitCostFunction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNORMALIZEDSUMOFSQUAREDDIFFERENCESFITCOSTFUNCTION_H #define MITKNORMALIZEDSUMOFSQUAREDDIFFERENCESFITCOSTFUNCTION_H diff --git a/Modules/ModelFit/include/mitkParameterFitImageGeneratorBase.h b/Modules/ModelFit/include/mitkParameterFitImageGeneratorBase.h index 1afade58dd8..0c86a45bc70 100644 --- a/Modules/ModelFit/include/mitkParameterFitImageGeneratorBase.h +++ b/Modules/ModelFit/include/mitkParameterFitImageGeneratorBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_PARAMETER_FIT_IMAGE_GENERATOR_BASE_H_ #define __MITK_PARAMETER_FIT_IMAGE_GENERATOR_BASE_H_ diff --git a/Modules/ModelFit/include/mitkPixelBasedParameterFitImageGenerator.h b/Modules/ModelFit/include/mitkPixelBasedParameterFitImageGenerator.h index 2c493450224..2405f41ed9b 100644 --- a/Modules/ModelFit/include/mitkPixelBasedParameterFitImageGenerator.h +++ b/Modules/ModelFit/include/mitkPixelBasedParameterFitImageGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef __MITK_PIXEL_BASED_PARAMETER_FIT_IMAGE_GENERATOR_H_ #define __MITK_PIXEL_BASED_PARAMETER_FIT_IMAGE_GENERATOR_H_ diff --git a/Modules/ModelFit/include/mitkROIBasedParameterFitImageGenerator.h b/Modules/ModelFit/include/mitkROIBasedParameterFitImageGenerator.h index 0d0042f9894..9ea56d1fb23 100644 --- a/Modules/ModelFit/include/mitkROIBasedParameterFitImageGenerator.h +++ b/Modules/ModelFit/include/mitkROIBasedParameterFitImageGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef __MITK_ROI_BASED_PARAMETER_FIT_IMAGE_GENERATOR_H_ #define __MITK_ROI_BASED_PARAMETER_FIT_IMAGE_GENERATOR_H_ diff --git a/Modules/ModelFit/include/mitkReducedChiSquareFitCostFunction.h b/Modules/ModelFit/include/mitkReducedChiSquareFitCostFunction.h index ccb34f7ddcc..942fadc403d 100644 --- a/Modules/ModelFit/include/mitkReducedChiSquareFitCostFunction.h +++ b/Modules/ModelFit/include/mitkReducedChiSquareFitCostFunction.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef REDUCED_CHI_SQUARE_FITCOSTFUNCTION_H #define REDUCED_CHI_SQUARE_FITCOSTFUNCTION_H diff --git a/Modules/ModelFit/include/mitkSVModelFitCostFunction.h b/Modules/ModelFit/include/mitkSVModelFitCostFunction.h index 1e50197009d..e8d83042c45 100644 --- a/Modules/ModelFit/include/mitkSVModelFitCostFunction.h +++ b/Modules/ModelFit/include/mitkSVModelFitCostFunction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SV_MODELFITCOSTFUNCTION_H #define SV_MODELFITCOSTFUNCTION_H @@ -53,7 +49,7 @@ class MITKMODELFIT_EXPORT SVModelFitCostFunction : public itk::SingleValuedCostF itkSetMacro(DerivativeStepLength, double); itkGetConstMacro(DerivativeStepLength, double); - + protected: virtual MeasureType CalcMeasure(const ParametersType ¶meters, const SignalType& signal) const = 0; diff --git a/Modules/ModelFit/include/mitkScalarListLookupTable.h b/Modules/ModelFit/include/mitkScalarListLookupTable.h index fe9a4eb5a54..12e60e06b6a 100644 --- a/Modules/ModelFit/include/mitkScalarListLookupTable.h +++ b/Modules/ModelFit/include/mitkScalarListLookupTable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkScalarListLookupTable_h #define mitkScalarListLookupTable_h diff --git a/Modules/ModelFit/include/mitkScalarListLookupTableProperty.h b/Modules/ModelFit/include/mitkScalarListLookupTableProperty.h index 16009c7a98b..b7d497a9ee3 100644 --- a/Modules/ModelFit/include/mitkScalarListLookupTableProperty.h +++ b/Modules/ModelFit/include/mitkScalarListLookupTableProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkScalarListLookupTableProperty_h #define mitkScalarListLookupTableProperty_h diff --git a/Modules/ModelFit/include/mitkScalarListLookupTablePropertySerializer.h b/Modules/ModelFit/include/mitkScalarListLookupTablePropertySerializer.h index d2c4224ce04..b3db0deccc6 100644 --- a/Modules/ModelFit/include/mitkScalarListLookupTablePropertySerializer.h +++ b/Modules/ModelFit/include/mitkScalarListLookupTablePropertySerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkScalarListLookupTablePropertySerializer_h #define mitkScalarListLookupTablePropertySerializer_h diff --git a/Modules/ModelFit/include/mitkSimpleBarrierConstraintChecker.h b/Modules/ModelFit/include/mitkSimpleBarrierConstraintChecker.h index 1c50ccfe5ec..0cd66f27799 100644 --- a/Modules/ModelFit/include/mitkSimpleBarrierConstraintChecker.h +++ b/Modules/ModelFit/include/mitkSimpleBarrierConstraintChecker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SIMPLE_BARRIER_CONSTRAINT_CHECKER_H #define SIMPLE_BARRIER_CONSTRAINT_CHECKER_H diff --git a/Modules/ModelFit/include/mitkSimpleFunctorBase.h b/Modules/ModelFit/include/mitkSimpleFunctorBase.h index da29c2c3f31..341665ff05a 100644 --- a/Modules/ModelFit/include/mitkSimpleFunctorBase.h +++ b/Modules/ModelFit/include/mitkSimpleFunctorBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SIMPLEFUNCTORBASE_H #define SIMPLEFUNCTORBASE_H diff --git a/Modules/ModelFit/include/mitkSimpleFunctorPolicy.h b/Modules/ModelFit/include/mitkSimpleFunctorPolicy.h index 27d5827cca1..5302f2a8dc1 100644 --- a/Modules/ModelFit/include/mitkSimpleFunctorPolicy.h +++ b/Modules/ModelFit/include/mitkSimpleFunctorPolicy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SIMPLEFUNCTOR_POLICY_H #define SIMPLEFUNCTOR_POLICY_H diff --git a/Modules/ModelFit/include/mitkSquaredDifferencesFitCostFunction.h b/Modules/ModelFit/include/mitkSquaredDifferencesFitCostFunction.h index de6c65e3d66..39b5b88f17a 100644 --- a/Modules/ModelFit/include/mitkSquaredDifferencesFitCostFunction.h +++ b/Modules/ModelFit/include/mitkSquaredDifferencesFitCostFunction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SQUARED_DIFFERENCES_FITCOSTFUNCTION_H #define SQUARED_DIFFERENCES_FITCOSTFUNCTION_H @@ -43,7 +39,7 @@ class MITKMODELFIT_EXPORT SquaredDifferencesFitCostFunction : public mitk::MVMod protected: MeasureType CalcMeasure(const ParametersType ¶meters, const SignalType& signal) const override; - + SquaredDifferencesFitCostFunction() { } diff --git a/Modules/ModelFit/include/mitkSumOfSquaredDifferencesFitCostFunction.h b/Modules/ModelFit/include/mitkSumOfSquaredDifferencesFitCostFunction.h index df5290a16a6..9c3cb8e93db 100644 --- a/Modules/ModelFit/include/mitkSumOfSquaredDifferencesFitCostFunction.h +++ b/Modules/ModelFit/include/mitkSumOfSquaredDifferencesFitCostFunction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SUM_OF_SQUARED_DIFFERENCES_FITCOSTFUNCTION_H #define SUM_OF_SQUARED_DIFFERENCES_FITCOSTFUNCTION_H @@ -43,7 +39,7 @@ class MITKMODELFIT_EXPORT SumOfSquaredDifferencesFitCostFunction : public mitk:: protected: MeasureType CalcMeasure(const ParametersType ¶meters, const SignalType& signal) const override; - + SumOfSquaredDifferencesFitCostFunction() { } diff --git a/Modules/ModelFit/include/mitkT2DecayModel.h b/Modules/ModelFit/include/mitkT2DecayModel.h index 260d6279729..e9ac0ebf3e1 100644 --- a/Modules/ModelFit/include/mitkT2DecayModel.h +++ b/Modules/ModelFit/include/mitkT2DecayModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_T2_DECAY_MODEL_H_ #define __MITK_T2_DECAY_MODEL_H_ diff --git a/Modules/ModelFit/include/mitkT2DecayModelFactory.h b/Modules/ModelFit/include/mitkT2DecayModelFactory.h index a796cc04cd2..76c294c33ac 100644 --- a/Modules/ModelFit/include/mitkT2DecayModelFactory.h +++ b/Modules/ModelFit/include/mitkT2DecayModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __T2_DECAY_TEST_MODEL_FACTORY_H #define __T2_DECAY_TEST_MODEL_FACTORY_H diff --git a/Modules/ModelFit/include/mitkT2DecayModelParameterizer.h b/Modules/ModelFit/include/mitkT2DecayModelParameterizer.h index a68e3996239..922fc798af7 100644 --- a/Modules/ModelFit/include/mitkT2DecayModelParameterizer.h +++ b/Modules/ModelFit/include/mitkT2DecayModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __T2_DECAY_MODEL_PARAMETERIZER_H #define __T2_DECAY_MODEL_PARAMETERIZER_H diff --git a/Modules/ModelFit/include/mitkTestModel.h b/Modules/ModelFit/include/mitkTestModel.h index 3cfbcd950ff..0e1e2b72094 100644 --- a/Modules/ModelFit/include/mitkTestModel.h +++ b/Modules/ModelFit/include/mitkTestModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_TEST_MODEL_H_ #define __MITK_TEST_MODEL_H_ diff --git a/Modules/ModelFit/include/mitkTestModelFactory.h b/Modules/ModelFit/include/mitkTestModelFactory.h index 7710b0ec433..3d8895a1c64 100644 --- a/Modules/ModelFit/include/mitkTestModelFactory.h +++ b/Modules/ModelFit/include/mitkTestModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __TEST_MODEL_FACTORY_H #define __TEST_MODEL_FACTORY_H diff --git a/Modules/ModelFit/include/mitkTimeGridHelper.h b/Modules/ModelFit/include/mitkTimeGridHelper.h index d4d0b4498dc..fba0b23e515 100644 --- a/Modules/ModelFit/include/mitkTimeGridHelper.h +++ b/Modules/ModelFit/include/mitkTimeGridHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_TIME_GRID_HELPER_H_ #define __MITK_TIME_GRID_HELPER_H_ diff --git a/Modules/ModelFit/include/mitkValueBasedParameterizationDelegate.h b/Modules/ModelFit/include/mitkValueBasedParameterizationDelegate.h index 6ce2a22e7db..5e3f595c792 100644 --- a/Modules/ModelFit/include/mitkValueBasedParameterizationDelegate.h +++ b/Modules/ModelFit/include/mitkValueBasedParameterizationDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __VALUE_BASED_PARAMETERIZATION_DELEGATE_H #define __VALUE_BASED_PARAMETERIZATION_DELEGATE_H diff --git a/Modules/ModelFit/src/Common/mitkBinaryImageToLabelSetImageFilter.cpp b/Modules/ModelFit/src/Common/mitkBinaryImageToLabelSetImageFilter.cpp index beb24061ddc..577374108cb 100644 --- a/Modules/ModelFit/src/Common/mitkBinaryImageToLabelSetImageFilter.cpp +++ b/Modules/ModelFit/src/Common/mitkBinaryImageToLabelSetImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBinaryImageToLabelSetImageFilter.h" diff --git a/Modules/ModelFit/src/Common/mitkExtractTimeGrid.cpp b/Modules/ModelFit/src/Common/mitkExtractTimeGrid.cpp index 108bc787bcd..94a25dd4405 100644 --- a/Modules/ModelFit/src/Common/mitkExtractTimeGrid.cpp +++ b/Modules/ModelFit/src/Common/mitkExtractTimeGrid.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtractTimeGrid.h" diff --git a/Modules/ModelFit/src/Common/mitkFormulaParser.cpp b/Modules/ModelFit/src/Common/mitkFormulaParser.cpp index b5427bcf655..eda29c8517e 100644 --- a/Modules/ModelFit/src/Common/mitkFormulaParser.cpp +++ b/Modules/ModelFit/src/Common/mitkFormulaParser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ModelFit/src/Common/mitkFresnel.cpp b/Modules/ModelFit/src/Common/mitkFresnel.cpp index 60b9cd21bc9..f1ba08f6f0d 100644 --- a/Modules/ModelFit/src/Common/mitkFresnel.cpp +++ b/Modules/ModelFit/src/Common/mitkFresnel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /**************************************************************************** * fresnel.c - diff --git a/Modules/ModelFit/src/Common/mitkIModelFitProvider.cpp b/Modules/ModelFit/src/Common/mitkIModelFitProvider.cpp index a4b4e7233dd..866adc4b77e 100644 --- a/Modules/ModelFit/src/Common/mitkIModelFitProvider.cpp +++ b/Modules/ModelFit/src/Common/mitkIModelFitProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIModelFitProvider.h" @@ -36,4 +32,4 @@ namespace mitk static std::string s = "org.mitk.IModelFitProvider.modeltype"; return s; } -} \ No newline at end of file +} diff --git a/Modules/ModelFit/src/Common/mitkMaskedDynamicImageStatisticsGenerator.cpp b/Modules/ModelFit/src/Common/mitkMaskedDynamicImageStatisticsGenerator.cpp index 005e9dce7cc..f20193192cb 100644 --- a/Modules/ModelFit/src/Common/mitkMaskedDynamicImageStatisticsGenerator.cpp +++ b/Modules/ModelFit/src/Common/mitkMaskedDynamicImageStatisticsGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMaskedDynamicImageStatisticsGenerator.h" diff --git a/Modules/ModelFit/src/Common/mitkModelFitCmdAppsHelper.cpp b/Modules/ModelFit/src/Common/mitkModelFitCmdAppsHelper.cpp index ed0319d98bb..2dc1760558a 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitCmdAppsHelper.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitCmdAppsHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ModelFit/src/Common/mitkModelFitConstants.cpp b/Modules/ModelFit/src/Common/mitkModelFitConstants.cpp index b373857280f..df83f5463a3 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitConstants.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFitConstants.h" @@ -48,4 +44,4 @@ const std::string mitk::ModelFitConstants::FIT_TYPE_VALUE_ROIBASED() { return "R const std::string mitk::ModelFitConstants::FIT_INPUT_IMAGEUID_PROPERTY_NAME() { return "modelfit.fit.input.imageUID";} const std::string mitk::ModelFitConstants::FIT_INPUT_ROIUID_PROPERTY_NAME() { return "modelfit.fit.input.roiUID";} const std::string mitk::ModelFitConstants::FIT_INPUT_DATA_PROPERTY_NAME() { return "modelfit.fit.input.data";} -const std::string mitk::ModelFitConstants::FIT_STATIC_PARAMETERS_PROPERTY_NAME() { return "modelfit.fit.staticParameters";} \ No newline at end of file +const std::string mitk::ModelFitConstants::FIT_STATIC_PARAMETERS_PROPERTY_NAME() { return "modelfit.fit.staticParameters";} diff --git a/Modules/ModelFit/src/Common/mitkModelFitInfo.cpp b/Modules/ModelFit/src/Common/mitkModelFitInfo.cpp index 576ed9a2600..065868e971c 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitInfo.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ModelFit/src/Common/mitkModelFitParameter.cpp b/Modules/ModelFit/src/Common/mitkModelFitParameter.cpp index c9abd9258e0..5b0e6694a56 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitParameter.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitParameter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFitParameter.h" diff --git a/Modules/ModelFit/src/Common/mitkModelFitParameterValueExtraction.cpp b/Modules/ModelFit/src/Common/mitkModelFitParameterValueExtraction.cpp index 6ecec4cd770..fa62460a3fd 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitParameterValueExtraction.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitParameterValueExtraction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFitParameterValueExtraction.h" #include "mitkModelFitException.h" diff --git a/Modules/ModelFit/src/Common/mitkModelFitPlotDataHelper.cpp b/Modules/ModelFit/src/Common/mitkModelFitPlotDataHelper.cpp index 999976c1cfb..abeef72a375 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitPlotDataHelper.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitPlotDataHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFitPlotDataHelper.h" diff --git a/Modules/ModelFit/src/Common/mitkModelFitResultHelper.cpp b/Modules/ModelFit/src/Common/mitkModelFitResultHelper.cpp index cba0057ef0e..5a18753ad07 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitResultHelper.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitResultHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFitResultHelper.h" @@ -49,7 +45,7 @@ namespace mitk if (dataType == modelFit::Parameter::ParameterType) { data->GetPropertyList()->SetStringProperty(ModelFitConstants::PARAMETER_TYPE_PROPERTY_NAME().c_str(), ModelFitConstants::PARAMETER_TYPE_VALUE_PARAMETER().c_str()); - } + } else if (dataType == modelFit::Parameter::DerivedType) { data->GetPropertyList()->SetStringProperty(ModelFitConstants::PARAMETER_TYPE_PROPERTY_NAME().c_str(), ModelFitConstants::PARAMETER_TYPE_VALUE_DERIVED_PARAMETER().c_str()); @@ -57,7 +53,7 @@ namespace mitk else if (dataType == modelFit::Parameter::CriterionType) { data->GetPropertyList()->SetStringProperty(ModelFitConstants::PARAMETER_TYPE_PROPERTY_NAME().c_str(), ModelFitConstants::PARAMETER_TYPE_VALUE_CRITERION().c_str()); - } + } else if (dataType == modelFit::Parameter::EvaluationType) { data->GetPropertyList()->SetStringProperty(ModelFitConstants::PARAMETER_TYPE_PROPERTY_NAME().c_str(), ModelFitConstants::PARAMETER_TYPE_VALUE_EVALUATION_PARAMETER().c_str()); @@ -196,7 +192,7 @@ mitk::ScalarListLookupTableProperty::Pointer mitk::modelFit::ConvertStaticParame { table.SetTableValue(pos->first,pos->second); } - + result->SetValue(table); return result; @@ -281,7 +277,7 @@ MITKMODELFIT_EXPORT void mitk::modelFit::StoreResultsInDataStorage(DataStorage* mitk::DICOMQIPropertyHelper::DeriveDICOMSourceProperties(parentNode->GetData(), pos->GetPointer()->GetData()); mitk::DICOMPMPropertyHelper::DeriveDICOMPMProperties(pos->GetPointer()->GetData()); } - + }; diff --git a/Modules/ModelFit/src/Common/mitkModelFitStaticParameterMap.cpp b/Modules/ModelFit/src/Common/mitkModelFitStaticParameterMap.cpp index 0485507210c..8d2201d6c64 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitStaticParameterMap.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitStaticParameterMap.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ModelFit/src/Common/mitkModelFitUIDHelper.cpp b/Modules/ModelFit/src/Common/mitkModelFitUIDHelper.cpp index 1972139585e..1e9bda1e0eb 100644 --- a/Modules/ModelFit/src/Common/mitkModelFitUIDHelper.cpp +++ b/Modules/ModelFit/src/Common/mitkModelFitUIDHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFitUIDHelper.h" @@ -65,8 +61,8 @@ mitk::NodeUIDType mitk::EnsureModelFitUID(mitk::BaseData* data) BaseProperty::Pointer uidProp = data->GetProperty(mitk::ModelFitConstants::UID_PROPERTY_NAME().c_str()); std::string propUID = ""; - - + + if (uidProp.IsNotNull()) { propUID = uidProp->GetValueAsString(); diff --git a/Modules/ModelFit/src/Common/mitkModelGenerator.cpp b/Modules/ModelFit/src/Common/mitkModelGenerator.cpp index 155143521de..5fc3c46ba60 100644 --- a/Modules/ModelFit/src/Common/mitkModelGenerator.cpp +++ b/Modules/ModelFit/src/Common/mitkModelGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelGenerator.h" #include "mitkIModelFitProvider.h" diff --git a/Modules/ModelFit/src/Common/mitkModelSignalImageGenerator.cpp b/Modules/ModelFit/src/Common/mitkModelSignalImageGenerator.cpp index bc5084cf058..89fd01465ba 100644 --- a/Modules/ModelFit/src/Common/mitkModelSignalImageGenerator.cpp +++ b/Modules/ModelFit/src/Common/mitkModelSignalImageGenerator.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkModelSignalImageGenerator.h" #include "itkMultiOutputNaryFunctorImageFilter.h" #include "mitkArbitraryTimeGeometry.h" diff --git a/Modules/ModelFit/src/Common/mitkParameterFitImageGeneratorBase.cpp b/Modules/ModelFit/src/Common/mitkParameterFitImageGeneratorBase.cpp index 065f238ac71..17af8ce4c60 100644 --- a/Modules/ModelFit/src/Common/mitkParameterFitImageGeneratorBase.cpp +++ b/Modules/ModelFit/src/Common/mitkParameterFitImageGeneratorBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkParameterFitImageGeneratorBase.h" @@ -97,4 +93,4 @@ mitk::ParameterFitImageGeneratorBase::ParameterImageMapType } return m_EvaluationParameterImageMap; -}; \ No newline at end of file +}; diff --git a/Modules/ModelFit/src/Common/mitkPixelBasedParameterFitImageGenerator.cpp b/Modules/ModelFit/src/Common/mitkPixelBasedParameterFitImageGenerator.cpp index e907d2934eb..306bc796ad4 100644 --- a/Modules/ModelFit/src/Common/mitkPixelBasedParameterFitImageGenerator.cpp +++ b/Modules/ModelFit/src/Common/mitkPixelBasedParameterFitImageGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkCommand.h" #include "itkMultiOutputNaryFunctorImageFilter.h" @@ -39,7 +35,7 @@ void }; template -void +void mitk::PixelBasedParameterFitImageGenerator::DoPrepareMask(itk::Image* image) { m_InternalMask = dynamic_cast(image); @@ -59,7 +55,7 @@ void } template -mitk::PixelBasedParameterFitImageGenerator::ParameterImageMapType StoreResultImages( mitk::ModelFitFunctorBase::ParameterNamesType ¶mNames, itk::ImageSource* source, mitk::ModelFitFunctorBase::ParameterNamesType::size_type startPos, mitk::ModelFitFunctorBase::ParameterNamesType::size_type& endPos ) +mitk::PixelBasedParameterFitImageGenerator::ParameterImageMapType StoreResultImages( mitk::ModelFitFunctorBase::ParameterNamesType ¶mNames, itk::ImageSource* source, mitk::ModelFitFunctorBase::ParameterNamesType::size_type startPos, mitk::ModelFitFunctorBase::ParameterNamesType::size_type& endPos ) { mitk::PixelBasedParameterFitImageGenerator::ParameterImageMapType result; for (mitk::ModelFitFunctorBase::ParameterNamesType::size_type j = 0; j < paramNames.size(); ++j) @@ -82,7 +78,7 @@ mitk::PixelBasedParameterFitImageGenerator::ParameterImageMapType StoreResultIma } template -void +void mitk::PixelBasedParameterFitImageGenerator::DoParameterFit(itk::Image* /*image*/) { using InputFrameImageType = itk::Image; @@ -128,7 +124,7 @@ void ModelFitFunctorPolicy functor; - functor.SetModelFitFunctor(this->m_FitFunctor); + functor.SetModelFitFunctor(this->m_FitFunctor); functor.SetModelParameterizer(this->m_ModelParameterizer); fitFilter->SetFunctor(functor); if (this->m_InternalMask.IsNotNull()) diff --git a/Modules/ModelFit/src/Common/mitkROIBasedParameterFitImageGenerator.cpp b/Modules/ModelFit/src/Common/mitkROIBasedParameterFitImageGenerator.cpp index 7c440fe8087..78fcf960fe1 100644 --- a/Modules/ModelFit/src/Common/mitkROIBasedParameterFitImageGenerator.cpp +++ b/Modules/ModelFit/src/Common/mitkROIBasedParameterFitImageGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkChangeInformationImageFilter.h" @@ -261,7 +257,7 @@ mitk::ROIBasedParameterFitImageGenerator::GetEvaluationParameterNames() const { auto evals = this->m_FitFunctor->GetEvaluationParameterNames(); auto debugs = this->m_FitFunctor->GetDebugParameterNames(); - + evals.insert(evals.end(), debugs.begin(), debugs.end()); return evals; diff --git a/Modules/ModelFit/src/Common/mitkScalarListLookupTable.cpp b/Modules/ModelFit/src/Common/mitkScalarListLookupTable.cpp index de51ca07f09..35d1c336ac3 100644 --- a/Modules/ModelFit/src/Common/mitkScalarListLookupTable.cpp +++ b/Modules/ModelFit/src/Common/mitkScalarListLookupTable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkScalarListLookupTable.h" #include diff --git a/Modules/ModelFit/src/Common/mitkScalarListLookupTableProperty.cpp b/Modules/ModelFit/src/Common/mitkScalarListLookupTableProperty.cpp index f601494c3c6..2deb3882681 100644 --- a/Modules/ModelFit/src/Common/mitkScalarListLookupTableProperty.cpp +++ b/Modules/ModelFit/src/Common/mitkScalarListLookupTableProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkScalarListLookupTableProperty.h" diff --git a/Modules/ModelFit/src/Common/mitkScalarListLookupTablePropertySerializer.cpp b/Modules/ModelFit/src/Common/mitkScalarListLookupTablePropertySerializer.cpp index 551321035b4..751a407cce6 100644 --- a/Modules/ModelFit/src/Common/mitkScalarListLookupTablePropertySerializer.cpp +++ b/Modules/ModelFit/src/Common/mitkScalarListLookupTablePropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkScalarListLookupTableProperty.h" #include "mitkScalarListLookupTablePropertySerializer.h" diff --git a/Modules/ModelFit/src/Common/mitkTimeGridHelper.cpp b/Modules/ModelFit/src/Common/mitkTimeGridHelper.cpp index 91143d85cad..6d65d1d2eb4 100644 --- a/Modules/ModelFit/src/Common/mitkTimeGridHelper.cpp +++ b/Modules/ModelFit/src/Common/mitkTimeGridHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTimeGridHelper.h" diff --git a/Modules/ModelFit/src/Functors/mitkChiSquareFitCostFunction.cpp b/Modules/ModelFit/src/Functors/mitkChiSquareFitCostFunction.cpp index 8eae773a15c..54f2fa7e99e 100644 --- a/Modules/ModelFit/src/Functors/mitkChiSquareFitCostFunction.cpp +++ b/Modules/ModelFit/src/Functors/mitkChiSquareFitCostFunction.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkChiSquareFitCostFunction.h" mitk::ChiSquareFitCostFunction::MeasureType mitk::ChiSquareFitCostFunction::CalcMeasure(const ParametersType & /*parameters*/, const SignalType &signal) const diff --git a/Modules/ModelFit/src/Functors/mitkConstraintCheckerBase.cpp b/Modules/ModelFit/src/Functors/mitkConstraintCheckerBase.cpp index c9bd3dc12f9..6fa8a4ad26e 100644 --- a/Modules/ModelFit/src/Functors/mitkConstraintCheckerBase.cpp +++ b/Modules/ModelFit/src/Functors/mitkConstraintCheckerBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkConstraintCheckerBase.h" diff --git a/Modules/ModelFit/src/Functors/mitkDummyModelFitFunctor.cpp b/Modules/ModelFit/src/Functors/mitkDummyModelFitFunctor.cpp index 6df3a551c4a..5a81bc778e4 100644 --- a/Modules/ModelFit/src/Functors/mitkDummyModelFitFunctor.cpp +++ b/Modules/ModelFit/src/Functors/mitkDummyModelFitFunctor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDummyModelFitFunctor.h" diff --git a/Modules/ModelFit/src/Functors/mitkIndexedValueFunctorPolicy.cpp b/Modules/ModelFit/src/Functors/mitkIndexedValueFunctorPolicy.cpp index 3f3eda0aec8..d19639694b6 100644 --- a/Modules/ModelFit/src/Functors/mitkIndexedValueFunctorPolicy.cpp +++ b/Modules/ModelFit/src/Functors/mitkIndexedValueFunctorPolicy.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIndexedValueFunctorPolicy.h" diff --git a/Modules/ModelFit/src/Functors/mitkLevenbergMarquardtModelFitFunctor.cpp b/Modules/ModelFit/src/Functors/mitkLevenbergMarquardtModelFitFunctor.cpp index bf918d29ec7..b690a7b641d 100644 --- a/Modules/ModelFit/src/Functors/mitkLevenbergMarquardtModelFitFunctor.cpp +++ b/Modules/ModelFit/src/Functors/mitkLevenbergMarquardtModelFitFunctor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLevenbergMarquardtModelFitFunctor.h" @@ -174,6 +170,6 @@ DoModelFit(const SignalType& value, const ModelBase* model, } } } - + return position; }; diff --git a/Modules/ModelFit/src/Functors/mitkMVConstrainedCostFunctionDecorator.cpp b/Modules/ModelFit/src/Functors/mitkMVConstrainedCostFunctionDecorator.cpp index 51eec79b0b5..95812416cd9 100644 --- a/Modules/ModelFit/src/Functors/mitkMVConstrainedCostFunctionDecorator.cpp +++ b/Modules/ModelFit/src/Functors/mitkMVConstrainedCostFunctionDecorator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMVConstrainedCostFunctionDecorator.h" diff --git a/Modules/ModelFit/src/Functors/mitkMVModelFitCostFunction.cpp b/Modules/ModelFit/src/Functors/mitkMVModelFitCostFunction.cpp index 413916c3142..f755dfd0a09 100644 --- a/Modules/ModelFit/src/Functors/mitkMVModelFitCostFunction.cpp +++ b/Modules/ModelFit/src/Functors/mitkMVModelFitCostFunction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMVModelFitCostFunction.h" @@ -72,8 +68,8 @@ unsigned int mitk::MVModelFitCostFunction::GetNumberOfValues() const{ void mitk::MVModelFitCostFunction::SetSample(const SignalType &sampleSet) { - itkDebugMacro("setting Sample to " << sampleSet); - this->m_Sample = sampleSet; - this->Modified(); + itkDebugMacro("setting Sample to " << sampleSet); + this->m_Sample = sampleSet; + this->Modified(); } diff --git a/Modules/ModelFit/src/Functors/mitkModelDataGenerationFunctor.cpp b/Modules/ModelFit/src/Functors/mitkModelDataGenerationFunctor.cpp index b5ca05706d9..b29fff347cc 100644 --- a/Modules/ModelFit/src/Functors/mitkModelDataGenerationFunctor.cpp +++ b/Modules/ModelFit/src/Functors/mitkModelDataGenerationFunctor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelDataGenerationFunctor.h" diff --git a/Modules/ModelFit/src/Functors/mitkModelFitFunctorBase.cpp b/Modules/ModelFit/src/Functors/mitkModelFitFunctorBase.cpp index e171e04ae2c..7e025c4a215 100644 --- a/Modules/ModelFit/src/Functors/mitkModelFitFunctorBase.cpp +++ b/Modules/ModelFit/src/Functors/mitkModelFitFunctorBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFitFunctorBase.h" diff --git a/Modules/ModelFit/src/Functors/mitkModelFitInfoSignalGenerationFunctor.cpp b/Modules/ModelFit/src/Functors/mitkModelFitInfoSignalGenerationFunctor.cpp index 606c24cabed..e655e6699cf 100644 --- a/Modules/ModelFit/src/Functors/mitkModelFitInfoSignalGenerationFunctor.cpp +++ b/Modules/ModelFit/src/Functors/mitkModelFitInfoSignalGenerationFunctor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFitInfoSignalGenerationFunctor.h" diff --git a/Modules/ModelFit/src/Functors/mitkNormalizedSumOfSquaredDifferencesFitCostFunction.cpp b/Modules/ModelFit/src/Functors/mitkNormalizedSumOfSquaredDifferencesFitCostFunction.cpp index b9d7655c0bd..3909a4894f0 100644 --- a/Modules/ModelFit/src/Functors/mitkNormalizedSumOfSquaredDifferencesFitCostFunction.cpp +++ b/Modules/ModelFit/src/Functors/mitkNormalizedSumOfSquaredDifferencesFitCostFunction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNormalizedSumOfSquaredDifferencesFitCostFunction.h" mitk::NormalizedSumOfSquaredDifferencesFitCostFunction::MeasureType mitk::NormalizedSumOfSquaredDifferencesFitCostFunction::CalcMeasure(const ParametersType &/*parameters*/, const SignalType &signal) const diff --git a/Modules/ModelFit/src/Functors/mitkReducedChiSquareFitCostFunction.cpp b/Modules/ModelFit/src/Functors/mitkReducedChiSquareFitCostFunction.cpp index 490652251fe..0e192babb66 100644 --- a/Modules/ModelFit/src/Functors/mitkReducedChiSquareFitCostFunction.cpp +++ b/Modules/ModelFit/src/Functors/mitkReducedChiSquareFitCostFunction.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkReducedChiSquareFitCostFunction.h" #include "mitkModelBase.h" diff --git a/Modules/ModelFit/src/Functors/mitkSVModelFitCostFunction.cpp b/Modules/ModelFit/src/Functors/mitkSVModelFitCostFunction.cpp index 193453cdae5..531cf69d5f8 100644 --- a/Modules/ModelFit/src/Functors/mitkSVModelFitCostFunction.cpp +++ b/Modules/ModelFit/src/Functors/mitkSVModelFitCostFunction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSVModelFitCostFunction.h" #include "mitkModelBase.h" @@ -63,8 +59,8 @@ unsigned int mitk::SVModelFitCostFunction::GetNumberOfParameters() const void mitk::SVModelFitCostFunction::SetSample(const SignalType &sampleSet) { - itkDebugMacro("setting Sample to " << sampleSet); - this->m_Sample = sampleSet; - this->Modified(); + itkDebugMacro("setting Sample to " << sampleSet); + this->m_Sample = sampleSet; + this->Modified(); } diff --git a/Modules/ModelFit/src/Functors/mitkSimpleBarrierConstraintChecker.cpp b/Modules/ModelFit/src/Functors/mitkSimpleBarrierConstraintChecker.cpp index 20facff315e..0bfa3cabbdb 100644 --- a/Modules/ModelFit/src/Functors/mitkSimpleBarrierConstraintChecker.cpp +++ b/Modules/ModelFit/src/Functors/mitkSimpleBarrierConstraintChecker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSimpleBarrierConstraintChecker.h" diff --git a/Modules/ModelFit/src/Functors/mitkSimpleFunctorBase.cpp b/Modules/ModelFit/src/Functors/mitkSimpleFunctorBase.cpp index 62c45b3728e..f6ffe481640 100644 --- a/Modules/ModelFit/src/Functors/mitkSimpleFunctorBase.cpp +++ b/Modules/ModelFit/src/Functors/mitkSimpleFunctorBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSimpleFunctorBase.h" diff --git a/Modules/ModelFit/src/Functors/mitkSimpleFunctorPolicy.cpp b/Modules/ModelFit/src/Functors/mitkSimpleFunctorPolicy.cpp index 6bd46a9f857..c1ad0c72f64 100644 --- a/Modules/ModelFit/src/Functors/mitkSimpleFunctorPolicy.cpp +++ b/Modules/ModelFit/src/Functors/mitkSimpleFunctorPolicy.cpp @@ -1,24 +1,20 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSimpleFunctorPolicy.h" mitk::SimpleFunctorPolicy::SimpleFunctorPolicy() = default; mitk::SimpleFunctorPolicy::~SimpleFunctorPolicy() = default; - + unsigned int mitk::SimpleFunctorPolicy::GetNumberOfOutputs() const { diff --git a/Modules/ModelFit/src/Functors/mitkSquaredDifferencesFitCostFunction.cpp b/Modules/ModelFit/src/Functors/mitkSquaredDifferencesFitCostFunction.cpp index e9802cabe8c..cfc1d7b1dd3 100644 --- a/Modules/ModelFit/src/Functors/mitkSquaredDifferencesFitCostFunction.cpp +++ b/Modules/ModelFit/src/Functors/mitkSquaredDifferencesFitCostFunction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSquaredDifferencesFitCostFunction.h" diff --git a/Modules/ModelFit/src/Functors/mitkSumOfSquaredDifferencesFitCostFunction.cpp b/Modules/ModelFit/src/Functors/mitkSumOfSquaredDifferencesFitCostFunction.cpp index 54bd1d1a81b..f40a7e31c61 100644 --- a/Modules/ModelFit/src/Functors/mitkSumOfSquaredDifferencesFitCostFunction.cpp +++ b/Modules/ModelFit/src/Functors/mitkSumOfSquaredDifferencesFitCostFunction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSumOfSquaredDifferencesFitCostFunction.h" #include "mitkLogMacros.h" diff --git a/Modules/ModelFit/src/Models/mitkGenericParamModel.cpp b/Modules/ModelFit/src/Models/mitkGenericParamModel.cpp index a41d98c78e4..c96aaa65635 100644 --- a/Modules/ModelFit/src/Models/mitkGenericParamModel.cpp +++ b/Modules/ModelFit/src/Models/mitkGenericParamModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGenericParamModel.h" #include "mitkFormulaParser.h" @@ -170,4 +166,4 @@ itk::LightObject::Pointer mitk::GenericParamModel::InternalClone() const newClone->SetNumberOfParameters(this->m_NumberOfParameters); return newClone.GetPointer(); -}; \ No newline at end of file +}; diff --git a/Modules/ModelFit/src/Models/mitkGenericParamModelFactory.cpp b/Modules/ModelFit/src/Models/mitkGenericParamModelFactory.cpp index 53be415d6fa..3f821e1357d 100644 --- a/Modules/ModelFit/src/Models/mitkGenericParamModelFactory.cpp +++ b/Modules/ModelFit/src/Models/mitkGenericParamModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGenericParamModelFactory.h" #include "mitkGenericParamModelParameterizer.h" diff --git a/Modules/ModelFit/src/Models/mitkGenericParamModelParameterizer.cpp b/Modules/ModelFit/src/Models/mitkGenericParamModelParameterizer.cpp index 60eb963445e..0ce89b633de 100644 --- a/Modules/ModelFit/src/Models/mitkGenericParamModelParameterizer.cpp +++ b/Modules/ModelFit/src/Models/mitkGenericParamModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGenericParamModelParameterizer.h" diff --git a/Modules/ModelFit/src/Models/mitkImageBasedParameterizationDelegate.cpp b/Modules/ModelFit/src/Models/mitkImageBasedParameterizationDelegate.cpp index b7a7fffeed4..ef80d728af6 100644 --- a/Modules/ModelFit/src/Models/mitkImageBasedParameterizationDelegate.cpp +++ b/Modules/ModelFit/src/Models/mitkImageBasedParameterizationDelegate.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkImageBasedParameterizationDelegate.h" #include "mitkImagePixelReadAccessor.h" diff --git a/Modules/ModelFit/src/Models/mitkInitialParameterizationDelegateBase.cpp b/Modules/ModelFit/src/Models/mitkInitialParameterizationDelegateBase.cpp index 08b4b8e96dd..7f2a3582b29 100644 --- a/Modules/ModelFit/src/Models/mitkInitialParameterizationDelegateBase.cpp +++ b/Modules/ModelFit/src/Models/mitkInitialParameterizationDelegateBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkInitialParameterizationDelegateBase.h" diff --git a/Modules/ModelFit/src/Models/mitkLinearModel.cpp b/Modules/ModelFit/src/Models/mitkLinearModel.cpp index 1389eba98a2..25e6ed786ae 100644 --- a/Modules/ModelFit/src/Models/mitkLinearModel.cpp +++ b/Modules/ModelFit/src/Models/mitkLinearModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLinearModel.h" diff --git a/Modules/ModelFit/src/Models/mitkLinearModelFactory.cpp b/Modules/ModelFit/src/Models/mitkLinearModelFactory.cpp index 5764aeb0cd1..5c9e142ea5b 100644 --- a/Modules/ModelFit/src/Models/mitkLinearModelFactory.cpp +++ b/Modules/ModelFit/src/Models/mitkLinearModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLinearModelFactory.h" #include "mitkConcreteModelParameterizerBase.h" diff --git a/Modules/ModelFit/src/Models/mitkModelBase.cpp b/Modules/ModelFit/src/Models/mitkModelBase.cpp index f3c6b674009..df8d2ebadb9 100644 --- a/Modules/ModelFit/src/Models/mitkModelBase.cpp +++ b/Modules/ModelFit/src/Models/mitkModelBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelBase.h" #include "itkMacro.h" diff --git a/Modules/ModelFit/src/Models/mitkModelFactoryBase.cpp b/Modules/ModelFit/src/Models/mitkModelFactoryBase.cpp index c62751f9a53..6c4fc4ab961 100644 --- a/Modules/ModelFit/src/Models/mitkModelFactoryBase.cpp +++ b/Modules/ModelFit/src/Models/mitkModelFactoryBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelFactoryBase.h" @@ -33,4 +29,4 @@ mitk::ModelFactoryBase::ModelFactoryBase() mitk::ModelFactoryBase::~ModelFactoryBase() { -}; \ No newline at end of file +}; diff --git a/Modules/ModelFit/src/Models/mitkModelParameterizerBase.cpp b/Modules/ModelFit/src/Models/mitkModelParameterizerBase.cpp index 801a4b2c1a3..8139285b494 100644 --- a/Modules/ModelFit/src/Models/mitkModelParameterizerBase.cpp +++ b/Modules/ModelFit/src/Models/mitkModelParameterizerBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModelParameterizerBase.h" @@ -54,4 +50,4 @@ mitk::ModelParameterizerBase:: SetInitialParameterizationDelegate(const InitialParameterizationDelegateBase* delegate) { this->m_InitialDelegate = delegate; -}; \ No newline at end of file +}; diff --git a/Modules/ModelFit/src/Models/mitkT2DecayModel.cpp b/Modules/ModelFit/src/Models/mitkT2DecayModel.cpp index 8de5c3fa853..0723cd74730 100644 --- a/Modules/ModelFit/src/Models/mitkT2DecayModel.cpp +++ b/Modules/ModelFit/src/Models/mitkT2DecayModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkT2DecayModel.h" diff --git a/Modules/ModelFit/src/Models/mitkT2DecayModelFactory.cpp b/Modules/ModelFit/src/Models/mitkT2DecayModelFactory.cpp index 6d3f8c039ab..8e843c4deac 100644 --- a/Modules/ModelFit/src/Models/mitkT2DecayModelFactory.cpp +++ b/Modules/ModelFit/src/Models/mitkT2DecayModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkT2DecayModelFactory.h" #include "mitkT2DecayModelParameterizer.h" diff --git a/Modules/ModelFit/src/Models/mitkT2DecayModelParameterizer.cpp b/Modules/ModelFit/src/Models/mitkT2DecayModelParameterizer.cpp index c46c43d19d5..890c5e25b15 100644 --- a/Modules/ModelFit/src/Models/mitkT2DecayModelParameterizer.cpp +++ b/Modules/ModelFit/src/Models/mitkT2DecayModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkT2DecayModelParameterizer.h" diff --git a/Modules/ModelFit/src/Models/mitkValueBasedParameterizationDelegate.cpp b/Modules/ModelFit/src/Models/mitkValueBasedParameterizationDelegate.cpp index ccda4d5b92a..38934895d34 100644 --- a/Modules/ModelFit/src/Models/mitkValueBasedParameterizationDelegate.cpp +++ b/Modules/ModelFit/src/Models/mitkValueBasedParameterizationDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkValueBasedParameterizationDelegate.h" diff --git a/Modules/ModelFit/src/TestingHelper/mitkTestModel.cpp b/Modules/ModelFit/src/TestingHelper/mitkTestModel.cpp index 46d3953b467..867da4af3d8 100644 --- a/Modules/ModelFit/src/TestingHelper/mitkTestModel.cpp +++ b/Modules/ModelFit/src/TestingHelper/mitkTestModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestModel.h" diff --git a/Modules/ModelFit/src/TestingHelper/mitkTestModelFactory.cpp b/Modules/ModelFit/src/TestingHelper/mitkTestModelFactory.cpp index 0c8a24448da..be2c0dcf967 100644 --- a/Modules/ModelFit/src/TestingHelper/mitkTestModelFactory.cpp +++ b/Modules/ModelFit/src/TestingHelper/mitkTestModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestModelFactory.h" #include "mitkConcreteModelParameterizerBase.h" diff --git a/Modules/ModelFit/test/itkMaskedNaryStatisticsImageFilterTest.cpp b/Modules/ModelFit/test/itkMaskedNaryStatisticsImageFilterTest.cpp index 08e7b53d8d5..4eeb6162894 100644 --- a/Modules/ModelFit/test/itkMaskedNaryStatisticsImageFilterTest.cpp +++ b/Modules/ModelFit/test/itkMaskedNaryStatisticsImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkImage.h" #include "itkImageRegionIterator.h" @@ -55,7 +51,7 @@ int itkMaskedNaryStatisticsImageFilterTest(int /*argc*/ , char*[] /*argv[]*/) MITK_TEST_CONDITION(2 == sig.size(),"Check size of sigma"); MITK_TEST_CONDITION(2 == variance.size(),"Check size of variance"); MITK_TEST_CONDITION(2 == sum.size(),"Check size of sum"); - + CPPUNIT_ASSERT_MESSAGE("Check computed maximum[0]",9 == max[0]); CPPUNIT_ASSERT_MESSAGE("Check computed minimum[0]",1 == min[0]); CPPUNIT_ASSERT_MESSAGE("Check computed mean[0]",5 == mean[0]); diff --git a/Modules/ModelFit/test/itkMaskedStatisticsImageFilterTest.cpp b/Modules/ModelFit/test/itkMaskedStatisticsImageFilterTest.cpp index b2e241f0006..5a00710a8ee 100644 --- a/Modules/ModelFit/test/itkMaskedStatisticsImageFilterTest.cpp +++ b/Modules/ModelFit/test/itkMaskedStatisticsImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkImage.h" #include "itkImageRegionIterator.h" diff --git a/Modules/ModelFit/test/itkMultiOutputNaryFunctorImageFilterTest.cpp b/Modules/ModelFit/test/itkMultiOutputNaryFunctorImageFilterTest.cpp index 59fd06e596c..f38866b6099 100644 --- a/Modules/ModelFit/test/itkMultiOutputNaryFunctorImageFilterTest.cpp +++ b/Modules/ModelFit/test/itkMultiOutputNaryFunctorImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkImage.h" #include "itkImageRegionIterator.h" diff --git a/Modules/ModelFit/test/mitkConcreteModelFactoryBaseTest.cpp b/Modules/ModelFit/test/mitkConcreteModelFactoryBaseTest.cpp index 01590c0b8d3..82fb0a92f84 100644 --- a/Modules/ModelFit/test/mitkConcreteModelFactoryBaseTest.cpp +++ b/Modules/ModelFit/test/mitkConcreteModelFactoryBaseTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkTestingMacros.h" diff --git a/Modules/ModelFit/test/mitkFormulaParserTest.cpp b/Modules/ModelFit/test/mitkFormulaParserTest.cpp index 1aedc45d954..1b91a8a70fc 100644 --- a/Modules/ModelFit/test/mitkFormulaParserTest.cpp +++ b/Modules/ModelFit/test/mitkFormulaParserTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include "mitkFormulaParser.h" diff --git a/Modules/ModelFit/test/mitkLevenbergMarquardtModelFitFunctorTest.cpp b/Modules/ModelFit/test/mitkLevenbergMarquardtModelFitFunctorTest.cpp index e1cbdde196f..43ace672f75 100644 --- a/Modules/ModelFit/test/mitkLevenbergMarquardtModelFitFunctorTest.cpp +++ b/Modules/ModelFit/test/mitkLevenbergMarquardtModelFitFunctorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkTestingMacros.h" diff --git a/Modules/ModelFit/test/mitkMVConstrainedCostFunctionDecoratorTest.cpp b/Modules/ModelFit/test/mitkMVConstrainedCostFunctionDecoratorTest.cpp index d812ac53998..0d5ec34df1a 100644 --- a/Modules/ModelFit/test/mitkMVConstrainedCostFunctionDecoratorTest.cpp +++ b/Modules/ModelFit/test/mitkMVConstrainedCostFunctionDecoratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkTestingMacros.h" @@ -46,7 +42,7 @@ class TestCostFunction : public mitk::MVModelFitCostFunction ++m_calls; return result; }; - + TestCostFunction() { m_calls = 0; @@ -70,7 +66,7 @@ int mitkMVConstrainedCostFunctionDecoratorTest(int /*argc*/, char*[] /*argv[]*/ signal.Fill(0.0); decorator->SetSample(signal); innerCF->SetSample(signal); - + mitk::LinearModel::TimeGridType grid(5); grid[0] = 0; grid[1] = 1; @@ -101,7 +97,7 @@ int mitkMVConstrainedCostFunctionDecoratorTest(int /*argc*/, char*[] /*argv[]*/ /////////////////////// //Tests - //check freshly created checker; + //check freshly created checker; MITK_TEST_CONDITION_REQUIRED(decorator->GetWrappedCostFunction() == nullptr, "Testing GetWrappedCostFunction for new decorator."); MITK_TEST_CONDITION_REQUIRED(decorator->GetConstraintChecker() == nullptr, diff --git a/Modules/ModelFit/test/mitkMaskedDynamicImageStatisticsGeneratorTest.cpp b/Modules/ModelFit/test/mitkMaskedDynamicImageStatisticsGeneratorTest.cpp index d289b0df42b..c34107f62cd 100644 --- a/Modules/ModelFit/test/mitkMaskedDynamicImageStatisticsGeneratorTest.cpp +++ b/Modules/ModelFit/test/mitkMaskedDynamicImageStatisticsGeneratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ModelFit/test/mitkModelFitInfoTest.cpp b/Modules/ModelFit/test/mitkModelFitInfoTest.cpp index bce79d1eb7d..8ec84dca412 100644 --- a/Modules/ModelFit/test/mitkModelFitInfoTest.cpp +++ b/Modules/ModelFit/test/mitkModelFitInfoTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkTestingMacros.h" diff --git a/Modules/ModelFit/test/mitkModelFitStaticParameterMapTest.cpp b/Modules/ModelFit/test/mitkModelFitStaticParameterMapTest.cpp index 11c69f44909..4b9ad21bcba 100644 --- a/Modules/ModelFit/test/mitkModelFitStaticParameterMapTest.cpp +++ b/Modules/ModelFit/test/mitkModelFitStaticParameterMapTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkTestingMacros.h" diff --git a/Modules/ModelFit/test/mitkModelFitUIDHelperTest.cpp b/Modules/ModelFit/test/mitkModelFitUIDHelperTest.cpp index 8eb8e2caae7..19dcf8c8d07 100644 --- a/Modules/ModelFit/test/mitkModelFitUIDHelperTest.cpp +++ b/Modules/ModelFit/test/mitkModelFitUIDHelperTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkTestingMacros.h" diff --git a/Modules/ModelFit/test/mitkPixelBasedParameterFitImageGeneratorTest.cpp b/Modules/ModelFit/test/mitkPixelBasedParameterFitImageGeneratorTest.cpp index 976545ca860..021df68deed 100644 --- a/Modules/ModelFit/test/mitkPixelBasedParameterFitImageGeneratorTest.cpp +++ b/Modules/ModelFit/test/mitkPixelBasedParameterFitImageGeneratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -78,7 +74,7 @@ int mitkPixelBasedParameterFitImageGeneratorTest(int /*argc*/, char*[] /*argv[] generator->SetDynamicImage(dynamicImage); generator->SetModelParameterizer(parameterizer); generator->SetFitFunctor(testFunctor); - + generator->Generate(); mitk::PixelBasedParameterFitImageGenerator::ParameterImageMapType resultImages = generator->GetParameterImages(); @@ -92,7 +88,7 @@ int mitkPixelBasedParameterFitImageGeneratorTest(int /*argc*/, char*[] /*argv[] mitk::ImagePixelReadAccessor slopeAccessor(resultImages["slope"]); mitk::ImagePixelReadAccessor offsetAccessor(resultImages["offset"]); - + double testValue = slopeAccessor.GetPixelByIndex(testIndex1); MITK_TEST_CONDITION_REQUIRED(mitk::Equal(0,testValue, 1e-5, true)==true, "Check param #1 (slope) at index #1"); testValue = slopeAccessor.GetPixelByIndex(testIndex2); diff --git a/Modules/ModelFit/test/mitkROIBasedParameterFitImageGeneratorTest.cpp b/Modules/ModelFit/test/mitkROIBasedParameterFitImageGeneratorTest.cpp index 24e9d713721..8a7c122a57c 100644 --- a/Modules/ModelFit/test/mitkROIBasedParameterFitImageGeneratorTest.cpp +++ b/Modules/ModelFit/test/mitkROIBasedParameterFitImageGeneratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ModelFit/test/mitkSimpleBarrierConstraintCheckerTest.cpp b/Modules/ModelFit/test/mitkSimpleBarrierConstraintCheckerTest.cpp index 74381e936e0..0c0f5c067a5 100644 --- a/Modules/ModelFit/test/mitkSimpleBarrierConstraintCheckerTest.cpp +++ b/Modules/ModelFit/test/mitkSimpleBarrierConstraintCheckerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkTestingMacros.h" @@ -38,7 +34,7 @@ int mitkSimpleBarrierConstraintCheckerTest(int /*argc*/, char*[] /*argv[]*/) double defaultMaxPenalty = 1e15; - //check freshly created checker; + //check freshly created checker; MITK_TEST_CONDITION_REQUIRED(checker->GetNumberOfConstraints() == 0, "Testing GetNumberOfConstraints for new checker."); MITK_TEST_CONDITION_REQUIRED(checker->GetFailedConstraintValue() == defaultMaxPenalty, "Testing GetNumberOfConstraints for new checker."); MITK_TEST_CONDITION_REQUIRED(checker->GetMaxConstraintPenalty() == defaultMaxPenalty, "Testing GetNumberOfConstraints for new checker."); @@ -124,7 +120,7 @@ int mitkSimpleBarrierConstraintCheckerTest(int /*argc*/, char*[] /*argv[]*/) MITK_TEST_CONDITION_REQUIRED(penalties[2] == 0.0, "Testing penalty 3 of test parameters p9."); MITK_TEST_CONDITION_REQUIRED(penalties[3] == 0.0, "Testing penalty 4 of test parameters p9."); MITK_TEST_CONDITION_REQUIRED(checker->GetPenaltySum(p9) == penalties[0] + penalties[1] + penalties[2] + penalties[3], "Testing penalty sum of test parameters p9."); - + checker->SetMaxConstraintPenalty(2222); penalties = checker->GetPenalties(p8); MITK_TEST_CONDITION_REQUIRED(penalties[3] == 2222, "Testing penalty 3 of test parameters p8 with changed max penalty."); diff --git a/Modules/ModelFitUI/Qmitk/QmitkFitParameterModel.cpp b/Modules/ModelFitUI/Qmitk/QmitkFitParameterModel.cpp index 06c63d4e9d2..8b968fb5d67 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkFitParameterModel.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkFitParameterModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExceptionMacro.h" #include "mitkModelFitParameterValueExtraction.h" diff --git a/Modules/ModelFitUI/Qmitk/QmitkFitParameterModel.h b/Modules/ModelFitUI/Qmitk/QmitkFitParameterModel.h index 03c8725c7ee..d1b12d70e13 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkFitParameterModel.h +++ b/Modules/ModelFitUI/Qmitk/QmitkFitParameterModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkFitParameterModel_h #define QmitkFitParameterModel_h diff --git a/Modules/ModelFitUI/Qmitk/QmitkFitParameterWidget.cpp b/Modules/ModelFitUI/Qmitk/QmitkFitParameterWidget.cpp index 58c676392fb..3070bdff6b6 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkFitParameterWidget.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkFitParameterWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFitParameterWidget.h" #include "QmitkFitParameterModel.h" diff --git a/Modules/ModelFitUI/Qmitk/QmitkFitParameterWidget.h b/Modules/ModelFitUI/Qmitk/QmitkFitParameterWidget.h index e7ac5e7b24d..6cb7ded8fe7 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkFitParameterWidget.h +++ b/Modules/ModelFitUI/Qmitk/QmitkFitParameterWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_FIT_PARAMETER_WIDGET_H diff --git a/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataModel.cpp b/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataModel.cpp index 7c40875811d..6c0e0e2b862 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataModel.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExceptionMacro.h" diff --git a/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataModel.h b/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataModel.h index c54e0cd4fbc..2e7ea1598b9 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataModel.h +++ b/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkFitPlotDataModel_h #define QmitkFitPlotDataModel_h diff --git a/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataWidget.cpp b/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataWidget.cpp index 637b4e06a0e..930349f013e 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataWidget.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFitPlotDataWidget.h" #include "QmitkFitPlotDataModel.h" diff --git a/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataWidget.h b/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataWidget.h index c7d9fb7c16f..fc006b099f6 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataWidget.h +++ b/Modules/ModelFitUI/Qmitk/QmitkFitPlotDataWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_FIT_PLOT_DATA_WIDGET_H diff --git a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesDelegate.cpp b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesDelegate.cpp index a14673aca4a..d70a1cc1696 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesDelegate.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkInitialValuesDelegate.h" @@ -80,7 +76,7 @@ void QmitkInitialValuesDelegate::setEditorData(QWidget* editor, QmitkDataStorageComboBox* box = qobject_cast(editor); mitk::DataNode *node = static_cast(data.value()); - + auto index = box->Find(node); box->setCurrentIndex(index); } diff --git a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesDelegate.h b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesDelegate.h index 04f06a2e3e1..8cea3672be1 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesDelegate.h +++ b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkInitialValuesDelegate_h #define QmitkInitialValuesDelegate_h diff --git a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesManagerWidget.cpp b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesManagerWidget.cpp index f0e2407796d..3a0282d5b8b 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesManagerWidget.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesManagerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -102,7 +98,7 @@ QmitkInitialValuesManagerWidget::getInitialValues() const }; -mitk::InitialParameterizationDelegateBase::Pointer +mitk::InitialParameterizationDelegateBase::Pointer QmitkInitialValuesManagerWidget::getInitialParametrizationDelegate() const { return this->m_InternalModel->getInitialParametrizationDelegate(); diff --git a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesManagerWidget.h b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesManagerWidget.h index 87558f0ee8a..a0bbb3a33c0 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesManagerWidget.h +++ b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesManagerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_INITIAL_VALUES_MANAGER_WIDGET_H diff --git a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesModel.cpp b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesModel.cpp index a94f2a5f769..4ce6139b678 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesModel.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesModel.h b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesModel.h index c38ab6e79e5..bb4bd154568 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesModel.h +++ b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkInitialValuesModel_h #define QmitkInitialValuesModel_h diff --git a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesTypeDelegate.cpp b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesTypeDelegate.cpp index d9a51d90f34..7f20a375445 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesTypeDelegate.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesTypeDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkInitialValuesTypeDelegate.h" diff --git a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesTypeDelegate.h b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesTypeDelegate.h index c924d957aa9..868e993a770 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInitialValuesTypeDelegate.h +++ b/Modules/ModelFitUI/Qmitk/QmitkInitialValuesTypeDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkInitialValuesTypeDelegate_h #define QmitkInitialValuesTypeDelegate_h diff --git a/Modules/ModelFitUI/Qmitk/QmitkInspectionPositionWidget.cpp b/Modules/ModelFitUI/Qmitk/QmitkInspectionPositionWidget.cpp index 515f655a0bb..48a9e509609 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInspectionPositionWidget.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkInspectionPositionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkInspectionPositionWidget.h" @@ -89,4 +85,4 @@ OnAddCurrentPositionClicked() m_Controls.pointlistWidget->GetPointSet()->InsertPoint(m_CurrentPosition); emit PositionBookmarksChanged(); } -} \ No newline at end of file +} diff --git a/Modules/ModelFitUI/Qmitk/QmitkInspectionPositionWidget.h b/Modules/ModelFitUI/Qmitk/QmitkInspectionPositionWidget.h index b07febb4c93..c2499311c7d 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkInspectionPositionWidget.h +++ b/Modules/ModelFitUI/Qmitk/QmitkInspectionPositionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_INSPECTION_POSITION_WIDGET_H diff --git a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierManagerWidget.cpp b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierManagerWidget.cpp index 6833080e969..cb232dd1ef8 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierManagerWidget.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierManagerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierManagerWidget.h b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierManagerWidget.h index 730dd75f3e9..164e4215661 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierManagerWidget.h +++ b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierManagerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_SIMPLE_BARRIER_MANAGER_WIDGET_H diff --git a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierModel.cpp b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierModel.cpp index 953275baf52..39be22bd7af 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierModel.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierModel.h b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierModel.h index 4b1e6072748..2e68ee92c4b 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierModel.h +++ b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSimpleBarrierModel_h #define QmitkSimpleBarrierModel_h diff --git a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierParametersDelegate.cpp b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierParametersDelegate.cpp index 9ea37f4c7be..1bca5780b02 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierParametersDelegate.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierParametersDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSimpleBarrierParametersDelegate.h" diff --git a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierParametersDelegate.h b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierParametersDelegate.h index 3cf9c7da4f9..dd3b29dde35 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierParametersDelegate.h +++ b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierParametersDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSimpleBarrierParametersDelegate_h #define QmitkSimpleBarrierParametersDelegate_h diff --git a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierTypeDelegate.cpp b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierTypeDelegate.cpp index a581a2bc75d..7497b360a30 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierTypeDelegate.cpp +++ b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierTypeDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSimpleBarrierTypeDelegate.h" diff --git a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierTypeDelegate.h b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierTypeDelegate.h index 84db92037cc..390ecdc25a9 100644 --- a/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierTypeDelegate.h +++ b/Modules/ModelFitUI/Qmitk/QmitkSimpleBarrierTypeDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSimpleBarrierTypeDelegate_h #define QmitkSimpleBarrierTypeDelegate_h diff --git a/Modules/Multilabel/Testing/mitkLabelSetImageIOTest.cpp b/Modules/Multilabel/Testing/mitkLabelSetImageIOTest.cpp index 5d24ec06ae9..ecb58c61f02 100644 --- a/Modules/Multilabel/Testing/mitkLabelSetImageIOTest.cpp +++ b/Modules/Multilabel/Testing/mitkLabelSetImageIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Multilabel/Testing/mitkLabelSetImageSurfaceStampFilterTest.cpp b/Modules/Multilabel/Testing/mitkLabelSetImageSurfaceStampFilterTest.cpp index a2aa55d867f..c50fb2b8b3c 100644 --- a/Modules/Multilabel/Testing/mitkLabelSetImageSurfaceStampFilterTest.cpp +++ b/Modules/Multilabel/Testing/mitkLabelSetImageSurfaceStampFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Multilabel/Testing/mitkLabelSetImageTest.cpp b/Modules/Multilabel/Testing/mitkLabelSetImageTest.cpp index aac87a554b2..8adf13414b1 100644 --- a/Modules/Multilabel/Testing/mitkLabelSetImageTest.cpp +++ b/Modules/Multilabel/Testing/mitkLabelSetImageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Multilabel/Testing/mitkLabelSetTest.cpp b/Modules/Multilabel/Testing/mitkLabelSetTest.cpp index 0fb2369f6e9..e1703616984 100644 --- a/Modules/Multilabel/Testing/mitkLabelSetTest.cpp +++ b/Modules/Multilabel/Testing/mitkLabelSetTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Multilabel/Testing/mitkLabelTest.cpp b/Modules/Multilabel/Testing/mitkLabelTest.cpp index 587e5663cc2..6347c4d338e 100644 --- a/Modules/Multilabel/Testing/mitkLabelTest.cpp +++ b/Modules/Multilabel/Testing/mitkLabelTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabel.h" #include "mitkStringProperty.h" diff --git a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMQIIOActivator.cpp b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMQIIOActivator.cpp index a7db5ea2184..fb9c72631db 100644 --- a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMQIIOActivator.cpp +++ b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMQIIOActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegIOMimeTypes.cpp b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegIOMimeTypes.cpp index 972e8b0cbcf..33b7dfdc434 100644 --- a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegIOMimeTypes.cpp +++ b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegIOMimeTypes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMSegIOMimeTypes.h" #include "mitkIOMimeTypes.h" diff --git a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegIOMimeTypes.h b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegIOMimeTypes.h index 69ac61eaef3..86c0a6777c3 100644 --- a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegIOMimeTypes.h +++ b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegIOMimeTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDICOMSEGIOMIMETYPES_H #define MITKDICOMSEGIOMIMETYPES_H @@ -42,7 +38,7 @@ namespace mitk static MitkDICOMSEGMimeType DICOMSEG_MIMETYPE(); static std::string DICOMSEG_MIMETYPE_NAME(); - + // Get all Mime Types static std::vector Get(); diff --git a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegmentationIO.cpp b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegmentationIO.cpp index 830fde6705d..acaa3bc0cb3 100644 --- a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegmentationIO.cpp +++ b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegmentationIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkDICOMSegmentationIO__cpp #define __mitkDICOMSegmentationIO__cpp @@ -104,7 +100,7 @@ namespace mitk return Unsupported; } - // Check if input file has dicom information for the referenced image (original DICOM image, e.g. CT) Still necessary, see write() + // Check if input file has dicom information for the referenced image (original DICOM image, e.g. CT) Still necessary, see write() mitk::StringLookupTableProperty::Pointer dicomFilesProp = dynamic_cast(input->GetProperty("referenceFiles").GetPointer()); @@ -459,7 +455,7 @@ namespace mitk const std::string output; dcmqi::JSONSegmentationMetaInformationHandler handler; - + // 1. Metadata attributes that will be listed in the resulting DICOM SEG object std::string contentCreatorName; if (!image->GetPropertyList()->GetStringProperty(GeneratePropertyNameForDICOMTag(0x0070, 0x0084).c_str(), diff --git a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegmentationIO.h b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegmentationIO.h index d949f5adb98..5767e9f3fed 100644 --- a/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegmentationIO.h +++ b/Modules/Multilabel/autoload/DICOMSegIO/mitkDICOMSegmentationIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkDICOMSegmentationIO_h #define __mitkDICOMSegmentationIO_h diff --git a/Modules/Multilabel/autoload/IO/mitkLabelSetImageIO.cpp b/Modules/Multilabel/autoload/IO/mitkLabelSetImageIO.cpp index 658d175cb77..5be17b46f62 100644 --- a/Modules/Multilabel/autoload/IO/mitkLabelSetImageIO.cpp +++ b/Modules/Multilabel/autoload/IO/mitkLabelSetImageIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSetImageWriter__cpp #define __mitkLabelSetImageWriter__cpp diff --git a/Modules/Multilabel/autoload/IO/mitkLabelSetImageIO.h b/Modules/Multilabel/autoload/IO/mitkLabelSetImageIO.h index 80875df88e6..e08088c871b 100644 --- a/Modules/Multilabel/autoload/IO/mitkLabelSetImageIO.h +++ b/Modules/Multilabel/autoload/IO/mitkLabelSetImageIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSetImageIO_h #define __mitkLabelSetImageIO_h diff --git a/Modules/Multilabel/autoload/IO/mitkLabelSetImageSerializer.cpp b/Modules/Multilabel/autoload/IO/mitkLabelSetImageSerializer.cpp index a98da107adb..892c656dbd1 100644 --- a/Modules/Multilabel/autoload/IO/mitkLabelSetImageSerializer.cpp +++ b/Modules/Multilabel/autoload/IO/mitkLabelSetImageSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelSetImageSerializer.h" #include "mitkLabelSetImage.h" diff --git a/Modules/Multilabel/autoload/IO/mitkLabelSetImageSerializer.h b/Modules/Multilabel/autoload/IO/mitkLabelSetImageSerializer.h index dd347654070..9c861978768 100644 --- a/Modules/Multilabel/autoload/IO/mitkLabelSetImageSerializer.h +++ b/Modules/Multilabel/autoload/IO/mitkLabelSetImageSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLabelSetImageSerializer_h_included #define mitkLabelSetImageSerializer_h_included diff --git a/Modules/Multilabel/autoload/IO/mitkMultilabelActivator.cpp b/Modules/Multilabel/autoload/IO/mitkMultilabelActivator.cpp index 7e0249d052b..f70ac539e2b 100644 --- a/Modules/Multilabel/autoload/IO/mitkMultilabelActivator.cpp +++ b/Modules/Multilabel/autoload/IO/mitkMultilabelActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Multilabel/mitkDICOMSegmentationConstants.cpp b/Modules/Multilabel/mitkDICOMSegmentationConstants.cpp index 2cff2c4791c..bbc3eb3b710 100644 --- a/Modules/Multilabel/mitkDICOMSegmentationConstants.cpp +++ b/Modules/Multilabel/mitkDICOMSegmentationConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDICOMSegmentationConstants.h" diff --git a/Modules/Multilabel/mitkDICOMSegmentationConstants.h b/Modules/Multilabel/mitkDICOMSegmentationConstants.h index bbf3d16a63d..a0ea2ef9985 100644 --- a/Modules/Multilabel/mitkDICOMSegmentationConstants.h +++ b/Modules/Multilabel/mitkDICOMSegmentationConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDICOMSEGMENTATIONCONSTANTS_H_ #define MITKDICOMSEGMENTATIONCONSTANTS_H_ diff --git a/Modules/Multilabel/mitkDICOMSegmentationPropertyHelper.cpp b/Modules/Multilabel/mitkDICOMSegmentationPropertyHelper.cpp index 84f0788c504..59e6e61d4a1 100644 --- a/Modules/Multilabel/mitkDICOMSegmentationPropertyHelper.cpp +++ b/Modules/Multilabel/mitkDICOMSegmentationPropertyHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Multilabel/mitkDICOMSegmentationPropertyHelper.h b/Modules/Multilabel/mitkDICOMSegmentationPropertyHelper.h index 00ec85a1b1e..e4d08f0e301 100644 --- a/Modules/Multilabel/mitkDICOMSegmentationPropertyHelper.h +++ b/Modules/Multilabel/mitkDICOMSegmentationPropertyHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef DICOMPMPROPERTYHELPER_H_ #define DICOMPMPROPERTYHELPER_H_ diff --git a/Modules/Multilabel/mitkLabel.cpp b/Modules/Multilabel/mitkLabel.cpp index 540b25015c4..b7952a6ef96 100644 --- a/Modules/Multilabel/mitkLabel.cpp +++ b/Modules/Multilabel/mitkLabel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabel.h" diff --git a/Modules/Multilabel/mitkLabel.h b/Modules/Multilabel/mitkLabel.h index 894cd6a1875..2cf6e84fed6 100644 --- a/Modules/Multilabel/mitkLabel.h +++ b/Modules/Multilabel/mitkLabel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabel_H_ #define __mitkLabel_H_ diff --git a/Modules/Multilabel/mitkLabelSet.cpp b/Modules/Multilabel/mitkLabelSet.cpp index 2953d7b48a8..3452a9a90b2 100644 --- a/Modules/Multilabel/mitkLabelSet.cpp +++ b/Modules/Multilabel/mitkLabelSet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelSet.h" #include "mitkDICOMSegmentationPropertyHelper.h" diff --git a/Modules/Multilabel/mitkLabelSet.h b/Modules/Multilabel/mitkLabelSet.h index 11360c87efa..83d479c03cf 100644 --- a/Modules/Multilabel/mitkLabelSet.h +++ b/Modules/Multilabel/mitkLabelSet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSet_H_ #define __mitkLabelSet_H_ diff --git a/Modules/Multilabel/mitkLabelSetIOHelper.cpp b/Modules/Multilabel/mitkLabelSetIOHelper.cpp index 639f82e7cbf..0106aa2fb0a 100644 --- a/Modules/Multilabel/mitkLabelSetIOHelper.cpp +++ b/Modules/Multilabel/mitkLabelSetIOHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelSetIOHelper.h" diff --git a/Modules/Multilabel/mitkLabelSetIOHelper.h b/Modules/Multilabel/mitkLabelSetIOHelper.h index 90919062c65..ff763d61fdf 100644 --- a/Modules/Multilabel/mitkLabelSetIOHelper.h +++ b/Modules/Multilabel/mitkLabelSetIOHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSetIOHelper_h #define __mitkLabelSetIOHelper_h diff --git a/Modules/Multilabel/mitkLabelSetImage.cpp b/Modules/Multilabel/mitkLabelSetImage.cpp index ea82d2da8ac..71a099210e8 100644 --- a/Modules/Multilabel/mitkLabelSetImage.cpp +++ b/Modules/Multilabel/mitkLabelSetImage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelSetImage.h" diff --git a/Modules/Multilabel/mitkLabelSetImage.h b/Modules/Multilabel/mitkLabelSetImage.h index 01a356cebb8..6ae1fd5e08f 100644 --- a/Modules/Multilabel/mitkLabelSetImage.h +++ b/Modules/Multilabel/mitkLabelSetImage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSetImage_H_ #define __mitkLabelSetImage_H_ diff --git a/Modules/Multilabel/mitkLabelSetImageConverter.cpp b/Modules/Multilabel/mitkLabelSetImageConverter.cpp index 7ab3d304cea..d87a7b556f9 100644 --- a/Modules/Multilabel/mitkLabelSetImageConverter.cpp +++ b/Modules/Multilabel/mitkLabelSetImageConverter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Multilabel/mitkLabelSetImageConverter.h b/Modules/Multilabel/mitkLabelSetImageConverter.h index 723987a4fc9..0677c4b5db9 100644 --- a/Modules/Multilabel/mitkLabelSetImageConverter.h +++ b/Modules/Multilabel/mitkLabelSetImageConverter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLabelSetImageConverter_h #define mitkLabelSetImageConverter_h diff --git a/Modules/Multilabel/mitkLabelSetImageSource.cpp b/Modules/Multilabel/mitkLabelSetImageSource.cpp index c8b47b8201c..55d7e541eb5 100644 --- a/Modules/Multilabel/mitkLabelSetImageSource.cpp +++ b/Modules/Multilabel/mitkLabelSetImageSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelSetImageSource.h" #include "mitkLabelSetImage.h" diff --git a/Modules/Multilabel/mitkLabelSetImageSource.h b/Modules/Multilabel/mitkLabelSetImageSource.h index bfa7822b8ee..f0397d6f6e6 100644 --- a/Modules/Multilabel/mitkLabelSetImageSource.h +++ b/Modules/Multilabel/mitkLabelSetImageSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSetImageSource_H_ #define __mitkLabelSetImageSource_H_ diff --git a/Modules/Multilabel/mitkLabelSetImageSurfaceStampFilter.cpp b/Modules/Multilabel/mitkLabelSetImageSurfaceStampFilter.cpp index a9f9676f784..059123787b1 100644 --- a/Modules/Multilabel/mitkLabelSetImageSurfaceStampFilter.cpp +++ b/Modules/Multilabel/mitkLabelSetImageSurfaceStampFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelSetImageSurfaceStampFilter.h" diff --git a/Modules/Multilabel/mitkLabelSetImageSurfaceStampFilter.h b/Modules/Multilabel/mitkLabelSetImageSurfaceStampFilter.h index de44a47e0fc..22068ce1da0 100644 --- a/Modules/Multilabel/mitkLabelSetImageSurfaceStampFilter.h +++ b/Modules/Multilabel/mitkLabelSetImageSurfaceStampFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSetImageSurfaceStampFilter_h #define __mitkLabelSetImageSurfaceStampFilter_h diff --git a/Modules/Multilabel/mitkLabelSetImageToSurfaceFilter.cpp b/Modules/Multilabel/mitkLabelSetImageToSurfaceFilter.cpp index 49466444e93..3c63231f7f9 100644 --- a/Modules/Multilabel/mitkLabelSetImageToSurfaceFilter.cpp +++ b/Modules/Multilabel/mitkLabelSetImageToSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Multilabel/mitkLabelSetImageToSurfaceFilter.h b/Modules/Multilabel/mitkLabelSetImageToSurfaceFilter.h index ce026dcdd46..034a04bcf14 100644 --- a/Modules/Multilabel/mitkLabelSetImageToSurfaceFilter.h +++ b/Modules/Multilabel/mitkLabelSetImageToSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkLabelSetImageToSurfaceFilter_H_ #define _mitkLabelSetImageToSurfaceFilter_H_ diff --git a/Modules/Multilabel/mitkLabelSetImageToSurfaceThreadedFilter.cpp b/Modules/Multilabel/mitkLabelSetImageToSurfaceThreadedFilter.cpp index 3ac9260bb6f..e70aa8ecd77 100644 --- a/Modules/Multilabel/mitkLabelSetImageToSurfaceThreadedFilter.cpp +++ b/Modules/Multilabel/mitkLabelSetImageToSurfaceThreadedFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelSetImageToSurfaceThreadedFilter.h" diff --git a/Modules/Multilabel/mitkLabelSetImageToSurfaceThreadedFilter.h b/Modules/Multilabel/mitkLabelSetImageToSurfaceThreadedFilter.h index b0a52e72602..4b62f4f28b3 100644 --- a/Modules/Multilabel/mitkLabelSetImageToSurfaceThreadedFilter.h +++ b/Modules/Multilabel/mitkLabelSetImageToSurfaceThreadedFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSetImageToSurfaceThreadedFilter_H_ #define __mitkLabelSetImageToSurfaceThreadedFilter_H_ diff --git a/Modules/Multilabel/mitkLabelSetImageVtkMapper2D.cpp b/Modules/Multilabel/mitkLabelSetImageVtkMapper2D.cpp index 3f5fe77ab92..56069a2be9f 100644 --- a/Modules/Multilabel/mitkLabelSetImageVtkMapper2D.cpp +++ b/Modules/Multilabel/mitkLabelSetImageVtkMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLabelSetImageVtkMapper2D.h" diff --git a/Modules/Multilabel/mitkLabelSetImageVtkMapper2D.h b/Modules/Multilabel/mitkLabelSetImageVtkMapper2D.h index 2c9c0c29248..224ec8c9123 100644 --- a/Modules/Multilabel/mitkLabelSetImageVtkMapper2D.h +++ b/Modules/Multilabel/mitkLabelSetImageVtkMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkLabelSetImageVtkMapper2D_H_ #define __mitkLabelSetImageVtkMapper2D_H_ diff --git a/Modules/Multilabel/mitkMultilabelObjectFactory.cpp b/Modules/Multilabel/mitkMultilabelObjectFactory.cpp index 3315b8abf90..e402aeff8b9 100644 --- a/Modules/Multilabel/mitkMultilabelObjectFactory.cpp +++ b/Modules/Multilabel/mitkMultilabelObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMultilabelObjectFactory.h" diff --git a/Modules/Multilabel/mitkMultilabelObjectFactory.h b/Modules/Multilabel/mitkMultilabelObjectFactory.h index 08be5357baf..5ad525a2104 100644 --- a/Modules/Multilabel/mitkMultilabelObjectFactory.h +++ b/Modules/Multilabel/mitkMultilabelObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MULTILABELOBJECTFACTORY_H_INCLUDED #define MULTILABELOBJECTFACTORY_H_INCLUDED diff --git a/Modules/OpenCL/Documentation/doxygen/snippets/mitkOcl-binarythrfilter/gpucode.cl b/Modules/OpenCL/Documentation/doxygen/snippets/mitkOcl-binarythrfilter/gpucode.cl index f93fd08f476..6c0348be42a 100644 --- a/Modules/OpenCL/Documentation/doxygen/snippets/mitkOcl-binarythrfilter/gpucode.cl +++ b/Modules/OpenCL/Documentation/doxygen/snippets/mitkOcl-binarythrfilter/gpucode.cl @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //! [GPUHeader] __kernel void ckBinaryThreshold( __read_only image3d_t dSource, // input image diff --git a/Modules/OpenCL/Documentation/doxygen/snippets/mitkOcl-binarythrfilter/main.cpp b/Modules/OpenCL/Documentation/doxygen/snippets/mitkOcl-binarythrfilter/main.cpp index 6d45eb4474f..a7fddfbb169 100644 --- a/Modules/OpenCL/Documentation/doxygen/snippets/mitkOcl-binarythrfilter/main.cpp +++ b/Modules/OpenCL/Documentation/doxygen/snippets/mitkOcl-binarythrfilter/main.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclBinaryThresholdImageFilter.h" diff --git a/Modules/OpenCL/Resources/BinaryThresholdFilter.cl b/Modules/OpenCL/Resources/BinaryThresholdFilter.cl index 1c0056eb3f3..51c3a8978d3 100644 --- a/Modules/OpenCL/Resources/BinaryThresholdFilter.cl +++ b/Modules/OpenCL/Resources/BinaryThresholdFilter.cl @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ __kernel void ckBinaryThreshold( __read_only image3d_t dSource, // input image diff --git a/Modules/OpenCL/Testing/mitkOclBinaryThresholdImageFilterTest.cpp b/Modules/OpenCL/Testing/mitkOclBinaryThresholdImageFilterTest.cpp index e96769cb121..413bcb7810a 100644 --- a/Modules/OpenCL/Testing/mitkOclBinaryThresholdImageFilterTest.cpp +++ b/Modules/OpenCL/Testing/mitkOclBinaryThresholdImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/OpenCL/Testing/mitkOclImageTest.cpp b/Modules/OpenCL/Testing/mitkOclImageTest.cpp index d78059bce83..c1312627aff 100644 --- a/Modules/OpenCL/Testing/mitkOclImageTest.cpp +++ b/Modules/OpenCL/Testing/mitkOclImageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/OpenCL/Testing/mitkOclReferenceCountTest.cpp b/Modules/OpenCL/Testing/mitkOclReferenceCountTest.cpp index e7f4702bebe..171a06c9c46 100644 --- a/Modules/OpenCL/Testing/mitkOclReferenceCountTest.cpp +++ b/Modules/OpenCL/Testing/mitkOclReferenceCountTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/OpenCL/Testing/mitkOclResourceServiceTest.cpp b/Modules/OpenCL/Testing/mitkOclResourceServiceTest.cpp index 904974f7cd5..7521f130157 100644 --- a/Modules/OpenCL/Testing/mitkOclResourceServiceTest.cpp +++ b/Modules/OpenCL/Testing/mitkOclResourceServiceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/OpenCL/mitkOclBaseData.cpp b/Modules/OpenCL/mitkOclBaseData.cpp index 34dd42ff0b8..cb55ab283a1 100644 --- a/Modules/OpenCL/mitkOclBaseData.cpp +++ b/Modules/OpenCL/mitkOclBaseData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclBaseData.h" diff --git a/Modules/OpenCL/mitkOclBaseData.h b/Modules/OpenCL/mitkOclBaseData.h index af492c716a0..da0d9672e68 100644 --- a/Modules/OpenCL/mitkOclBaseData.h +++ b/Modules/OpenCL/mitkOclBaseData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclBaseData_h #define __mitkOclBaseData_h diff --git a/Modules/OpenCL/mitkOclBinaryThresholdImageFilter.cpp b/Modules/OpenCL/mitkOclBinaryThresholdImageFilter.cpp index 48ccac66fe6..1f750ef5c47 100644 --- a/Modules/OpenCL/mitkOclBinaryThresholdImageFilter.cpp +++ b/Modules/OpenCL/mitkOclBinaryThresholdImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclBinaryThresholdImageFilter.h" #include "usServiceReference.h" diff --git a/Modules/OpenCL/mitkOclBinaryThresholdImageFilter.h b/Modules/OpenCL/mitkOclBinaryThresholdImageFilter.h index cc453b1068d..9070125f861 100644 --- a/Modules/OpenCL/mitkOclBinaryThresholdImageFilter.h +++ b/Modules/OpenCL/mitkOclBinaryThresholdImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKOCLBINARYTHRESHOLDIMAGEFILTER_H_ #define _MITKOCLBINARYTHRESHOLDIMAGEFILTER_H_ diff --git a/Modules/OpenCL/mitkOclDataSet.cpp b/Modules/OpenCL/mitkOclDataSet.cpp index 953c0d68b1b..9d606459716 100644 --- a/Modules/OpenCL/mitkOclDataSet.cpp +++ b/Modules/OpenCL/mitkOclDataSet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclDataSet.h" #include "mitkCommon.h" diff --git a/Modules/OpenCL/mitkOclDataSet.h b/Modules/OpenCL/mitkOclDataSet.h index 773510e47c2..d86597a5866 100644 --- a/Modules/OpenCL/mitkOclDataSet.h +++ b/Modules/OpenCL/mitkOclDataSet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclDataSet_h #define __mitkOclDataSet_h diff --git a/Modules/OpenCL/mitkOclDataSetFilter.cpp b/Modules/OpenCL/mitkOclDataSetFilter.cpp index f30719b5ae2..bc4ab4edfc3 100644 --- a/Modules/OpenCL/mitkOclDataSetFilter.cpp +++ b/Modules/OpenCL/mitkOclDataSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclDataSetFilter.h" #include "mitkOclFilter.h" @@ -52,4 +48,4 @@ void mitk::OclDataSetFilter::SetInput(mitk::Image::Pointer image) m_Input->SetBufferSize(elements); m_Input->SetBpE(m_CurrentSize); -} \ No newline at end of file +} diff --git a/Modules/OpenCL/mitkOclDataSetFilter.h b/Modules/OpenCL/mitkOclDataSetFilter.h index 881291bbd05..b4e660c4bb6 100644 --- a/Modules/OpenCL/mitkOclDataSetFilter.h +++ b/Modules/OpenCL/mitkOclDataSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclDataSetFilter_h #define __mitkOclDataSetFilter_h diff --git a/Modules/OpenCL/mitkOclDataSetToDataSetFilter.cpp b/Modules/OpenCL/mitkOclDataSetToDataSetFilter.cpp index 1a7e821ab1f..99fffdb4b84 100644 --- a/Modules/OpenCL/mitkOclDataSetToDataSetFilter.cpp +++ b/Modules/OpenCL/mitkOclDataSetToDataSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclDataSetToDataSetFilter.h" #include "mitkOclDataSet.h" diff --git a/Modules/OpenCL/mitkOclDataSetToDataSetFilter.h b/Modules/OpenCL/mitkOclDataSetToDataSetFilter.h index 0891e8b8764..d1ca3fa76e3 100644 --- a/Modules/OpenCL/mitkOclDataSetToDataSetFilter.h +++ b/Modules/OpenCL/mitkOclDataSetToDataSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclDataSetToDataSetFilter_h #define __mitkOclDataSetToDataSetFilter_h diff --git a/Modules/OpenCL/mitkOclFilter.cpp b/Modules/OpenCL/mitkOclFilter.cpp index 8d9036b0a33..c7c838e2360 100644 --- a/Modules/OpenCL/mitkOclFilter.cpp +++ b/Modules/OpenCL/mitkOclFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Ocl #include "mitkOclFilter.h" @@ -352,4 +348,4 @@ unsigned long mitk::OclFilter::GetDeviceMemory() OclResourceService* resources = GetModuleContext()->GetService(GetModuleContext()->GetServiceReference()); auto device = resources->GetCurrentDevice(); return oclGetGlobalMemSize(device); -} \ No newline at end of file +} diff --git a/Modules/OpenCL/mitkOclFilter.h b/Modules/OpenCL/mitkOclFilter.h index 6c9dddbfe35..30439db225d 100644 --- a/Modules/OpenCL/mitkOclFilter.h +++ b/Modules/OpenCL/mitkOclFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclFilter_h @@ -117,7 +113,7 @@ class MITKOPENCL_EXPORT OclFilter */ bool ExecuteKernelChunks( cl_kernel kernel, unsigned int workSizeDim, size_t* chunksDim ); - /** @brief Execute the given kernel on the OpenCL Index-Space defined by the local and global work sizes, but divide it into chunks of dimension chunksDim and wait between + /** @brief Execute the given kernel on the OpenCL Index-Space defined by the local and global work sizes, but divide it into chunks of dimension chunksDim and wait between * batches of batchSize chunks a time of waitTimems milliseconds */ bool ExecuteKernelChunksInBatches(cl_kernel kernel, unsigned int workSizeDim, size_t* chunksDim, size_t batchSize, int waitTimems); diff --git a/Modules/OpenCL/mitkOclImage.cpp b/Modules/OpenCL/mitkOclImage.cpp index 3ca46fe7fb9..fc7acd3b4f7 100644 --- a/Modules/OpenCL/mitkOclImage.cpp +++ b/Modules/OpenCL/mitkOclImage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclImage.h" #include "mitkImageDataItem.h" diff --git a/Modules/OpenCL/mitkOclImage.h b/Modules/OpenCL/mitkOclImage.h index bb054c46d7d..08311589d48 100644 --- a/Modules/OpenCL/mitkOclImage.h +++ b/Modules/OpenCL/mitkOclImage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclImage_h #define __mitkOclImage_h diff --git a/Modules/OpenCL/mitkOclImageFilter.cpp b/Modules/OpenCL/mitkOclImageFilter.cpp index a0794d9b7b8..fabd1b473b8 100644 --- a/Modules/OpenCL/mitkOclImageFilter.cpp +++ b/Modules/OpenCL/mitkOclImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclImageFilter.h" #include "mitkOclFilter.h" diff --git a/Modules/OpenCL/mitkOclImageFilter.h b/Modules/OpenCL/mitkOclImageFilter.h index 709d498a55e..7ab4a425ae2 100644 --- a/Modules/OpenCL/mitkOclImageFilter.h +++ b/Modules/OpenCL/mitkOclImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclImageFilter_h #define __mitkOclImageFilter_h diff --git a/Modules/OpenCL/mitkOclImageFormats.cpp b/Modules/OpenCL/mitkOclImageFormats.cpp index c37b5dfcbbc..89f3a1a002c 100644 --- a/Modules/OpenCL/mitkOclImageFormats.cpp +++ b/Modules/OpenCL/mitkOclImageFormats.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclImageFormats.h" diff --git a/Modules/OpenCL/mitkOclImageFormats.h b/Modules/OpenCL/mitkOclImageFormats.h index aed1fea1561..2400afb9ab2 100644 --- a/Modules/OpenCL/mitkOclImageFormats.h +++ b/Modules/OpenCL/mitkOclImageFormats.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclImageFormats_h #define __mitkOclImageFormats_h diff --git a/Modules/OpenCL/mitkOclImageToImageFilter.cpp b/Modules/OpenCL/mitkOclImageToImageFilter.cpp index 10f88b06a43..014a62b45f8 100644 --- a/Modules/OpenCL/mitkOclImageToImageFilter.cpp +++ b/Modules/OpenCL/mitkOclImageToImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclImageToImageFilter.h" #include "mitkOclImage.h" @@ -179,7 +175,7 @@ bool mitk::OclImageToImageFilter::InitExec(cl_kernel ckKernel) //TODO bpp, or SetImageWidth/Height/... MITK_INFO << "Create GPU Image call " << uiImageWidth<< "x"<CreateGPUImage(uiImageWidth, uiImageHeight, uiImageDepth, this->m_CurrentType + 1); - + clErr = 0; clErr = clSetKernelArg(ckKernel, 0, sizeof(cl_mem), &clBuffIn); @@ -190,4 +186,4 @@ bool mitk::OclImageToImageFilter::InitExec(cl_kernel ckKernel) mitkThrow() << "OpenCL Part initialization failed with " << GetOclErrorAsString(clErr); return( clErr == CL_SUCCESS ); -} \ No newline at end of file +} diff --git a/Modules/OpenCL/mitkOclImageToImageFilter.h b/Modules/OpenCL/mitkOclImageToImageFilter.h index 19fa41e5f28..148221842b0 100644 --- a/Modules/OpenCL/mitkOclImageToImageFilter.h +++ b/Modules/OpenCL/mitkOclImageToImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclImageToImageFilter_h #define __mitkOclImageToImageFilter_h diff --git a/Modules/OpenCL/mitkOclResourceService.h b/Modules/OpenCL/mitkOclResourceService.h index a3e3fdcfd65..47b8cdb0b04 100644 --- a/Modules/OpenCL/mitkOclResourceService.h +++ b/Modules/OpenCL/mitkOclResourceService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclResourceService_h #define __mitkOclResourceService_h diff --git a/Modules/OpenCL/mitkOclResourceServiceImpl_Private.cpp b/Modules/OpenCL/mitkOclResourceServiceImpl_Private.cpp index 39d5840b054..7de7e51e4db 100644 --- a/Modules/OpenCL/mitkOclResourceServiceImpl_Private.cpp +++ b/Modules/OpenCL/mitkOclResourceServiceImpl_Private.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclResourceServiceImpl_p.h" diff --git a/Modules/OpenCL/mitkOclResourceServiceImpl_p.h b/Modules/OpenCL/mitkOclResourceServiceImpl_p.h index c00819c03a4..f621011ec3c 100644 --- a/Modules/OpenCL/mitkOclResourceServiceImpl_p.h +++ b/Modules/OpenCL/mitkOclResourceServiceImpl_p.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclResourceServiceImpl_h #define __mitkOclResourceServiceImpl_h diff --git a/Modules/OpenCL/mitkOclUtils.cpp b/Modules/OpenCL/mitkOclUtils.cpp index 79970ce3af1..29ba55113cf 100644 --- a/Modules/OpenCL/mitkOclUtils.cpp +++ b/Modules/OpenCL/mitkOclUtils.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOclUtils.h" #include "mitkLogMacros.h" diff --git a/Modules/OpenCL/mitkOclUtils.h b/Modules/OpenCL/mitkOclUtils.h index 84334536462..704ad9309eb 100644 --- a/Modules/OpenCL/mitkOclUtils.h +++ b/Modules/OpenCL/mitkOclUtils.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOclUtils_h #define __mitkOclUtils_h diff --git a/Modules/OpenCL/mitkOpenCL.h b/Modules/OpenCL/mitkOpenCL.h index d2131a3455b..36b0dc5307f 100644 --- a/Modules/OpenCL/mitkOpenCL.h +++ b/Modules/OpenCL/mitkOpenCL.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOPENCL_H_HEADER_INCLUDED #define MITKOPENCL_H_HEADER_INCLUDED diff --git a/Modules/OpenCL/mitkOpenCLActivator.cpp b/Modules/OpenCL/mitkOpenCLActivator.cpp index a53f36e5b6f..3ea84f430d8 100644 --- a/Modules/OpenCL/mitkOpenCLActivator.cpp +++ b/Modules/OpenCL/mitkOpenCLActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOpenCLActivator.h" diff --git a/Modules/OpenCL/mitkOpenCLActivator.h b/Modules/OpenCL/mitkOpenCLActivator.h index 3f2e6d2e184..a3f63290644 100644 --- a/Modules/OpenCL/mitkOpenCLActivator.h +++ b/Modules/OpenCL/mitkOpenCLActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkOpenCLActivator_h #define __mitkOpenCLActivator_h diff --git a/Modules/OpenCVVideoSupport/Commands/mitkAbstractOpenCVImageFilter.cpp b/Modules/OpenCVVideoSupport/Commands/mitkAbstractOpenCVImageFilter.cpp index 06f1278b0c1..8031ac3074a 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkAbstractOpenCVImageFilter.cpp +++ b/Modules/OpenCVVideoSupport/Commands/mitkAbstractOpenCVImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAbstractOpenCVImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/Commands/mitkAbstractOpenCVImageFilter.h b/Modules/OpenCVVideoSupport/Commands/mitkAbstractOpenCVImageFilter.h index 3eafe267f8d..81aa05c6e8a 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkAbstractOpenCVImageFilter.h +++ b/Modules/OpenCVVideoSupport/Commands/mitkAbstractOpenCVImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCropOpenCVImageFilter_h #define mitkCropOpenCVImageFilter_h diff --git a/Modules/OpenCVVideoSupport/Commands/mitkBasicCombinationOpenCVImageFilter.cpp b/Modules/OpenCVVideoSupport/Commands/mitkBasicCombinationOpenCVImageFilter.cpp index 00a94cfe98b..2093b15baec 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkBasicCombinationOpenCVImageFilter.cpp +++ b/Modules/OpenCVVideoSupport/Commands/mitkBasicCombinationOpenCVImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBasicCombinationOpenCVImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/Commands/mitkBasicCombinationOpenCVImageFilter.h b/Modules/OpenCVVideoSupport/Commands/mitkBasicCombinationOpenCVImageFilter.h index 55b86c2c679..f3b77dddc51 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkBasicCombinationOpenCVImageFilter.h +++ b/Modules/OpenCVVideoSupport/Commands/mitkBasicCombinationOpenCVImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBasicCombinationOpenCVImageFilter_h #define mitkBasicCombinationOpenCVImageFilter_h diff --git a/Modules/OpenCVVideoSupport/Commands/mitkConvertGrayscaleOpenCVImageFilter.cpp b/Modules/OpenCVVideoSupport/Commands/mitkConvertGrayscaleOpenCVImageFilter.cpp index 271a7b0f0cd..56a6241f47f 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkConvertGrayscaleOpenCVImageFilter.cpp +++ b/Modules/OpenCVVideoSupport/Commands/mitkConvertGrayscaleOpenCVImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkConvertGrayscaleOpenCVImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/Commands/mitkConvertGrayscaleOpenCVImageFilter.h b/Modules/OpenCVVideoSupport/Commands/mitkConvertGrayscaleOpenCVImageFilter.h index 9967005bdd1..e0885b1fcca 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkConvertGrayscaleOpenCVImageFilter.h +++ b/Modules/OpenCVVideoSupport/Commands/mitkConvertGrayscaleOpenCVImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkConvertGrayscaleOpenCVImageFilter_h #define mitkConvertGrayscaleOpenCVImageFilter_h diff --git a/Modules/OpenCVVideoSupport/Commands/mitkCropOpenCVImageFilter.cpp b/Modules/OpenCVVideoSupport/Commands/mitkCropOpenCVImageFilter.cpp index 4249e125c13..86e28b5f306 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkCropOpenCVImageFilter.cpp +++ b/Modules/OpenCVVideoSupport/Commands/mitkCropOpenCVImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCropOpenCVImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/Commands/mitkCropOpenCVImageFilter.h b/Modules/OpenCVVideoSupport/Commands/mitkCropOpenCVImageFilter.h index 054b4bda48f..8c1ddc5c197 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkCropOpenCVImageFilter.h +++ b/Modules/OpenCVVideoSupport/Commands/mitkCropOpenCVImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAbstractOpenCVImageFilter_h #define mitkAbstractOpenCVImageFilter_h diff --git a/Modules/OpenCVVideoSupport/Commands/mitkGrabCutOpenCVImageFilter.cpp b/Modules/OpenCVVideoSupport/Commands/mitkGrabCutOpenCVImageFilter.cpp index db8b011fb96..356659fe520 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkGrabCutOpenCVImageFilter.cpp +++ b/Modules/OpenCVVideoSupport/Commands/mitkGrabCutOpenCVImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk headers #include "mitkGrabCutOpenCVImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/Commands/mitkGrabCutOpenCVImageFilter.h b/Modules/OpenCVVideoSupport/Commands/mitkGrabCutOpenCVImageFilter.h index 26161cce9a8..9a2fce68e59 100644 --- a/Modules/OpenCVVideoSupport/Commands/mitkGrabCutOpenCVImageFilter.h +++ b/Modules/OpenCVVideoSupport/Commands/mitkGrabCutOpenCVImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGRABCUTOPENCVIMAGEFILTER_H #define MITKGRABCUTOPENCVIMAGEFILTER_H diff --git a/Modules/OpenCVVideoSupport/Testing/mitkBasicCombinationOpenCVImageFilterTest.cpp b/Modules/OpenCVVideoSupport/Testing/mitkBasicCombinationOpenCVImageFilterTest.cpp index b7784f9733a..215ea78ac66 100644 --- a/Modules/OpenCVVideoSupport/Testing/mitkBasicCombinationOpenCVImageFilterTest.cpp +++ b/Modules/OpenCVVideoSupport/Testing/mitkBasicCombinationOpenCVImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBasicCombinationOpenCVImageFilter.h" #include "mitkConvertGrayscaleOpenCVImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/Testing/mitkConvertGrayscaleOpenCVImageFilterTest.cpp b/Modules/OpenCVVideoSupport/Testing/mitkConvertGrayscaleOpenCVImageFilterTest.cpp index c50de232e50..734589e1d42 100644 --- a/Modules/OpenCVVideoSupport/Testing/mitkConvertGrayscaleOpenCVImageFilterTest.cpp +++ b/Modules/OpenCVVideoSupport/Testing/mitkConvertGrayscaleOpenCVImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkConvertGrayscaleOpenCVImageFilter.h" #include diff --git a/Modules/OpenCVVideoSupport/Testing/mitkCropOpenCVImageFilterTest.cpp b/Modules/OpenCVVideoSupport/Testing/mitkCropOpenCVImageFilterTest.cpp index 1338c70869c..954b9c27918 100644 --- a/Modules/OpenCVVideoSupport/Testing/mitkCropOpenCVImageFilterTest.cpp +++ b/Modules/OpenCVVideoSupport/Testing/mitkCropOpenCVImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCropOpenCVImageFilter.h" #include diff --git a/Modules/OpenCVVideoSupport/Testing/mitkGrabCutOpenCVImageFilterTest.cpp b/Modules/OpenCVVideoSupport/Testing/mitkGrabCutOpenCVImageFilterTest.cpp index 0e18bee408b..be50a4358cc 100644 --- a/Modules/OpenCVVideoSupport/Testing/mitkGrabCutOpenCVImageFilterTest.cpp +++ b/Modules/OpenCVVideoSupport/Testing/mitkGrabCutOpenCVImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGrabCutOpenCVImageFilter.h" #include diff --git a/Modules/OpenCVVideoSupport/Testing/mitkOpenCVMitkConversionTest.cpp b/Modules/OpenCVVideoSupport/Testing/mitkOpenCVMitkConversionTest.cpp index ecb9d7bc2d4..a5c5b0a0680 100644 --- a/Modules/OpenCVVideoSupport/Testing/mitkOpenCVMitkConversionTest.cpp +++ b/Modules/OpenCVVideoSupport/Testing/mitkOpenCVMitkConversionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkImageToOpenCVImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/Testing/mitkOpenCVToMitkImageFilterTest.cpp b/Modules/OpenCVVideoSupport/Testing/mitkOpenCVToMitkImageFilterTest.cpp index 267a9e3c4bc..9ce7fa75913 100644 --- a/Modules/OpenCVVideoSupport/Testing/mitkOpenCVToMitkImageFilterTest.cpp +++ b/Modules/OpenCVVideoSupport/Testing/mitkOpenCVToMitkImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkOpenCVToMitkImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/UI/QmitkOpenCVVideoControls.cpp b/Modules/OpenCVVideoSupport/UI/QmitkOpenCVVideoControls.cpp index 43786c18f1a..41dc3fef68e 100644 --- a/Modules/OpenCVVideoSupport/UI/QmitkOpenCVVideoControls.cpp +++ b/Modules/OpenCVVideoSupport/UI/QmitkOpenCVVideoControls.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOpenCVVideoControls.h" #include diff --git a/Modules/OpenCVVideoSupport/UI/QmitkOpenCVVideoControls.h b/Modules/OpenCVVideoSupport/UI/QmitkOpenCVVideoControls.h index a01353983ba..ed5ea696f26 100644 --- a/Modules/OpenCVVideoSupport/UI/QmitkOpenCVVideoControls.h +++ b/Modules/OpenCVVideoSupport/UI/QmitkOpenCVVideoControls.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkOpenCVVideoControls_h #define QmitkOpenCVVideoControls_h diff --git a/Modules/OpenCVVideoSupport/mitkImageToOpenCVImageFilter.cpp b/Modules/OpenCVVideoSupport/mitkImageToOpenCVImageFilter.cpp index 6dccdbbde51..b313f639bb2 100644 --- a/Modules/OpenCVVideoSupport/mitkImageToOpenCVImageFilter.cpp +++ b/Modules/OpenCVVideoSupport/mitkImageToOpenCVImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageToOpenCVImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/mitkImageToOpenCVImageFilter.h b/Modules/OpenCVVideoSupport/mitkImageToOpenCVImageFilter.h index e91bd9b81a9..a47f41721f9 100644 --- a/Modules/OpenCVVideoSupport/mitkImageToOpenCVImageFilter.h +++ b/Modules/OpenCVVideoSupport/mitkImageToOpenCVImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkImageToOpenCVImageFilter_h #define mitkImageToOpenCVImageFilter_h diff --git a/Modules/OpenCVVideoSupport/mitkMovieGeneratorOpenCV.cpp b/Modules/OpenCVVideoSupport/mitkMovieGeneratorOpenCV.cpp index 4ba6b024f55..50701f6003a 100644 --- a/Modules/OpenCVVideoSupport/mitkMovieGeneratorOpenCV.cpp +++ b/Modules/OpenCVVideoSupport/mitkMovieGeneratorOpenCV.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMovieGeneratorOpenCV.h" //#include diff --git a/Modules/OpenCVVideoSupport/mitkMovieGeneratorOpenCV.h b/Modules/OpenCVVideoSupport/mitkMovieGeneratorOpenCV.h index 593cef9f852..09f7c9561b8 100755 --- a/Modules/OpenCVVideoSupport/mitkMovieGeneratorOpenCV.h +++ b/Modules/OpenCVVideoSupport/mitkMovieGeneratorOpenCV.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MovieGeneratorOpenCV_H_HEADER_INCLUDED #define MovieGeneratorOpenCV_H_HEADER_INCLUDED diff --git a/Modules/OpenCVVideoSupport/mitkOpenCVImageSource.h b/Modules/OpenCVVideoSupport/mitkOpenCVImageSource.h index eaeb509dae5..eb2367fee24 100644 --- a/Modules/OpenCVVideoSupport/mitkOpenCVImageSource.h +++ b/Modules/OpenCVVideoSupport/mitkOpenCVImageSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOPENCVIMAGESOURCE_H #define MITKOPENCVIMAGESOURCE_H diff --git a/Modules/OpenCVVideoSupport/mitkOpenCVToMitkImageFilter.cpp b/Modules/OpenCVVideoSupport/mitkOpenCVToMitkImageFilter.cpp index 89e57a64647..fcffa8b6121 100644 --- a/Modules/OpenCVVideoSupport/mitkOpenCVToMitkImageFilter.cpp +++ b/Modules/OpenCVVideoSupport/mitkOpenCVToMitkImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOpenCVToMitkImageFilter.h" diff --git a/Modules/OpenCVVideoSupport/mitkOpenCVToMitkImageFilter.h b/Modules/OpenCVVideoSupport/mitkOpenCVToMitkImageFilter.h index 71cfc559290..d42d510172b 100644 --- a/Modules/OpenCVVideoSupport/mitkOpenCVToMitkImageFilter.h +++ b/Modules/OpenCVVideoSupport/mitkOpenCVToMitkImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkOpenCVToMitkImageFilter_h #define mitkOpenCVToMitkImageFilter_h diff --git a/Modules/OpenCVVideoSupport/mitkOpenCVVideoSource.cpp b/Modules/OpenCVVideoSupport/mitkOpenCVVideoSource.cpp index 8543ee7d905..1fb0d2a3420 100644 --- a/Modules/OpenCVVideoSupport/mitkOpenCVVideoSource.cpp +++ b/Modules/OpenCVVideoSupport/mitkOpenCVVideoSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOpenCVVideoSource.h" #include diff --git a/Modules/OpenCVVideoSupport/mitkOpenCVVideoSource.h b/Modules/OpenCVVideoSupport/mitkOpenCVVideoSource.h index 7aa1e6c18d2..61848cf2e8c 100644 --- a/Modules/OpenCVVideoSupport/mitkOpenCVVideoSource.h +++ b/Modules/OpenCVVideoSupport/mitkOpenCVVideoSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitk_OpenCVVideo_Source_h_ #define _mitk_OpenCVVideo_Source_h_ diff --git a/Modules/OpenCVVideoSupport/mitkUndistortCameraImage.cpp b/Modules/OpenCVVideoSupport/mitkUndistortCameraImage.cpp index 3bf9af5db37..1d78e43af22 100644 --- a/Modules/OpenCVVideoSupport/mitkUndistortCameraImage.cpp +++ b/Modules/OpenCVVideoSupport/mitkUndistortCameraImage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /// The list of internal camera parameters: diff --git a/Modules/OpenCVVideoSupport/mitkUndistortCameraImage.h b/Modules/OpenCVVideoSupport/mitkUndistortCameraImage.h index bb709aad58b..f17d0acd85e 100644 --- a/Modules/OpenCVVideoSupport/mitkUndistortCameraImage.h +++ b/Modules/OpenCVVideoSupport/mitkUndistortCameraImage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkUndistortCameraImage_h #define __mitkUndistortCameraImage_h diff --git a/Modules/OpenCVVideoSupport/mitkVideoInputSource.cpp b/Modules/OpenCVVideoSupport/mitkVideoInputSource.cpp index 8ebd8334d7a..623861d331b 100644 --- a/Modules/OpenCVVideoSupport/mitkVideoInputSource.cpp +++ b/Modules/OpenCVVideoSupport/mitkVideoInputSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVideoInputSource.h" diff --git a/Modules/OpenCVVideoSupport/mitkVideoInputSource.h b/Modules/OpenCVVideoSupport/mitkVideoInputSource.h index 7ec84293fb8..398009c0628 100644 --- a/Modules/OpenCVVideoSupport/mitkVideoInputSource.h +++ b/Modules/OpenCVVideoSupport/mitkVideoInputSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitk_VideoInput_Source_h_ #define _mitk_VideoInput_Source_h_ diff --git a/Modules/OpenIGTLink/DeviceSources/mitkIGTL2DImageDeviceSource.cpp b/Modules/OpenIGTLink/DeviceSources/mitkIGTL2DImageDeviceSource.cpp index 2883114c310..fac06075af2 100644 --- a/Modules/OpenIGTLink/DeviceSources/mitkIGTL2DImageDeviceSource.cpp +++ b/Modules/OpenIGTLink/DeviceSources/mitkIGTL2DImageDeviceSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTL2DImageDeviceSource.h" diff --git a/Modules/OpenIGTLink/DeviceSources/mitkIGTL2DImageDeviceSource.h b/Modules/OpenIGTLink/DeviceSources/mitkIGTL2DImageDeviceSource.h index a21f20df43e..5d00b9db339 100644 --- a/Modules/OpenIGTLink/DeviceSources/mitkIGTL2DImageDeviceSource.h +++ b/Modules/OpenIGTLink/DeviceSources/mitkIGTL2DImageDeviceSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTL2DIMAGEDEVICESOURCE_H_HEADER_INCLUDED_ #define IGTL2DIMAGEDEVICESOURCE_H_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/DeviceSources/mitkIGTL3DImageDeviceSource.cpp b/Modules/OpenIGTLink/DeviceSources/mitkIGTL3DImageDeviceSource.cpp index 2b85a5f1596..da9ba0f00ec 100644 --- a/Modules/OpenIGTLink/DeviceSources/mitkIGTL3DImageDeviceSource.cpp +++ b/Modules/OpenIGTLink/DeviceSources/mitkIGTL3DImageDeviceSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTL3DImageDeviceSource.h" diff --git a/Modules/OpenIGTLink/DeviceSources/mitkIGTL3DImageDeviceSource.h b/Modules/OpenIGTLink/DeviceSources/mitkIGTL3DImageDeviceSource.h index 8b9462cca2c..d84186a3dfa 100644 --- a/Modules/OpenIGTLink/DeviceSources/mitkIGTL3DImageDeviceSource.h +++ b/Modules/OpenIGTLink/DeviceSources/mitkIGTL3DImageDeviceSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTL3DIMAGEDEVICESOURCE_H_HEADER_INCLUDED_ #define IGTL3DIMAGEDEVICESOURCE_H_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/DeviceSources/mitkIGTLTrackingDataDeviceSource.cpp b/Modules/OpenIGTLink/DeviceSources/mitkIGTLTrackingDataDeviceSource.cpp index f58741555cf..a5bcbe45fd7 100644 --- a/Modules/OpenIGTLink/DeviceSources/mitkIGTLTrackingDataDeviceSource.cpp +++ b/Modules/OpenIGTLink/DeviceSources/mitkIGTLTrackingDataDeviceSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLTrackingDataDeviceSource.h" diff --git a/Modules/OpenIGTLink/DeviceSources/mitkIGTLTrackingDataDeviceSource.h b/Modules/OpenIGTLink/DeviceSources/mitkIGTLTrackingDataDeviceSource.h index f94709a19b2..2b70097e42e 100644 --- a/Modules/OpenIGTLink/DeviceSources/mitkIGTLTrackingDataDeviceSource.h +++ b/Modules/OpenIGTLink/DeviceSources/mitkIGTLTrackingDataDeviceSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTLTrackingDataDeviceSource_H_HEADER_INCLUDED_ #define IGTLTrackingDataDeviceSource_H_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/Filters/mitkImageToIGTLMessageFilter.cpp b/Modules/OpenIGTLink/Filters/mitkImageToIGTLMessageFilter.cpp index e9a7426e10e..4ba7dcfabd7 100644 --- a/Modules/OpenIGTLink/Filters/mitkImageToIGTLMessageFilter.cpp +++ b/Modules/OpenIGTLink/Filters/mitkImageToIGTLMessageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageToIGTLMessageFilter.h" #include "mitkImageReadAccessor.h" diff --git a/Modules/OpenIGTLink/Filters/mitkImageToIGTLMessageFilter.h b/Modules/OpenIGTLink/Filters/mitkImageToIGTLMessageFilter.h index e9f840245b6..caa7d6e1607 100644 --- a/Modules/OpenIGTLink/Filters/mitkImageToIGTLMessageFilter.h +++ b/Modules/OpenIGTLink/Filters/mitkImageToIGTLMessageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKIMAGEToIGTLMessageFILTER_H__ #define _MITKIMAGEToIGTLMessageFILTER_H__ diff --git a/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkClientServerTest.cpp b/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkClientServerTest.cpp index d2238e53fbd..47b65080e7b 100644 --- a/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkClientServerTest.cpp +++ b/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkClientServerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //TEST #include diff --git a/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkIGTLImageMessageFilterTest.cpp b/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkIGTLImageMessageFilterTest.cpp index 0c39b069947..ce738d5b308 100644 --- a/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkIGTLImageMessageFilterTest.cpp +++ b/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkIGTLImageMessageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkImageFactoryTest.cpp b/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkImageFactoryTest.cpp index 5cb0b968c00..4d146caf9e8 100644 --- a/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkImageFactoryTest.cpp +++ b/Modules/OpenIGTLink/Testing/mitkOpenIGTLinkImageFactoryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/OpenIGTLink/mitkIGTLClient.cpp b/Modules/OpenIGTLink/mitkIGTLClient.cpp index 2c67b60f0b5..63bc2659fc0 100644 --- a/Modules/OpenIGTLink/mitkIGTLClient.cpp +++ b/Modules/OpenIGTLink/mitkIGTLClient.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLClient.h" //#include "mitkIGTTimeStamp.h" diff --git a/Modules/OpenIGTLink/mitkIGTLClient.h b/Modules/OpenIGTLink/mitkIGTLClient.h index 8092fb7aa20..aff947c35b4 100644 --- a/Modules/OpenIGTLink/mitkIGTLClient.h +++ b/Modules/OpenIGTLink/mitkIGTLClient.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLCLIENT_H diff --git a/Modules/OpenIGTLink/mitkIGTLDevice.cpp b/Modules/OpenIGTLink/mitkIGTLDevice.cpp index d5427bde0ab..5cb079b7cdc 100644 --- a/Modules/OpenIGTLink/mitkIGTLDevice.cpp +++ b/Modules/OpenIGTLink/mitkIGTLDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLDevice.h" //#include "mitkIGTException.h" diff --git a/Modules/OpenIGTLink/mitkIGTLDevice.h b/Modules/OpenIGTLink/mitkIGTLDevice.h index fa095d0face..afcd827967a 100644 --- a/Modules/OpenIGTLink/mitkIGTLDevice.h +++ b/Modules/OpenIGTLink/mitkIGTLDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLDEVICE_H #define MITKIGTLDEVICE_H diff --git a/Modules/OpenIGTLink/mitkIGTLDeviceSource.cpp b/Modules/OpenIGTLink/mitkIGTLDeviceSource.cpp index a1c44592ecb..04ffe4ae02a 100644 --- a/Modules/OpenIGTLink/mitkIGTLDeviceSource.cpp +++ b/Modules/OpenIGTLink/mitkIGTLDeviceSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLDeviceSource.h" diff --git a/Modules/OpenIGTLink/mitkIGTLDeviceSource.h b/Modules/OpenIGTLink/mitkIGTLDeviceSource.h index 4f62148f570..085212edd78 100644 --- a/Modules/OpenIGTLink/mitkIGTLDeviceSource.h +++ b/Modules/OpenIGTLink/mitkIGTLDeviceSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTLDEVICESOURCE_H_HEADER_INCLUDED_ #define IGTLDEVICESOURCE_H_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/mitkIGTLDeviceSourceTest.cpp b/Modules/OpenIGTLink/mitkIGTLDeviceSourceTest.cpp index 66596552b1f..70f7cae44f9 100644 --- a/Modules/OpenIGTLink/mitkIGTLDeviceSourceTest.cpp +++ b/Modules/OpenIGTLink/mitkIGTLDeviceSourceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackingDeviceSource.h" #include "mitkVirtualTrackingDevice.h" diff --git a/Modules/OpenIGTLink/mitkIGTLDummyMessage.cpp b/Modules/OpenIGTLink/mitkIGTLDummyMessage.cpp index 6dff7d53c4a..4a48a209958 100644 --- a/Modules/OpenIGTLink/mitkIGTLDummyMessage.cpp +++ b/Modules/OpenIGTLink/mitkIGTLDummyMessage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLDummyMessage.h" diff --git a/Modules/OpenIGTLink/mitkIGTLDummyMessage.h b/Modules/OpenIGTLink/mitkIGTLDummyMessage.h index f25af300983..40521f95d56 100644 --- a/Modules/OpenIGTLink/mitkIGTLDummyMessage.h +++ b/Modules/OpenIGTLink/mitkIGTLDummyMessage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLDUMMYMESSAGE_H #define MITKIGTLDUMMYMESSAGE_H diff --git a/Modules/OpenIGTLink/mitkIGTLMeasurements.cpp b/Modules/OpenIGTLink/mitkIGTLMeasurements.cpp index 71d6e26aeb9..b5d30dc15bb 100644 --- a/Modules/OpenIGTLink/mitkIGTLMeasurements.cpp +++ b/Modules/OpenIGTLink/mitkIGTLMeasurements.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLMeasurements.h" #include diff --git a/Modules/OpenIGTLink/mitkIGTLMeasurements.h b/Modules/OpenIGTLink/mitkIGTLMeasurements.h index ae5cc427198..598ea28a6f5 100644 --- a/Modules/OpenIGTLink/mitkIGTLMeasurements.h +++ b/Modules/OpenIGTLink/mitkIGTLMeasurements.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTLMeasurements_H_HEADER_INCLUDED_ #define IGTLMeasurements_H_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/mitkIGTLMessage.cpp b/Modules/OpenIGTLink/mitkIGTLMessage.cpp index 6ee7d0abd67..4c66f0bcaaa 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessage.cpp +++ b/Modules/OpenIGTLink/mitkIGTLMessage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLMessage.h" #include "mitkException.h" diff --git a/Modules/OpenIGTLink/mitkIGTLMessage.h b/Modules/OpenIGTLink/mitkIGTLMessage.h index 61bfdd99ee4..cf31ec38b30 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessage.h +++ b/Modules/OpenIGTLink/mitkIGTLMessage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLMESSAGEH_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/mitkIGTLMessageCloneHandler.h b/Modules/OpenIGTLink/mitkIGTLMessageCloneHandler.h index 56a74330399..7facc15ea60 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageCloneHandler.h +++ b/Modules/OpenIGTLink/mitkIGTLMessageCloneHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLMESSAGECLONE_H_ #define MITKIGTLMESSAGECLONE_H_ diff --git a/Modules/OpenIGTLink/mitkIGTLMessageCommon.cpp b/Modules/OpenIGTLink/mitkIGTLMessageCommon.cpp index 238da87839a..34c35bbd579 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageCommon.cpp +++ b/Modules/OpenIGTLink/mitkIGTLMessageCommon.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLMessageCommon.h" #include "mitkException.h" diff --git a/Modules/OpenIGTLink/mitkIGTLMessageCommon.h b/Modules/OpenIGTLink/mitkIGTLMessageCommon.h index 2f8cc6b3843..902c7d06a92 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageCommon.h +++ b/Modules/OpenIGTLink/mitkIGTLMessageCommon.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLMESSAGECOMMONH_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/mitkIGTLMessageFactory.cpp b/Modules/OpenIGTLink/mitkIGTLMessageFactory.cpp index 79cdfad769e..c0f635e2821 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageFactory.cpp +++ b/Modules/OpenIGTLink/mitkIGTLMessageFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLMessageFactory.h" diff --git a/Modules/OpenIGTLink/mitkIGTLMessageFactory.h b/Modules/OpenIGTLink/mitkIGTLMessageFactory.h index 12e6846c2f0..dcc1ccc648d 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageFactory.h +++ b/Modules/OpenIGTLink/mitkIGTLMessageFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLMESSAGEFACTORYH_HEADER_INCLUDED_ #define MITKIGTLMESSAGEFACTORYH_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/mitkIGTLMessageProvider.cpp b/Modules/OpenIGTLink/mitkIGTLMessageProvider.cpp index cd5fcacbb76..5ebfdad595f 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageProvider.cpp +++ b/Modules/OpenIGTLink/mitkIGTLMessageProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLMessageProvider.h" diff --git a/Modules/OpenIGTLink/mitkIGTLMessageProvider.h b/Modules/OpenIGTLink/mitkIGTLMessageProvider.h index bc1fe91c0c5..c4f9a8e8392 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageProvider.h +++ b/Modules/OpenIGTLink/mitkIGTLMessageProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTLMESSAGEPROVIDER_H_HEADER_INCLUDED_ #define IGTLMESSAGEPROVIDER_H_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/mitkIGTLMessageQueue.cpp b/Modules/OpenIGTLink/mitkIGTLMessageQueue.cpp index 9b8a1a1e151..ff5e0ab2561 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageQueue.cpp +++ b/Modules/OpenIGTLink/mitkIGTLMessageQueue.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLMessageQueue.h" #include diff --git a/Modules/OpenIGTLink/mitkIGTLMessageQueue.h b/Modules/OpenIGTLink/mitkIGTLMessageQueue.h index 598a0fd0a13..8a4e52ab526 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageQueue.h +++ b/Modules/OpenIGTLink/mitkIGTLMessageQueue.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IGTLMessageQueue_H #define IGTLMessageQueue_H diff --git a/Modules/OpenIGTLink/mitkIGTLMessageSource.cpp b/Modules/OpenIGTLink/mitkIGTLMessageSource.cpp index a127c17e195..0e7ccfbfc0c 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageSource.cpp +++ b/Modules/OpenIGTLink/mitkIGTLMessageSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLMessageSource.h" #include "mitkUIDGenerator.h" diff --git a/Modules/OpenIGTLink/mitkIGTLMessageSource.h b/Modules/OpenIGTLink/mitkIGTLMessageSource.h index 7c6037a6d0b..2c3e4ac29ec 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageSource.h +++ b/Modules/OpenIGTLink/mitkIGTLMessageSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLMESSAGESOURCE_H_HEADER_INCLUDED_ diff --git a/Modules/OpenIGTLink/mitkIGTLMessageSourceTest.cpp b/Modules/OpenIGTLink/mitkIGTLMessageSourceTest.cpp index de5a9fcc2c9..1aeb1645ebb 100644 --- a/Modules/OpenIGTLink/mitkIGTLMessageSourceTest.cpp +++ b/Modules/OpenIGTLink/mitkIGTLMessageSourceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataSource.h" #include "mitkNavigationData.h" diff --git a/Modules/OpenIGTLink/mitkIGTLModuleActivator.cpp b/Modules/OpenIGTLink/mitkIGTLModuleActivator.cpp index d5ff3074f26..c5b4e734c73 100644 --- a/Modules/OpenIGTLink/mitkIGTLModuleActivator.cpp +++ b/Modules/OpenIGTLink/mitkIGTLModuleActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/OpenIGTLink/mitkIGTLServer.cpp b/Modules/OpenIGTLink/mitkIGTLServer.cpp index 1bffbcac22b..817b37c3e3e 100644 --- a/Modules/OpenIGTLink/mitkIGTLServer.cpp +++ b/Modules/OpenIGTLink/mitkIGTLServer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIGTLServer.h" #include diff --git a/Modules/OpenIGTLink/mitkIGTLServer.h b/Modules/OpenIGTLink/mitkIGTLServer.h index 432c8115044..1ae329b689f 100644 --- a/Modules/OpenIGTLink/mitkIGTLServer.h +++ b/Modules/OpenIGTLink/mitkIGTLServer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLSERVER_H #define MITKIGTLSERVER_H diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceCommandWidget.cpp b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceCommandWidget.cpp index 7fac13dfed3..14073a0dc4b 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceCommandWidget.cpp +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceCommandWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTLDeviceCommandWidget.h" diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceCommandWidget.h b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceCommandWidget.h index 3a957a219e2..914b414c1c4 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceCommandWidget.h +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceCommandWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKIGTLDeviceCommandWIDGET_H #define QMITKIGTLDeviceCommandWIDGET_H diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSetupConnectionWidget.cpp b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSetupConnectionWidget.cpp index 7e65448aeb6..11cdc1a0c0c 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSetupConnectionWidget.cpp +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSetupConnectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTLDeviceSetupConnectionWidget.h" diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSetupConnectionWidget.h b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSetupConnectionWidget.h index 401a9d8521d..1f95dae6258 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSetupConnectionWidget.h +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSetupConnectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTLDeviceSetupConnectionWidget_H #define QmitkIGTLDeviceSetupConnectionWidget_H diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceManagementWidget.cpp b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceManagementWidget.cpp index 9979b38a2ed..91e48102cdb 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceManagementWidget.cpp +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceManagementWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTLDeviceSourceManagementWidget.h" diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceManagementWidget.h b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceManagementWidget.h index 65184ae63e6..36e77ee2a55 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceManagementWidget.h +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceManagementWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKIGTLDeviceSourceMANAGEMENTWIDGET_H #define QMITKIGTLDeviceSourceMANAGEMENTWIDGET_H diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceSelectionWidget.cpp b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceSelectionWidget.cpp index 639128d49d7..8cbf3edc3d7 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceSelectionWidget.cpp +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTLDeviceSourceSelectionWidget.h" diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceSelectionWidget.h b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceSelectionWidget.h index 0b325aa6ae3..254c5db1069 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceSelectionWidget.h +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLDeviceSourceSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTLDeviceSourceSelectionWidget_H #define QmitkIGTLDeviceSourceSelectionWidget_H diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLMessageSourceSelectionWidget.cpp b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLMessageSourceSelectionWidget.cpp index 171543d4993..b0378d7f48c 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLMessageSourceSelectionWidget.cpp +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLMessageSourceSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTLMessageSourceSelectionWidget.h" diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLMessageSourceSelectionWidget.h b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLMessageSourceSelectionWidget.h index f286f1dc82b..de57efa253f 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLMessageSourceSelectionWidget.h +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLMessageSourceSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTLMessageSourceSelectionWidget_H #define QmitkIGTLMessageSourceSelectionWidget_H diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingConnector.cpp b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingConnector.cpp index 565e56d0f47..61a29163d7d 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingConnector.cpp +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingConnector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTLStreamingConnector.h" diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingConnector.h b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingConnector.h index 9f819732ed0..a518150e5c8 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingConnector.h +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingConnector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKIGTLSTREAMINGCONNECTOR_H #define QMITKIGTLSTREAMINGCONNECTOR_H diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingManagementWidget.cpp b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingManagementWidget.cpp index 7f7ea776051..4b8647a495d 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingManagementWidget.cpp +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingManagementWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTLStreamingManagementWidget.h" diff --git a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingManagementWidget.h b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingManagementWidget.h index 5d3f872a9f4..267cb32b772 100644 --- a/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingManagementWidget.h +++ b/Modules/OpenIGTLinkUI/Qmitk/QmitkIGTLStreamingManagementWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKIGTLStreamingMANAGEMENTWIDGET_H #define QMITKIGTLStreamingMANAGEMENTWIDGET_H diff --git a/Modules/Persistence/Testing/mitkPersistenceTest.cpp b/Modules/Persistence/Testing/mitkPersistenceTest.cpp index ce71861a71d..0b7fd6c4d03 100644 --- a/Modules/Persistence/Testing/mitkPersistenceTest.cpp +++ b/Modules/Persistence/Testing/mitkPersistenceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/Persistence/mitkIPersistable.h b/Modules/Persistence/mitkIPersistable.h index fb6eb24dc28..11ee9bcc189 100644 --- a/Modules/Persistence/mitkIPersistable.h +++ b/Modules/Persistence/mitkIPersistable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPersistable_h #define mitkIPersistable_h #include diff --git a/Modules/Persistence/mitkPersistenceActivator.cpp b/Modules/Persistence/mitkPersistenceActivator.cpp index bdbce419439..218c4c5a54f 100644 --- a/Modules/Persistence/mitkPersistenceActivator.cpp +++ b/Modules/Persistence/mitkPersistenceActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPersistenceActivator.h" diff --git a/Modules/Persistence/mitkPersistenceActivator.h b/Modules/Persistence/mitkPersistenceActivator.h index 184c7ae37b2..7c4c9e51a65 100644 --- a/Modules/Persistence/mitkPersistenceActivator.h +++ b/Modules/Persistence/mitkPersistenceActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPersistenceActivator_h #define mitkPersistenceActivator_h diff --git a/Modules/Persistence/mitkPersistenceService.cpp b/Modules/Persistence/mitkPersistenceService.cpp index a0a1aa4eaae..3ab41a8a55e 100644 --- a/Modules/Persistence/mitkPersistenceService.cpp +++ b/Modules/Persistence/mitkPersistenceService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPersistenceService.h" #include "mitkNodePredicateProperty.h" #include "mitkProperties.h" diff --git a/Modules/Persistence/mitkPersistenceService.h b/Modules/Persistence/mitkPersistenceService.h index 1b668f5b9a0..d24896b94d3 100644 --- a/Modules/Persistence/mitkPersistenceService.h +++ b/Modules/Persistence/mitkPersistenceService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPersistenceService_h #define mitkPersistenceService_h diff --git a/Modules/Persistence/mitkPropertyListsXmlFileReaderAndWriter.cpp b/Modules/Persistence/mitkPropertyListsXmlFileReaderAndWriter.cpp index 2633962eb91..d21581e8bf2 100644 --- a/Modules/Persistence/mitkPropertyListsXmlFileReaderAndWriter.cpp +++ b/Modules/Persistence/mitkPropertyListsXmlFileReaderAndWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyListsXmlFileReaderAndWriter.h" #include "mitkProperties.h" diff --git a/Modules/Persistence/mitkPropertyListsXmlFileReaderAndWriter.h b/Modules/Persistence/mitkPropertyListsXmlFileReaderAndWriter.h index ba2471de4b1..ef129a9eb07 100644 --- a/Modules/Persistence/mitkPropertyListsXmlFileReaderAndWriter.h +++ b/Modules/Persistence/mitkPropertyListsXmlFileReaderAndWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkXmlSceneIO_h_included #define mitkXmlSceneIO_h_included diff --git a/Modules/Pharmacokinetics/autoload/Models/mitkPharmacokineticModelsActivator.cpp b/Modules/Pharmacokinetics/autoload/Models/mitkPharmacokineticModelsActivator.cpp index 0c503b5eafd..26ea2d05216 100644 --- a/Modules/Pharmacokinetics/autoload/Models/mitkPharmacokineticModelsActivator.cpp +++ b/Modules/Pharmacokinetics/autoload/Models/mitkPharmacokineticModelsActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Pharmacokinetics/cmdapps/CurveDescriptorMiniApp.cpp b/Modules/Pharmacokinetics/cmdapps/CurveDescriptorMiniApp.cpp index 6f7f12d07b5..dd52eec7f82 100644 --- a/Modules/Pharmacokinetics/cmdapps/CurveDescriptorMiniApp.cpp +++ b/Modules/Pharmacokinetics/cmdapps/CurveDescriptorMiniApp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // std includes #include @@ -173,7 +169,7 @@ void doPreview() auto pNames = functor->GetDescriptionParameterNames(); for (auto aName : pNames) - { + { auto fullPath = mitk::generateModelFitResultImagePath(outFileName, aName); std::cout << "Store result parameter: " << aName << " -> " << fullPath << std::endl; } diff --git a/Modules/Pharmacokinetics/cmdapps/MRPerfusionMiniApp.cpp b/Modules/Pharmacokinetics/cmdapps/MRPerfusionMiniApp.cpp index ce75934ca33..6ebefbef874 100644 --- a/Modules/Pharmacokinetics/cmdapps/MRPerfusionMiniApp.cpp +++ b/Modules/Pharmacokinetics/cmdapps/MRPerfusionMiniApp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // std includes #include @@ -655,7 +651,7 @@ void storeResultImage(const std::string& name, mitk::Image* image, mitk::modelFi dir = itksys::SystemTools::ConvertToOutputPath(dir); std::string rootName = itksys::SystemTools::GetFilenameWithoutLastExtension(outFileName); - + std::string fileName = rootName + "_" + name + ext; std::vector pathElements; diff --git a/Modules/Pharmacokinetics/cmdapps/MRSignal2ConcentrationMiniApp.cpp b/Modules/Pharmacokinetics/cmdapps/MRSignal2ConcentrationMiniApp.cpp index 1ae77b683dd..60a0b67c803 100644 --- a/Modules/Pharmacokinetics/cmdapps/MRSignal2ConcentrationMiniApp.cpp +++ b/Modules/Pharmacokinetics/cmdapps/MRSignal2ConcentrationMiniApp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // std includes #include diff --git a/Modules/Pharmacokinetics/include/mitkAIFBasedModelBase.h b/Modules/Pharmacokinetics/include/mitkAIFBasedModelBase.h index 0e01330a481..61d7004488f 100644 --- a/Modules/Pharmacokinetics/include/mitkAIFBasedModelBase.h +++ b/Modules/Pharmacokinetics/include/mitkAIFBasedModelBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef AIFBASEDMODELBASE_H #define AIFBASEDMODELBASE_H diff --git a/Modules/Pharmacokinetics/include/mitkAIFBasedModelParameterizerBase.h b/Modules/Pharmacokinetics/include/mitkAIFBasedModelParameterizerBase.h index 0f843b2ebcd..f27bc8bfa8e 100644 --- a/Modules/Pharmacokinetics/include/mitkAIFBasedModelParameterizerBase.h +++ b/Modules/Pharmacokinetics/include/mitkAIFBasedModelParameterizerBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __AIFBASED_MODEL_PARAMETERIZER_BASE_H #define __AIFBASED_MODEL_PARAMETERIZER_BASE_H diff --git a/Modules/Pharmacokinetics/include/mitkAIFParametrizerHelper.h b/Modules/Pharmacokinetics/include/mitkAIFParametrizerHelper.h index 41060645443..84118813500 100644 --- a/Modules/Pharmacokinetics/include/mitkAIFParametrizerHelper.h +++ b/Modules/Pharmacokinetics/include/mitkAIFParametrizerHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_AIF_PARAMETERIZER_HELPER_H_ #define __MITK_AIF_PARAMETERIZER_HELPER_H_ diff --git a/Modules/Pharmacokinetics/include/mitkAreaUnderFirstMomentDescriptionParameter.h b/Modules/Pharmacokinetics/include/mitkAreaUnderFirstMomentDescriptionParameter.h index 5967386baa1..6a4d99d42e8 100644 --- a/Modules/Pharmacokinetics/include/mitkAreaUnderFirstMomentDescriptionParameter.h +++ b/Modules/Pharmacokinetics/include/mitkAreaUnderFirstMomentDescriptionParameter.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKAREAUNDERFIRSTMOMENTDESCRIPTIONPARAMETER_H #define MITKAREAUNDERFIRSTMOMENTDESCRIPTIONPARAMETER_H diff --git a/Modules/Pharmacokinetics/include/mitkAreaUnderTheCurveDescriptionParameter.h b/Modules/Pharmacokinetics/include/mitkAreaUnderTheCurveDescriptionParameter.h index 14f0198624e..66d84cda0a9 100644 --- a/Modules/Pharmacokinetics/include/mitkAreaUnderTheCurveDescriptionParameter.h +++ b/Modules/Pharmacokinetics/include/mitkAreaUnderTheCurveDescriptionParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKAREAUNDERTHECURVEDESCRIPTIONPARAMETER_H #define MITKAREAUNDERTHECURVEDESCRIPTIONPARAMETER_H diff --git a/Modules/Pharmacokinetics/include/mitkAterialInputFunctionGenerator.h b/Modules/Pharmacokinetics/include/mitkAterialInputFunctionGenerator.h index 4e5fb41c3bc..9f1acd75ac3 100644 --- a/Modules/Pharmacokinetics/include/mitkAterialInputFunctionGenerator.h +++ b/Modules/Pharmacokinetics/include/mitkAterialInputFunctionGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef ATERIALINPUTFUNCTIONGENERATOR_H #define ATERIALINPUTFUNCTIONGENERATOR_H diff --git a/Modules/Pharmacokinetics/include/mitkConcentrationCurveGenerator.h b/Modules/Pharmacokinetics/include/mitkConcentrationCurveGenerator.h index f387543b4b2..80c68c0a6b9 100644 --- a/Modules/Pharmacokinetics/include/mitkConcentrationCurveGenerator.h +++ b/Modules/Pharmacokinetics/include/mitkConcentrationCurveGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CONCENTRATIONCURVEGENERATOR_H #define CONCENTRATIONCURVEGENERATOR_H diff --git a/Modules/Pharmacokinetics/include/mitkConcreteAIFBasedModelFactory.h b/Modules/Pharmacokinetics/include/mitkConcreteAIFBasedModelFactory.h index 9d930f12307..9721e26f3e5 100644 --- a/Modules/Pharmacokinetics/include/mitkConcreteAIFBasedModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkConcreteAIFBasedModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CONCRETE_AIF_BASED_MODEL_FACTORY_H #define MITK_CONCRETE_AIF_BASED_MODEL_FACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkConvertT2ConcentrationFunctor.h b/Modules/Pharmacokinetics/include/mitkConvertT2ConcentrationFunctor.h index 71034c09a6a..5cd540cb94c 100644 --- a/Modules/Pharmacokinetics/include/mitkConvertT2ConcentrationFunctor.h +++ b/Modules/Pharmacokinetics/include/mitkConvertT2ConcentrationFunctor.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKCONVERTT2CONCENTRATIONFUNCTOR #define MITKCONVERTT2CONCENTRATIONFUNCTOR diff --git a/Modules/Pharmacokinetics/include/mitkConvertToConcentrationAbsoluteFunctor.h b/Modules/Pharmacokinetics/include/mitkConvertToConcentrationAbsoluteFunctor.h index 45913358c07..ddc82493cc9 100644 --- a/Modules/Pharmacokinetics/include/mitkConvertToConcentrationAbsoluteFunctor.h +++ b/Modules/Pharmacokinetics/include/mitkConvertToConcentrationAbsoluteFunctor.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkConvertToConcentrationAbsoluteFunctor_h #define mitkConvertToConcentrationAbsoluteFunctor_h diff --git a/Modules/Pharmacokinetics/include/mitkConvertToConcentrationRelativeFunctor.h b/Modules/Pharmacokinetics/include/mitkConvertToConcentrationRelativeFunctor.h index 0958364b644..8030c21cabe 100644 --- a/Modules/Pharmacokinetics/include/mitkConvertToConcentrationRelativeFunctor.h +++ b/Modules/Pharmacokinetics/include/mitkConvertToConcentrationRelativeFunctor.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef mitkConvertToConcentrationRelativeFunctor_h #define mitkConvertToConcentrationRelativeFunctor_h diff --git a/Modules/Pharmacokinetics/include/mitkConvertToConcentrationTurboFlashFunctor.h b/Modules/Pharmacokinetics/include/mitkConvertToConcentrationTurboFlashFunctor.h index 599bc3a4dc7..d1c1fa7f754 100644 --- a/Modules/Pharmacokinetics/include/mitkConvertToConcentrationTurboFlashFunctor.h +++ b/Modules/Pharmacokinetics/include/mitkConvertToConcentrationTurboFlashFunctor.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKCONVERTTOCONCENTRATIONTURBOFLASCHFUNCTOR_H #define MITKCONVERTTOCONCENTRATIONTURBOFLASCHFUNCTOR_H diff --git a/Modules/Pharmacokinetics/include/mitkConvertToConcentrationViaT1Functor.h b/Modules/Pharmacokinetics/include/mitkConvertToConcentrationViaT1Functor.h index 780d6b704d7..bc19645d861 100644 --- a/Modules/Pharmacokinetics/include/mitkConvertToConcentrationViaT1Functor.h +++ b/Modules/Pharmacokinetics/include/mitkConvertToConcentrationViaT1Functor.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKCONVERTTOCONCENTRATIONVIAT1CALCFUNCTOR_H #define MITKCONVERTTOCONCENTRATIONVIAT1CALCFUNCTOR_H @@ -17,12 +29,12 @@ namespace mitk { void initialize(double relaxivity, double TR, double flipangle) { - + m_relaxivity = relaxivity; m_TR = TR; m_flipangle = flipangle; } - + bool operator!=( const ConvertToConcentrationViaT1CalcFunctor & other) const { return !(*this == other); @@ -32,7 +44,7 @@ namespace mitk { { return (this->m_relaxivity == other.m_relaxivity) && (this->m_TR == other.m_TR) && (this->m_flipangle == other.m_flipangle); } - + inline TOutputpixel operator()( const TInputPixel1 & value, const TInputPixel2 & baseline, const TInputPixel3 & nativeT1) { diff --git a/Modules/Pharmacokinetics/include/mitkConvolutionHelper.h b/Modules/Pharmacokinetics/include/mitkConvolutionHelper.h index 5d48327f173..86b1538d1da 100644 --- a/Modules/Pharmacokinetics/include/mitkConvolutionHelper.h +++ b/Modules/Pharmacokinetics/include/mitkConvolutionHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkConvolutionHelper_h #define mitkConvolutionHelper_h diff --git a/Modules/Pharmacokinetics/include/mitkCurveDescriptionParameterBase.h b/Modules/Pharmacokinetics/include/mitkCurveDescriptionParameterBase.h index de3ddcebb82..2bbbb63f3a4 100644 --- a/Modules/Pharmacokinetics/include/mitkCurveDescriptionParameterBase.h +++ b/Modules/Pharmacokinetics/include/mitkCurveDescriptionParameterBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CURVEDESCRIPTIONPARAMETERBASE_H #define CURVEDESCRIPTIONPARAMETERBASE_H @@ -72,7 +68,7 @@ class MITKPHARMACOKINETICS_EXPORT CurveDescriptionParameterBase : public itk::Ob //No copy constructor allowed CurveDescriptionParameterBase(const Self& source); - void operator=(const Self&); //purposely not implemented + void operator=(const Self&); //purposely not implemented }; } diff --git a/Modules/Pharmacokinetics/include/mitkCurveParameterFunctor.h b/Modules/Pharmacokinetics/include/mitkCurveParameterFunctor.h index 7393052ed67..753b58da9e2 100644 --- a/Modules/Pharmacokinetics/include/mitkCurveParameterFunctor.h +++ b/Modules/Pharmacokinetics/include/mitkCurveParameterFunctor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CURVE_PARAMETER_FUNCTOR_H #define CURVE_PARAMETER_FUNCTOR_H diff --git a/Modules/Pharmacokinetics/include/mitkDescriptionParameterImageGeneratorBase.h b/Modules/Pharmacokinetics/include/mitkDescriptionParameterImageGeneratorBase.h index 3898223f734..4ec0c3e8dcd 100644 --- a/Modules/Pharmacokinetics/include/mitkDescriptionParameterImageGeneratorBase.h +++ b/Modules/Pharmacokinetics/include/mitkDescriptionParameterImageGeneratorBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_DESCRIPTION_PARAMETER_IMAGE_GENERATOR_BASE_H_ #define __MITK_DESCRIPTION_PARAMETER_IMAGE_GENERATOR_BASE_H_ diff --git a/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModel.h b/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModel.h index 24076cc3d1e..98c05fd3e8a 100644 --- a/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModel.h +++ b/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef DESCRIPTIVEPHARMACOKINETICBRIXMODEL_H #define DESCRIPTIVEPHARMACOKINETICBRIXMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelFactory.h b/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelFactory.h index d3374cc6a3f..f812098bb7a 100644 --- a/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __DESCRIPTIVEPHARMACOKINETICBRIXMODEL_FACTORY_H #define __DESCRIPTIVEPHARMACOKINETICBRIXMODEL_FACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelParameterizer.h index dafd35ec94c..d6ce36e6011 100644 --- a/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __DESCRIPTIVEPHARMACOKINETICBRIXMODEL_PARAMETERIZER_H #define __DESCRIPTIVEPHARMACOKINETICBRIXMODEL_PARAMETERIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelValueBasedParameterizer.h b/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelValueBasedParameterizer.h index 8b47cfe3727..683e7f055fb 100644 --- a/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelValueBasedParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkDescriptivePharmacokineticBrixModelValueBasedParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __DESCRIPTIVEPHARMACOKINETICBRIXMODEL_VALUEBASED_PARAMETERIZER_H #define __DESCRIPTIVEPHARMACOKINETICBRIXMODEL_VALUEBASED_PARAMETERIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModel.h b/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModel.h index 0ea15bc50e4..6c8ea02f224 100644 --- a/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModel.h +++ b/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModel.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKEXTENDEDONETISSUECOMPARTMENTMODEL_H #define MITKEXTENDEDONETISSUECOMPARTMENTMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModelFactory.h b/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModelFactory.h index 650546078a3..c53bdb8a5d8 100644 --- a/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEXTENDEDONETISSUECOMPARTMENTMODELFACTORY_H #define MITKEXTENDEDONETISSUECOMPARTMENTMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModelParameterizer.h index d943d1bfe70..34b717d9ac0 100644 --- a/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkExtendedOneTissueCompartmentModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEXTENDEDONETISSUECOMPARTMENTMODELPARAME_H #define MITKEXTENDEDONETISSUECOMPARTMENTMODELPARAME_H diff --git a/Modules/Pharmacokinetics/include/mitkExtendedToftsModel.h b/Modules/Pharmacokinetics/include/mitkExtendedToftsModel.h index e95c6900fd4..d6b9bcd07fc 100644 --- a/Modules/Pharmacokinetics/include/mitkExtendedToftsModel.h +++ b/Modules/Pharmacokinetics/include/mitkExtendedToftsModel.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKEXTENDEDTOFTSMODEL_H #define MITKEXTENDEDTOFTSMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkExtendedToftsModelFactory.h b/Modules/Pharmacokinetics/include/mitkExtendedToftsModelFactory.h index 420fb741dbd..d6583d27b99 100644 --- a/Modules/Pharmacokinetics/include/mitkExtendedToftsModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkExtendedToftsModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEXTENDEDTOFTSMODELFACTORY_H #define MITKEXTENDEDTOFTSMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkExtendedToftsModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkExtendedToftsModelParameterizer.h index d42d1f75e52..23fe66b4db7 100644 --- a/Modules/Pharmacokinetics/include/mitkExtendedToftsModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkExtendedToftsModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEXTENDEDTOFTSMODELPARAMETRIZER_H #define MITKEXTENDEDTOFTSMODELPARAMETRIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkImageGenerationHelper.h b/Modules/Pharmacokinetics/include/mitkImageGenerationHelper.h index f7cafdc9a0d..7425b2cc620 100644 --- a/Modules/Pharmacokinetics/include/mitkImageGenerationHelper.h +++ b/Modules/Pharmacokinetics/include/mitkImageGenerationHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MITK_IMAGEGENERATIONHELPER_H #define __MITK_IMAGEGENERATIONHELPER_H diff --git a/Modules/Pharmacokinetics/include/mitkMaximumCurveDescriptionParameter.h b/Modules/Pharmacokinetics/include/mitkMaximumCurveDescriptionParameter.h index 2c591b91400..61a1c7dfaad 100644 --- a/Modules/Pharmacokinetics/include/mitkMaximumCurveDescriptionParameter.h +++ b/Modules/Pharmacokinetics/include/mitkMaximumCurveDescriptionParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMAXIMUMCURVEDESCRIPTIONPARAMETER_H #define MITKMAXIMUMCURVEDESCRIPTIONPARAMETER_H diff --git a/Modules/Pharmacokinetics/include/mitkMeanResidenceTimeDescriptionParameter.h b/Modules/Pharmacokinetics/include/mitkMeanResidenceTimeDescriptionParameter.h index 967a2af3c3b..59388246806 100644 --- a/Modules/Pharmacokinetics/include/mitkMeanResidenceTimeDescriptionParameter.h +++ b/Modules/Pharmacokinetics/include/mitkMeanResidenceTimeDescriptionParameter.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MEANRESIDENCETIMEDESCRIPTIONPARAMETER_H #define MEANRESIDENCETIMEDESCRIPTIONPARAMETER_H diff --git a/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModel.h b/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModel.h index 9b9a70bd052..6e58a6ac4b6 100644 --- a/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModel.h +++ b/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModel.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKNUMERICTWOCOMPARTMENTEXCHANGEMODEL_H #define MITKNUMERICTWOCOMPARTMENTEXCHANGEMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModelFactory.h b/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModelFactory.h index c4cf27b0d1a..aebba9ae763 100644 --- a/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNUMERICTWOCOMPARTMENTEXCHANGEMODELFACTORY_H #define MITKNUMERICTWOCOMPARTMENTEXCHANGEMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModelParameterizer.h index 185ff245a03..e6d42c586b5 100644 --- a/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkNumericTwoCompartmentExchangeModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNUMERICTWOCOMPARTMENTEXCHANGEMODELPARAMETRIZER_H #define MITKNUMERICTWOCOMPARTMENTEXCHANGEMODELPARAMETRIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModel.h b/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModel.h index bb8776a3fa7..ef9e30d44d0 100644 --- a/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModel.h +++ b/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNUMERICTWOTISSUECOMPARTMENTMODEL_H #define MITKNUMERICTWOTISSUECOMPARTMENTMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModelFactory.h b/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModelFactory.h index 3916b76b6cc..94c0baa6716 100644 --- a/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNUMERICTWOTISSUECOMPARTMENTMODELFACTORY_H #define MITKNUMERICTWOTISSUECOMPARTMENTMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModelParameterizer.h index d49e13d20f7..8e811c93495 100644 --- a/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkNumericTwoTissueCompartmentModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNUMERICTWOTISSUECOMPARTMENTMODELPARAMETERIZER_H #define MITKNUMERICTWOTISSUECOMPARTMENTMODELPARAMETERIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModel.h b/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModel.h index 5f2de1e05b1..aa1b2c21aff 100644 --- a/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModel.h +++ b/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModel.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKONETISSUECOMPARTMENTMODEL_H #define MITKONETISSUECOMPARTMENTMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModelFactory.h b/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModelFactory.h index 2bbb6c09168..dfe6ed8980f 100644 --- a/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKONETISSUECOMPARTMENTMODELFACTORY_H #define MITKONETISSUECOMPARTMENTMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModelParameterizer.h index 05d74185a92..a10043c14b8 100644 --- a/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkOneTissueCompartmentModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKONETISSUECOMPARTMENTMODELPARAMETRIZER_H #define MITKONETISSUECOMPARTMENTMODELPARAMETRIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkPixelBasedDescriptionParameterImageGenerator.h b/Modules/Pharmacokinetics/include/mitkPixelBasedDescriptionParameterImageGenerator.h index ea9f479fa40..1b6a232a49f 100644 --- a/Modules/Pharmacokinetics/include/mitkPixelBasedDescriptionParameterImageGenerator.h +++ b/Modules/Pharmacokinetics/include/mitkPixelBasedDescriptionParameterImageGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef __MITK_PIXEL_BASED_DESCRIPTION_PARAMETER_IMAGE_GENERATOR_H_ #define __MITK_PIXEL_BASED_DESCRIPTION_PARAMETER_IMAGE_GENERATOR_H_ diff --git a/Modules/Pharmacokinetics/include/mitkStandardToftsModel.h b/Modules/Pharmacokinetics/include/mitkStandardToftsModel.h index 07d0839d929..17ed1db64fa 100644 --- a/Modules/Pharmacokinetics/include/mitkStandardToftsModel.h +++ b/Modules/Pharmacokinetics/include/mitkStandardToftsModel.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKSTANDARDTOFTSMODEL_H #define MITKSTANDARDTOFTSMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkStandardToftsModelFactory.h b/Modules/Pharmacokinetics/include/mitkStandardToftsModelFactory.h index 6637c629fc0..ef6b855a826 100644 --- a/Modules/Pharmacokinetics/include/mitkStandardToftsModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkStandardToftsModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSTANDARDTOFTSMODELFACTORY_H #define MITKSTANDARDTOFTSMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkStandardToftsModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkStandardToftsModelParameterizer.h index 9c172097353..02f74f3ea39 100644 --- a/Modules/Pharmacokinetics/include/mitkStandardToftsModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkStandardToftsModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSTANDARDTOFTSMODELPARAMETRIZER_H #define MITKSTANDARDTOFTSMODELPARAMETRIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkThreeStepLinearModel.h b/Modules/Pharmacokinetics/include/mitkThreeStepLinearModel.h index bd314c23d78..4d600d23fba 100644 --- a/Modules/Pharmacokinetics/include/mitkThreeStepLinearModel.h +++ b/Modules/Pharmacokinetics/include/mitkThreeStepLinearModel.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKTHREESTEPLINEARMODEL_H #define MITKTHREESTEPLINEARMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkThreeStepLinearModelFactory.h b/Modules/Pharmacokinetics/include/mitkThreeStepLinearModelFactory.h index 7c561c16ca6..3afac16ab1b 100644 --- a/Modules/Pharmacokinetics/include/mitkThreeStepLinearModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkThreeStepLinearModelFactory.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef MITKTHREESTEPLINEARMODELFACTORY_H #define MITKTHREESTEPLINEARMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkThreeStepLinearModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkThreeStepLinearModelParameterizer.h index 2ee429a2926..c5ec6f21f10 100644 --- a/Modules/Pharmacokinetics/include/mitkThreeStepLinearModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkThreeStepLinearModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTHREESTEPLINEARMODELPARAMETERIZER_H #define MITKTHREESTEPLINEARMODELPARAMETERIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkTimeToPeakCurveDescriptionParameter.h b/Modules/Pharmacokinetics/include/mitkTimeToPeakCurveDescriptionParameter.h index d9b488e6ea1..73fafb92430 100644 --- a/Modules/Pharmacokinetics/include/mitkTimeToPeakCurveDescriptionParameter.h +++ b/Modules/Pharmacokinetics/include/mitkTimeToPeakCurveDescriptionParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTIMETOPEAKCURVEDESCRIPTIONPARAMETER_H #define MITKTIMETOPEAKCURVEDESCRIPTIONPARAMETER_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModel.h b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModel.h index 89e40f11f21..1781c9bd5dd 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModel.h +++ b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOCOMPARTMENTEXCHANGEMODEL_H #define MITKTWOCOMPARTMENTEXCHANGEMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelDifferentialEquations.h b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelDifferentialEquations.h index 39fc35a1e71..7343329d996 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelDifferentialEquations.h +++ b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelDifferentialEquations.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOCOMPARTMENTEXCHANGEMODELDIFFERENTIALEQUATIONS_H #define MITKTWOCOMPARTMENTEXCHANGEMODELDIFFERENTIALEQUATIONS_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelFactory.h b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelFactory.h index 0fb22052858..e4d56090f23 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOCOMPARTMENTEXCHANGEMODELFACTORY_H #define MITKTWOCOMPARTMENTEXCHANGEMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelFactoryBase.h b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelFactoryBase.h index 92f40dda11d..baeb2613402 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelFactoryBase.h +++ b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelFactoryBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOCOMPARTMENTEXCHANGEMODELFACTORYBASE_H #define MITKTWOCOMPARTMENTEXCHANGEMODELFACTORYBASE_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelParameterizer.h index fdd0d1cf724..2d346250e21 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkTwoCompartmentExchangeModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOCOMPARTMENTEXCHANGEMODELPARAMETRIZER_H #define MITKTWOCOMPARTMENTEXCHANGEMODELPARAMETRIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModel.h b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModel.h index 6088088639d..ad11c269cf2 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModel.h +++ b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOTISSUECOMPARTMENTFDGMODEL_H #define MITKTWOTISSUECOMPARTMENTFDGMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModelFactory.h b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModelFactory.h index bcc0ffeef6b..c8b4f9bf71e 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOTISSUECOMPARTMENTFDGMODELFACTORY_H #define MITKTWOTISSUECOMPARTMENTFDGMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModelParameterizer.h index 8bb692ab1d8..e7d9d4c319b 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentFDGModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOTISSUECOMPARTMENTFDGMODELPARAMETERIZER_H #define MITKTWOTISSUECOMPARTMENTFDGMODELPARAMETERIZER_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModel.h b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModel.h index 6d5e44e99a9..e21bbe63602 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModel.h +++ b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOTISSUECOMPARTMENTMODEL_H #define MITKTWOTISSUECOMPARTMENTMODEL_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelDifferentialEquations.h b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelDifferentialEquations.h index 57523174528..2defda6befb 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelDifferentialEquations.h +++ b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelDifferentialEquations.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOTISSUECOMPARTMENTMODELDIFFERENTIALEQUATIONS_H #define MITKTWOTISSUECOMPARTMENTMODELDIFFERENTIALEQUATIONS_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelFactory.h b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelFactory.h index 793baa41e8b..745503d1d7b 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelFactory.h +++ b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOTISSUECOMPARTMENTMODELFACTORY_H #define MITKTWOTISSUECOMPARTMENTMODELFACTORY_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelFactoryBase.h b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelFactoryBase.h index f91c22f1b27..fe8a4bf0290 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelFactoryBase.h +++ b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelFactoryBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOTISSUECOMPARTMENTFACTORYBASE_H #define MITKTWOTISSUECOMPARTMENTFACTORYBASE_H diff --git a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelParameterizer.h b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelParameterizer.h index f7b2a79fce5..e8f571e6f74 100644 --- a/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelParameterizer.h +++ b/Modules/Pharmacokinetics/include/mitkTwoTissueCompartmentModelParameterizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTWOTISSUECOMPARTMENTMODELPARAMETERIZER_H #define MITKTWOTISSUECOMPARTMENTMODELPARAMETERIZER_H diff --git a/Modules/Pharmacokinetics/src/Common/mitkAIFParametrizerHelper.cpp b/Modules/Pharmacokinetics/src/Common/mitkAIFParametrizerHelper.cpp index 9d0b924691d..3364ea01deb 100644 --- a/Modules/Pharmacokinetics/src/Common/mitkAIFParametrizerHelper.cpp +++ b/Modules/Pharmacokinetics/src/Common/mitkAIFParametrizerHelper.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkAIFParametrizerHelper.h" mitk::ModelBase::StaticParameterValuesType mitk::convertArrayToParameter(itk::Array array) diff --git a/Modules/Pharmacokinetics/src/Common/mitkAterialInputFunctionGenerator.cpp b/Modules/Pharmacokinetics/src/Common/mitkAterialInputFunctionGenerator.cpp index c0a2065d781..94b3d86db14 100644 --- a/Modules/Pharmacokinetics/src/Common/mitkAterialInputFunctionGenerator.cpp +++ b/Modules/Pharmacokinetics/src/Common/mitkAterialInputFunctionGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkAterialInputFunctionGenerator.h" diff --git a/Modules/Pharmacokinetics/src/Common/mitkConcentrationCurveGenerator.cpp b/Modules/Pharmacokinetics/src/Common/mitkConcentrationCurveGenerator.cpp index 8ded94876dd..49f50813446 100644 --- a/Modules/Pharmacokinetics/src/Common/mitkConcentrationCurveGenerator.cpp +++ b/Modules/Pharmacokinetics/src/Common/mitkConcentrationCurveGenerator.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkConcentrationCurveGenerator.h" #include "mitkConvertToConcentrationTurboFlashFunctor.h" #include "mitkConvertT2ConcentrationFunctor.h" @@ -13,9 +25,9 @@ #include "itkBinaryFunctorImageFilter.h" #include "itkTernaryFunctorImageFilter.h" -mitk::ConcentrationCurveGenerator::ConcentrationCurveGenerator() : m_isT2weightedImage(false), m_isTurboFlashSequence(false), +mitk::ConcentrationCurveGenerator::ConcentrationCurveGenerator() : m_isT2weightedImage(false), m_isTurboFlashSequence(false), m_AbsoluteSignalEnhancement(false), m_RelativeSignalEnhancement(0.0), m_UsingT1Map(false), m_Factor(0.0), m_RecoveryTime(0.0), m_RelaxationTime(0.0), - m_Relaxivity(0.0), m_FlipAngle(0.0), m_T2Factor(0.0), m_T2EchoTime(0.0) + m_Relaxivity(0.0), m_FlipAngle(0.0), m_T2Factor(0.0), m_T2EchoTime(0.0) { } diff --git a/Modules/Pharmacokinetics/src/Common/mitkDescriptionParameterImageGeneratorBase.cpp b/Modules/Pharmacokinetics/src/Common/mitkDescriptionParameterImageGeneratorBase.cpp index 831b736f3cf..b352a5259cb 100644 --- a/Modules/Pharmacokinetics/src/Common/mitkDescriptionParameterImageGeneratorBase.cpp +++ b/Modules/Pharmacokinetics/src/Common/mitkDescriptionParameterImageGeneratorBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDescriptionParameterImageGeneratorBase.h" diff --git a/Modules/Pharmacokinetics/src/Common/mitkPixelBasedDescriptionParameterImageGenerator.cpp b/Modules/Pharmacokinetics/src/Common/mitkPixelBasedDescriptionParameterImageGenerator.cpp index f8aed403d1d..287ca01c4a0 100644 --- a/Modules/Pharmacokinetics/src/Common/mitkPixelBasedDescriptionParameterImageGenerator.cpp +++ b/Modules/Pharmacokinetics/src/Common/mitkPixelBasedDescriptionParameterImageGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkCommand.h" #include "itkMultiOutputNaryFunctorImageFilter.h" @@ -38,7 +34,7 @@ void }; template -void +void mitk::PixelBasedDescriptionParameterImageGenerator::DoPrepareMask(itk::Image* image) { m_InternalMask = dynamic_cast(image); @@ -79,7 +75,7 @@ mitk::PixelBasedDescriptionParameterImageGenerator::ParameterImageMapType StoreR } template -void +void mitk::PixelBasedDescriptionParameterImageGenerator::DoParameterCalculation(itk::Image* /*image*/) { typedef itk::Image InputFrameImageType; diff --git a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkAreaUnderFirstMomentDescriptionParameter.cpp b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkAreaUnderFirstMomentDescriptionParameter.cpp index 36bda034e8b..b6bea643efb 100644 --- a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkAreaUnderFirstMomentDescriptionParameter.cpp +++ b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkAreaUnderFirstMomentDescriptionParameter.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkAreaUnderFirstMomentDescriptionParameter.h" const std::string mitk::AreaUnderFirstMomentDescriptionParameter::PARAMETER_NAME = "AreaUnderFirstMoment"; diff --git a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkAreaUnderTheCurveDescriptionParameter.cpp b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkAreaUnderTheCurveDescriptionParameter.cpp index 916f0f59a0d..e7e1a403514 100644 --- a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkAreaUnderTheCurveDescriptionParameter.cpp +++ b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkAreaUnderTheCurveDescriptionParameter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAreaUnderTheCurveDescriptionParameter.h" diff --git a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkCurveDescriptionParameterBase.cpp b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkCurveDescriptionParameterBase.cpp index 7b0c29cbf56..e68396f526d 100644 --- a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkCurveDescriptionParameterBase.cpp +++ b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkCurveDescriptionParameterBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCurveDescriptionParameterBase.h" #include "itkMacro.h" diff --git a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkMaximumCurveDescriptionParameter.cpp b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkMaximumCurveDescriptionParameter.cpp index aed8579d5dc..03b17c7f4ba 100644 --- a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkMaximumCurveDescriptionParameter.cpp +++ b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkMaximumCurveDescriptionParameter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMaximumCurveDescriptionParameter.h" #include diff --git a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkMeanResidenceTimeDescriptionParameter.cpp b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkMeanResidenceTimeDescriptionParameter.cpp index e6ea3fa38ad..d1edcc2092f 100644 --- a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkMeanResidenceTimeDescriptionParameter.cpp +++ b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkMeanResidenceTimeDescriptionParameter.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkMeanResidenceTimeDescriptionParameter.h" const std::string mitk::MeanResidenceTimeDescriptionParameter::PARAMETER_NAME = "MeanResidenceTime"; diff --git a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkTimeToPeakCurveDescriptionParameter.cpp b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkTimeToPeakCurveDescriptionParameter.cpp index 214581c0d76..a957993f1b3 100644 --- a/Modules/Pharmacokinetics/src/DescriptionParameters/mitkTimeToPeakCurveDescriptionParameter.cpp +++ b/Modules/Pharmacokinetics/src/DescriptionParameters/mitkTimeToPeakCurveDescriptionParameter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTimeToPeakCurveDescriptionParameter.h" diff --git a/Modules/Pharmacokinetics/src/Functors/mitkCurveParameterFunctor.cpp b/Modules/Pharmacokinetics/src/Functors/mitkCurveParameterFunctor.cpp index ea886097a28..4a61df24463 100644 --- a/Modules/Pharmacokinetics/src/Functors/mitkCurveParameterFunctor.cpp +++ b/Modules/Pharmacokinetics/src/Functors/mitkCurveParameterFunctor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCurveParameterFunctor.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkAIFBasedModelBase.cpp b/Modules/Pharmacokinetics/src/Models/mitkAIFBasedModelBase.cpp index 374a81ca1ca..b746b38fec0 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkAIFBasedModelBase.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkAIFBasedModelBase.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkAIFBasedModelBase.h" #include "mitkTimeGridHelper.h" #include "mitkAIFParametrizerHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModel.cpp index 388f47d1f67..6e43f11d5b3 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDescriptivePharmacokineticBrixModel.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelFactory.cpp index 4b6fffe0f86..906a9bc9099 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -91,4 +87,4 @@ mitk::DescriptivePharmacokineticBrixModelFactory::DoCreateParameterizer( } return result; -}; \ No newline at end of file +}; diff --git a/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelParameterizer.cpp index ac5a5ec38b2..9ca922d049b 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelValueBasedParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelValueBasedParameterizer.cpp index 29966f39429..da6f2a4acd5 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelValueBasedParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkDescriptivePharmacokineticBrixModelValueBasedParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModel.cpp index 12398b68800..7cfa46a0c32 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtendedOneTissueCompartmentModel.h" #include "mitkConvolutionHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModelFactory.cpp index add04aae08e..d3ec6b0bdba 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModelFactory.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkExtendedOneTissueCompartmentModelFactory.h" #include diff --git a/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModelParameterizer.cpp index 37acff1b211..575ebf12d03 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkExtendedOneTissueCompartmentModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtendedOneTissueCompartmentModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModel.cpp index 0ef780a95a5..4c53a5c238a 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtendedToftsModel.h" #include "mitkConvolutionHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModelFactory.cpp index ba3c3088bc4..fabaf2bb428 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModelFactory.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkExtendedToftsModelFactory.h" #include diff --git a/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModelParameterizer.cpp index 538a643d8a9..804fbc8d603 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkExtendedToftsModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtendedToftsModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModel.cpp index 8d6fe166224..2d95cd5e577 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNumericTwoCompartmentExchangeModel.h" #include "mitkAIFParametrizerHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModelFactory.cpp index 9a80c9c2742..ef04fa136a8 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNumericTwoCompartmentExchangeModelFactory.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModelParameterizer.cpp index 40a6a83dc09..25910af578a 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoCompartmentExchangeModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNumericTwoCompartmentExchangeModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModel.cpp index 0da93c41152..bb7226a2d99 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNumericTwoTissueCompartmentModel.h" #include "mitkAIFParametrizerHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModelFactory.cpp index 446cd7dccd2..d00b9d3370d 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNumericTwoTissueCompartmentModelFactory.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModelParameterizer.cpp index 6274fe8497e..32bc61366ea 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkNumericTwoTissueCompartmentModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNumericTwoTissueCompartmentModelParameterizer.h" @@ -36,4 +32,4 @@ mitk::NumericTwoTissueCompartmentModelParameterizer::NumericTwoTissueCompartment mitk::NumericTwoTissueCompartmentModelParameterizer::~NumericTwoTissueCompartmentModelParameterizer() { -}; \ No newline at end of file +}; diff --git a/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModel.cpp index cc9b6ae026a..a4d455583eb 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOneTissueCompartmentModel.h" #include "mitkConvolutionHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModelFactory.cpp index af01348e948..b9c28d3295b 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModelFactory.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkOneTissueCompartmentModelFactory.h" #include diff --git a/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModelParameterizer.cpp index b1030c1ad1d..017db227a0c 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkOneTissueCompartmentModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOneTissueCompartmentModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModel.cpp index c8447f88a05..99600b45599 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStandardToftsModel.h" #include "mitkConvolutionHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModelFactory.cpp index 0eaf64f087f..046237e3956 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModelFactory.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkStandardToftsModelFactory.h" #include diff --git a/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModelParameterizer.cpp index b4d54e0018f..ec6c74654b2 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkStandardToftsModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkStandardToftsModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModel.cpp index 2aa4519e11f..345f5894a9b 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModel.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkThreeStepLinearModel.h" const std::string mitk::ThreeStepLinearModel::MODEL_DISPLAY_NAME = "Three Step Linear Model"; diff --git a/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModelFactory.cpp index 108fc5bb5e9..f84872d6d13 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkThreeStepLinearModelFactory.h" #include "mitkConcreteModelParameterizerBase.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModelParameterizer.cpp index 0a90d906274..ec0226fbf48 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkThreeStepLinearModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkThreeStepLinearModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModel.cpp index 32dd5d7c3f4..f59e917beda 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTwoCompartmentExchangeModel.h" #include "mitkConvolutionHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModelFactory.cpp index dd4572ebeca..643ceab16fa 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTwoCompartmentExchangeModelFactory.h" #include "mitkTwoCompartmentExchangeModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModelParameterizer.cpp index 5841e78903d..342baac6a20 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoCompartmentExchangeModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTwoCompartmentExchangeModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModel.cpp index 066b087bf9f..0e5ef41ce8c 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTwoTissueCompartmentFDGModel.h" #include "mitkConvolutionHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModelFactory.cpp index 25469d559f0..8ada9c010bf 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModelFactory.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkTwoTissueCompartmentFDGModelFactory.h" #include diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModelParameterizer.cpp index 982440c4aa8..328dfaa4d80 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentFDGModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTwoTissueCompartmentFDGModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModel.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModel.cpp index ade10da3730..b7bffd89657 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModel.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTwoTissueCompartmentModel.h" #include "mitkConvolutionHelper.h" diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModelFactory.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModelFactory.cpp index 2c5f08dc86b..621a905b482 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModelFactory.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModelFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTwoTissueCompartmentModelFactory.h" @@ -25,4 +21,4 @@ mitk::TwoTissueCompartmentModelFactory::TwoTissueCompartmentModelFactory() mitk::TwoTissueCompartmentModelFactory::~TwoTissueCompartmentModelFactory() { -}; \ No newline at end of file +}; diff --git a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModelParameterizer.cpp b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModelParameterizer.cpp index a2a187e5561..e724bb2d1e3 100644 --- a/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModelParameterizer.cpp +++ b/Modules/Pharmacokinetics/src/Models/mitkTwoTissueCompartmentModelParameterizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTwoTissueCompartmentModelParameterizer.h" diff --git a/Modules/Pharmacokinetics/src/SimulationFramework/mitkImageGenerationHelper.cpp b/Modules/Pharmacokinetics/src/SimulationFramework/mitkImageGenerationHelper.cpp index 8aacc9ac473..f828555231e 100644 --- a/Modules/Pharmacokinetics/src/SimulationFramework/mitkImageGenerationHelper.cpp +++ b/Modules/Pharmacokinetics/src/SimulationFramework/mitkImageGenerationHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageGenerationHelper.h" #include "mitkArbitraryTimeGeometry.h" diff --git a/Modules/Pharmacokinetics/test/ConvertToConcentrationTest.cpp b/Modules/Pharmacokinetics/test/ConvertToConcentrationTest.cpp index 3d824341133..2b8d8ee05da 100644 --- a/Modules/Pharmacokinetics/test/ConvertToConcentrationTest.cpp +++ b/Modules/Pharmacokinetics/test/ConvertToConcentrationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkTestingMacros.h" diff --git a/Modules/Pharmacokinetics/test/mitkDescriptivePharmacokineticBrixModelTest.cpp b/Modules/Pharmacokinetics/test/mitkDescriptivePharmacokineticBrixModelTest.cpp index fede48176f3..e6035ab22b5 100644 --- a/Modules/Pharmacokinetics/test/mitkDescriptivePharmacokineticBrixModelTest.cpp +++ b/Modules/Pharmacokinetics/test/mitkDescriptivePharmacokineticBrixModelTest.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkTestingMacros.h" #include "mitkVector.h" diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkAnalyticSignalImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkAnalyticSignalImageFilter.h index 8fa7465661a..a7662655407 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkAnalyticSignalImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkAnalyticSignalImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkAnalyticSignalImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkAnalyticSignalImageFilter.hxx index a48bcba4cb3..6f9bed01616 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkAnalyticSignalImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkAnalyticSignalImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkBModeImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkBModeImageFilter.h index e60315b51d0..baeb5c5e672 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkBModeImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkBModeImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkBModeImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkBModeImageFilter.hxx index eff78e68361..f45b42fe374 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkBModeImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkBModeImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkCurvilinearArraySpecialCoordinatesImage.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkCurvilinearArraySpecialCoordinatesImage.h index ce29acd93e7..982f0397d51 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkCurvilinearArraySpecialCoordinatesImage.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkCurvilinearArraySpecialCoordinatesImage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkCurvilinearArraySpecialCoordinatesImage.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkCurvilinearArraySpecialCoordinatesImage.hxx index b9a55c6b973..f543e172a0f 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkCurvilinearArraySpecialCoordinatesImage.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkCurvilinearArraySpecialCoordinatesImage.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexConjugateToRealImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexConjugateToRealImageFilter.h index e9a7ddebde1..c363c456f48 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexConjugateToRealImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexConjugateToRealImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexConjugateToRealImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexConjugateToRealImageFilter.hxx index 00c523fbd59..e2c87d77da8 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexConjugateToRealImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexConjugateToRealImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.h index 47ae7309beb..9c130d753e7 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.hxx index f287799e1ca..af4c9d7b1c1 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.h index 66bdc04c997..a388268a68e 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.hxx index 16c10f5477c..469f702479b 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkRegionFromReferenceImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkRegionFromReferenceImageFilter.h index 00861c67974..976f59ac767 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkRegionFromReferenceImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkRegionFromReferenceImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkRegionFromReferenceImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkRegionFromReferenceImageFilter.hxx index 463ef984eb5..277794c7f28 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkRegionFromReferenceImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkRegionFromReferenceImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DImageFilter.h index 5adb49b3965..cf23fc58bf7 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DImageFilter.hxx index e2d3e870530..7830428ef85 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowImageFilter.h index e1b2b7b9fcc..d9b0d658071 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowImageFilter.hxx index af009fd784c..1a8521fad13 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowToMaskImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowToMaskImageFilter.h index bb123136713..1132a463000 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowToMaskImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowToMaskImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowToMaskImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowToMaskImageFilter.hxx index 61c4efdaea9..165cda2b6f5 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowToMaskImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkSpectra1DSupportWindowToMaskImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkTimeGainCompensationImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkTimeGainCompensationImageFilter.h index c910f2a1034..46a5f1f0fab 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkTimeGainCompensationImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkTimeGainCompensationImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkTimeGainCompensationImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkTimeGainCompensationImageFilter.hxx index ff80d328202..c6df4bacc31 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkTimeGainCompensationImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkTimeGainCompensationImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.h index 4dca9fafe74..1ccada52227 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.hxx index 6a628451d3c..d77ad681a10 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.h index aad77540460..4fbbbd10b04 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.hxx index 31639f9780f..3ab41c2caa5 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.h index 2776a8b2aaf..1d8c15ab2db 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.hxx index 57d35327346..0d38c0d7459 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/itkPhotoacousticBModeImageFilter.h b/Modules/PhotoacousticsAlgorithms/ITKFilter/itkPhotoacousticBModeImageFilter.h index c910b55c341..00f14ab7fca 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/itkPhotoacousticBModeImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/itkPhotoacousticBModeImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium @@ -49,7 +45,7 @@ namespace itk * * \brief Create an Photoacoustic B-Mode (Brightness-Mode) image from raw * "RF" data. The RF's envelope is calculated from the analytic signal and - * logarithmic intensity transform is NOT applied. This is for now the only + * logarithmic intensity transform is NOT applied. This is for now the only * difference to the "normal" BModeImageFilter. * * Use SetDirection() to define the axis of propagation. diff --git a/Modules/PhotoacousticsAlgorithms/ITKFilter/itkPhotoacousticBModeImageFilter.hxx b/Modules/PhotoacousticsAlgorithms/ITKFilter/itkPhotoacousticBModeImageFilter.hxx index dace5c1cfc6..cf58bf31eb9 100644 --- a/Modules/PhotoacousticsAlgorithms/ITKFilter/itkPhotoacousticBModeImageFilter.hxx +++ b/Modules/PhotoacousticsAlgorithms/ITKFilter/itkPhotoacousticBModeImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/PhotoacousticsAlgorithms/MitkPABeamformingTool/PABeamformingTool.cpp b/Modules/PhotoacousticsAlgorithms/MitkPABeamformingTool/PABeamformingTool.cpp index dce06f2611b..3fe1900be7c 100644 --- a/Modules/PhotoacousticsAlgorithms/MitkPABeamformingTool/PABeamformingTool.cpp +++ b/Modules/PhotoacousticsAlgorithms/MitkPABeamformingTool/PABeamformingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsAlgorithms/MitkPAResampleCropTool/PAResampleCropTool.cpp b/Modules/PhotoacousticsAlgorithms/MitkPAResampleCropTool/PAResampleCropTool.cpp index b9942a647a1..7fef39afe0c 100644 --- a/Modules/PhotoacousticsAlgorithms/MitkPAResampleCropTool/PAResampleCropTool.cpp +++ b/Modules/PhotoacousticsAlgorithms/MitkPAResampleCropTool/PAResampleCropTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -126,7 +122,7 @@ void ParseXML(std::string xmlFile, InputParameters input, CropSettings& cropSet, for (TiXmlElement* elem = root->FirstChildElement(); elem != NULL; elem = elem->NextSiblingElement()) { std::string elemName = elem->Value(); - if (elemName == "ResampleCrop") + if (elemName == "ResampleCrop") { cropSet.dimX = std::stoi(elem->Attribute("dimX")); cropSet.dimY = std::stoi(elem->Attribute("dimY")); @@ -189,7 +185,7 @@ int main(int argc, char * argv[]) MITK_INFO(input.verbose) << "Cropping input image...[Done]"; } - + MITK_INFO(input.verbose) << "Saving image..."; mitk::IOUtil::Save(output, input.outputFilename); MITK_INFO(input.verbose) << "Saving image...[Done]"; diff --git a/Modules/PhotoacousticsAlgorithms/Resources/DAS.cl b/Modules/PhotoacousticsAlgorithms/Resources/DAS.cl index 34c70224f06..b814242b05f 100644 --- a/Modules/PhotoacousticsAlgorithms/Resources/DAS.cl +++ b/Modules/PhotoacousticsAlgorithms/Resources/DAS.cl @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ __kernel void ckDAS( __global float* dSource, // input image @@ -35,20 +31,20 @@ __kernel void ckDAS( // terminate non-valid threads if ( globalPosX < outputL && globalPosY < outputS && globalPosZ < Slices ) - { + { float l_i = (float)globalPosX / (float)outputL * (float)inputL; unsigned short curUsedLines = usedLines[globalPosY * 3 * outputL + 3 * globalPosX]; unsigned short minLine = usedLines[globalPosY * 3 * outputL + 3 * globalPosX + 1]; unsigned short maxLine = usedLines[globalPosY * 3 *outputL + 3 * globalPosX + 2]; - + float apod_mult = (float)apodArraySize / (float)curUsedLines; - + unsigned short Delay = 0; - + float output = 0; float mult = 0; - + for (short l_s = minLine; l_s < maxLine; ++l_s) { Delay = delays[globalPosY * (outputL / 2) + (int)(fabs(l_s - l_i)/(float)inputL * (float)outputL)]; @@ -58,7 +54,7 @@ __kernel void ckDAS( else --curUsedLines; } - + dDest[ globalPosZ * outputL * outputS + globalPosY * outputL + globalPosX ] = output / (float)curUsedLines; } } @@ -95,7 +91,7 @@ __kernel void ckDAS_g( float s_i = 0; float apod_mult = 1; - + float output = 0; l_p = (float)globalPosX / outputL * horizontalExtent; diff --git a/Modules/PhotoacousticsAlgorithms/Resources/DMAS.cl b/Modules/PhotoacousticsAlgorithms/Resources/DMAS.cl index 741437aeedd..a4fecfda31e 100644 --- a/Modules/PhotoacousticsAlgorithms/Resources/DMAS.cl +++ b/Modules/PhotoacousticsAlgorithms/Resources/DMAS.cl @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ __kernel void ckDMAS( __global float* dSource, // input image @@ -35,7 +31,7 @@ __kernel void ckDMAS( // terminate non-valid threads if ( globalPosX < outputL && globalPosY < outputS && globalPosZ < Slices ) - { + { float l_i = (float)globalPosX / (float)outputL * (float)inputL; unsigned short curUsedLines = usedLines[globalPosY * 3 * outputL + 3 * globalPosX]; @@ -49,7 +45,7 @@ __kernel void ckDMAS( float output = 0; float mult = 0; - + float s_1 = 0; float s_2 = 0; float apod_1 = 0; @@ -57,20 +53,20 @@ __kernel void ckDMAS( for (short l_s1 = minLine; l_s1 < maxLine; ++l_s1) { Delay1 = AddSamples[globalPosY * (outputL / 2) + (int)(fabs(l_s1 - l_i)/(float)inputL * (float)outputL)]; - if (Delay1 < inputS && Delay1 >= 0) + if (Delay1 < inputS && Delay1 >= 0) { s_1 = dSource[(int)(globalPosZ * inputL * inputS + Delay1 * inputL + l_s1)]; apod_1 = apodArray[(int)((l_s1 - minLine)*apod_mult)]; - + for (short l_s2 = l_s1 + 1; l_s2 < maxLine; ++l_s2) { Delay2 = AddSamples[globalPosY * (outputL / 2) + (int)(fabs(l_s2 - l_i)/(float)inputL * (float)outputL)]; - if (Delay2 < inputS && Delay2 >= 0) + if (Delay2 < inputS && Delay2 >= 0) { s_2 = dSource[(int)(globalPosZ * inputL * inputS + Delay2 * inputL + l_s2)]; - + mult = apodArray[(int)((l_s2 - minLine)*apod_mult)] * s_2 * apod_1 * s_1; - + output += sqrt(fabs(mult)) * sign(mult); } } @@ -112,9 +108,9 @@ __kernel void ckDMAS_g( { int AddSample1 = 0; int AddSample2 = 0; - + float output = 0; - + float s_1 = 0; float s_2 = 0; float apod_1 = 0; @@ -137,12 +133,12 @@ __kernel void ckDMAS_g( + pow(mult * (l_p - elementPositions[l_s1]), 2) ) + (1 - isPAImage)*s_i; - + if (AddSample1 < inputS && AddSample1 >= 0) { s_1 = dSource[(int)(globalPosZ * inputL * inputS + AddSample1 * inputL + l_s1)]; apod_1 = apodArray[(int)((l_s1 - minLine)*apod_mult)]; - + for (int l_s2 = minLine; l_s2 < maxLine; ++l_s2) { AddSample2 = (int)sqrt( @@ -154,7 +150,7 @@ __kernel void ckDMAS_g( { s_2 = dSource[(int)(globalPosZ * inputL * inputS + AddSample2 * inputL + l_s2)]; multiplication = apodArray[(int)((l_s2 - minLine)*apod_mult)] * s_2 * apod_1 * s_1; - + output += sqrt(fabs(multiplication)) * sign(multiplication); } } @@ -164,4 +160,4 @@ __kernel void ckDMAS_g( } dDest[ globalPosZ * outputL * outputS + globalPosY * outputL + globalPosX ] = output / (float)(pow((float)curUsedLines, 2) - (curUsedLines - 1)); } -} \ No newline at end of file +} diff --git a/Modules/PhotoacousticsAlgorithms/Resources/DelayCalculation.cl b/Modules/PhotoacousticsAlgorithms/Resources/DelayCalculation.cl index b71208e6e8f..0ecda5781ea 100644 --- a/Modules/PhotoacousticsAlgorithms/Resources/DelayCalculation.cl +++ b/Modules/PhotoacousticsAlgorithms/Resources/DelayCalculation.cl @@ -1,19 +1,15 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. +============================================================================*/ -===================================================================*/ - __kernel void ckDelayCalculationSphe( __global unsigned short *gDest, __global unsigned short *usedLines, unsigned int inputL, @@ -33,7 +29,7 @@ __kernel void ckDelayCalculationSphe( __global unsigned short *gDest, float l_i = 0; // we calculate the delays relative to line zero float s_i = (float)globalPosY / (float)outputS * totalSamples_i; float l_s = (float)globalPosX / (float)outputL * (float)inputL; // the currently calculated line - + gDest[globalPosY * (outputL / 2) + globalPosX] = sqrt( pow(s_i, 2) @@ -41,4 +37,4 @@ __kernel void ckDelayCalculationSphe( __global unsigned short *gDest, pow((delayMultiplicatorRaw * ((l_s - l_i)) / inputL), 2) ) + (1-isPAImage)*s_i; } -} \ No newline at end of file +} diff --git a/Modules/PhotoacousticsAlgorithms/Resources/UsedLinesCalculation.cl b/Modules/PhotoacousticsAlgorithms/Resources/UsedLinesCalculation.cl index 866b5f5d219..46d4629000f 100644 --- a/Modules/PhotoacousticsAlgorithms/Resources/UsedLinesCalculation.cl +++ b/Modules/PhotoacousticsAlgorithms/Resources/UsedLinesCalculation.cl @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ __kernel void ckUsedLines( __global unsigned short* dDest, // output buffer @@ -27,7 +23,7 @@ __kernel void ckUsedLines( // get thread identifier unsigned int globalPosX = get_global_id(0); unsigned int globalPosY = get_global_id(1); - + // terminate non-valid threads if ( globalPosX < outputL && globalPosY < outputS) { @@ -37,10 +33,10 @@ __kernel void ckUsedLines( float part = partMult * s_i; if (part < 1) part = 1; - + unsigned short maxLine = min((l_i + part) + 1, (float)inputL); unsigned short minLine = max((l_i - part), 0.0f); - + dDest[globalPosY * 3 * outputL + 3 * globalPosX] = (maxLine - minLine); //usedLines dDest[globalPosY * 3 * outputL + 3 * globalPosX + 1] = minLine; //minLine dDest[globalPosY * 3 * outputL + 3 * globalPosX + 2] = maxLine; //maxLine @@ -64,7 +60,7 @@ __kernel void ckUsedLines_g( // get thread identifier unsigned int globalPosX = get_global_id(0); unsigned int globalPosY = get_global_id(1); - + float x_sensor_pos = 0; float y_sensor_pos = 0; float center_to_sensor_a = 0; diff --git a/Modules/PhotoacousticsAlgorithms/Resources/sDMAS.cl b/Modules/PhotoacousticsAlgorithms/Resources/sDMAS.cl index f63b28ef365..ab37ae7e0ab 100644 --- a/Modules/PhotoacousticsAlgorithms/Resources/sDMAS.cl +++ b/Modules/PhotoacousticsAlgorithms/Resources/sDMAS.cl @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ __kernel void cksDMAS( __global float* dSource, // input image @@ -35,7 +31,7 @@ __kernel void cksDMAS( // terminate non-valid threads if ( globalPosX < outputL && globalPosY < outputS && globalPosZ < Slices ) - { + { float l_i = (float)globalPosX / (float)outputL * (float)inputL; unsigned short curUsedLines = usedLines[globalPosY * 3 * outputL + 3 * globalPosX]; @@ -49,7 +45,7 @@ __kernel void cksDMAS( float output = 0; float mult = 0; - + float s_1 = 0; float s_2 = 0; float dSign = 0; @@ -58,21 +54,21 @@ __kernel void cksDMAS( for (short l_s1 = minLine; l_s1 < maxLine; ++l_s1) { Delay1 = AddSamples[globalPosY * (outputL / 2) + (int)(fabs(l_s1 - l_i)/(float)inputL * (float)outputL)]; - if (Delay1 < inputS && Delay1 >= 0) + if (Delay1 < inputS && Delay1 >= 0) { s_1 = dSource[(int)(globalPosZ * inputL * inputS + Delay1 * inputL + l_s1)]; apod_1 = apodArray[(int)((l_s1 - minLine)*apod_mult)]; dSign += s_1; - + for (short l_s2 = l_s1 + 1; l_s2 < maxLine; ++l_s2) { Delay2 = AddSamples[globalPosY * (outputL / 2) + (int)(fabs(l_s2 - l_i)/(float)inputL * (float)outputL)]; - if (Delay2 < inputS && Delay2 >= 0) + if (Delay2 < inputS && Delay2 >= 0) { s_2 = dSource[(int)(globalPosZ * inputL * inputS + Delay2 * inputL + l_s2)]; - + mult = apodArray[(int)((l_s2 - minLine)*apod_mult)] * s_2 * apod_1 * s_1; - + output += sqrt(fabs(mult)) * ((mult > 0) - (mult < 0)); } } @@ -114,9 +110,9 @@ __kernel void cksDMAS_g( { int AddSample1 = 0; int AddSample2 = 0; - + float output = 0; - + float s_1 = 0; float s_2 = 0; float apod_1 = 0; @@ -140,13 +136,13 @@ __kernel void cksDMAS_g( + pow(mult * (l_p - elementPositions[l_s1]), 2) ) + (1 - isPAImage)*s_i; - + if (AddSample1 < inputS && AddSample1 >= 0) { s_1 = dSource[(int)(globalPosZ * inputL * inputS + AddSample1 * inputL + l_s1)]; apod_1 = apodArray[(int)((l_s1 - minLine)*apod_mult)]; dSign += s_1; - + for (int l_s2 = minLine; l_s2 < maxLine; ++l_s2) { AddSample2 = (int)sqrt( @@ -158,7 +154,7 @@ __kernel void cksDMAS_g( { s_2 = dSource[(int)(globalPosZ * inputL * inputS + AddSample2 * inputL + l_s2)]; multiplication = apodArray[(int)((l_s2 - minLine)*apod_mult)] * s_2 * apod_1 * s_1; - + output += sqrt(fabs(multiplication)) * sign(multiplication); } } @@ -168,4 +164,4 @@ __kernel void cksDMAS_g( } dDest[ globalPosZ * outputL * outputS + globalPosY * outputL + globalPosX ] = output / (float)(pow((float)curUsedLines, 2) - (curUsedLines - 1)) * sign(dSign); } -} \ No newline at end of file +} diff --git a/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticBModeFilter.h b/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticBModeFilter.h index 2f692e24fde..63c239e9f35 100644 --- a/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticBModeFilter.h +++ b/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticBModeFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKPHOTOACOUSTICSBMODEFILTER_H_ #define _MITKPHOTOACOUSTICSBMODEFILTER_H_ diff --git a/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLBeamformingFilter.h b/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLBeamformingFilter.h index bd9bf91913a..2c2bd996801 100644 --- a/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLBeamformingFilter.h +++ b/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLBeamformingFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKPHOTOACOUSTICSOCLBEAMFORMER_H_ #define _MITKPHOTOACOUSTICSOCLBEAMFORMER_H_ @@ -118,7 +114,7 @@ namespace mitk mitk::OCLUsedLinesCalculation::Pointer m_UsedLinesCalculation; mitk::OCLDelayCalculation::Pointer m_DelayCalculation; - cl_mem m_ApodizationBuffer; + cl_mem m_ApodizationBuffer; cl_mem m_DelaysBuffer; cl_mem m_UsedLinesBuffer; cl_mem m_ElementHeightsBuffer; diff --git a/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLDelayCalculation.h b/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLDelayCalculation.h index 3e60b4ec5c5..3b0bb889052 100644 --- a/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLDelayCalculation.h +++ b/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLDelayCalculation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKPHOTOACOUSTICSDELAYCALC_H_ #define _MITKPHOTOACOUSTICSDELAYCALC_H_ diff --git a/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.h b/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.h index 52021ea7c56..2fbe81bf486 100644 --- a/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.h +++ b/Modules/PhotoacousticsAlgorithms/include/OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKPHOTOACOUSTICSOCLUSEDLINESCALCULATION_H_ #define _MITKPHOTOACOUSTICSOCLUSEDLINESCALCULATION_H_ diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkBandpassFilter.h b/Modules/PhotoacousticsAlgorithms/include/mitkBandpassFilter.h index 79cba49d0b5..a3f990736a3 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkBandpassFilter.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkBandpassFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_BANDPASS_FILTER #define MITK_BANDPASS_FILTER diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingFilter.h b/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingFilter.h index 6ee498e4709..8828ed1d298 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingFilter.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_PHOTOACOUSTICS_BEAMFORMING_FILTER #define MITK_PHOTOACOUSTICS_BEAMFORMING_FILTER diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingSettings.h b/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingSettings.h index 8684d9632ef..dbb6c4f129c 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingSettings.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingSettings.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_BEAMFORMING_SETTINGS #define MITK_BEAMFORMING_SETTINGS @@ -84,7 +80,7 @@ namespace mitk { return !((std::abs(lhs->GetAngle() - rhs->GetAngle()) < 0.01f) && // 0.01 degree error margin (lhs->GetApod() == rhs->GetApod()) && (lhs->GetGeometry() == rhs->GetGeometry()) && - (std::abs(lhs->GetProbeRadius() - rhs->GetProbeRadius()) < 0.001f) && + (std::abs(lhs->GetProbeRadius() - rhs->GetProbeRadius()) < 0.001f) && (lhs->GetIsPhotoacousticImage() == rhs->GetIsPhotoacousticImage()) && (std::abs(lhs->GetPitchInMeters() - rhs->GetPitchInMeters()) < 0.000001f) && // 0.0001 mm error margin (lhs->GetReconstructionLines() == rhs->GetReconstructionLines()) && @@ -228,7 +224,7 @@ namespace mitk { */ float m_ProbeRadius; - /** + /** */ float *m_ElementHeights; diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingUtils.h b/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingUtils.h index fff7126538f..5a53157e449 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingUtils.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkBeamformingUtils.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_BEAMFORMING_FILTER_UTILS #define MITK_BEAMFORMING_FILTER_UTILS @@ -58,7 +54,7 @@ namespace mitk { */ static float* BoxFunction(int samples); - /** \brief + /** \brief */ static unsigned short* MinMaxLines(const mitk::BeamformingSettings::Pointer config); diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkCastToFloatImageFilter.h b/Modules/PhotoacousticsAlgorithms/include/mitkCastToFloatImageFilter.h index 0a109c56021..94a49f3e7e2 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkCastToFloatImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkCastToFloatImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CAST_TO_FLOAT_IMAGE_FILTER #define MITK_CAST_TO_FLOAT_IMAGE_FILTER diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkCropImageFilter.h b/Modules/PhotoacousticsAlgorithms/include/mitkCropImageFilter.h index 017cc8327f5..3316865d0ba 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkCropImageFilter.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkCropImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CROP_IMAGE_FILTER #define MITK_CROP_IMAGE_FILTER @@ -62,7 +58,7 @@ namespace mitk { unsigned int m_ZPixelsCropStart; unsigned int m_XPixelsCropEnd; unsigned int m_YPixelsCropEnd; - unsigned int m_ZPixelsCropEnd; + unsigned int m_ZPixelsCropEnd; }; } // namespace mitk diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkImageSliceSelectionFilter.h b/Modules/PhotoacousticsAlgorithms/include/mitkImageSliceSelectionFilter.h index ac51c1176d5..4e7aaa59cca 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkImageSliceSelectionFilter.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkImageSliceSelectionFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_IMAGE_SLICE_SELECTION_FILTER #define MITK_IMAGE_SLICE_SELECTION_FILTER diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkPhotoacousticFilterService.h b/Modules/PhotoacousticsAlgorithms/include/mitkPhotoacousticFilterService.h index 5f3de397730..5a59fd57469 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkPhotoacousticFilterService.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkPhotoacousticFilterService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPhotoacousticFilterService_H_HEADER_INCLUDED #define mitkPhotoacousticFilterService_H_HEADER_INCLUDED diff --git a/Modules/PhotoacousticsAlgorithms/include/mitkPhotoacousticMotionCorrectionFilter.h b/Modules/PhotoacousticsAlgorithms/include/mitkPhotoacousticMotionCorrectionFilter.h index a343932fd7a..8e8dcb3bfa6 100644 --- a/Modules/PhotoacousticsAlgorithms/include/mitkPhotoacousticMotionCorrectionFilter.h +++ b/Modules/PhotoacousticsAlgorithms/include/mitkPhotoacousticMotionCorrectionFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKPHOTOACOUSTICSMOTIONCORRECTIONFILTER_H_ #define _MITKPHOTOACOUSTICSMOTIONCORRECTIONFILTER_H_ diff --git a/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticBModeFilter.cpp b/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticBModeFilter.cpp index c3b7ba5e06d..785100fe4a3 100644 --- a/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticBModeFilter.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticBModeFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "./OpenCLFilter/mitkPhotoacousticBModeFilter.h" #include "usServiceReference.h" diff --git a/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLBeamformingFilter.cpp b/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLBeamformingFilter.cpp index dc3ad02f83b..4dcd2933d59 100644 --- a/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLBeamformingFilter.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLBeamformingFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if defined(PHOTOACOUSTICS_USE_GPU) || DOXYGEN diff --git a/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLDelayCalculation.cpp b/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLDelayCalculation.cpp index b6f4e2f0f75..fb777ce6a17 100644 --- a/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLDelayCalculation.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLDelayCalculation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define _USE_MATH_DEFINES diff --git a/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.cpp b/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.cpp index d671f523cf5..e7ef79294cb 100644 --- a/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if defined(PHOTOACOUSTICS_USE_GPU) || DOXYGEN #include "./OpenCLFilter/mitkPhotoacousticOCLUsedLinesCalculation.h" diff --git a/Modules/PhotoacousticsAlgorithms/source/filters/mitkBandpassFilter.cpp b/Modules/PhotoacousticsAlgorithms/source/filters/mitkBandpassFilter.cpp index 438aa798d73..eecd2270e4e 100644 --- a/Modules/PhotoacousticsAlgorithms/source/filters/mitkBandpassFilter.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/filters/mitkBandpassFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== -mitkCastToFloatImageFilter +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #define _USE_MATH_DEFINES #include diff --git a/Modules/PhotoacousticsAlgorithms/source/filters/mitkBeamformingFilter.cpp b/Modules/PhotoacousticsAlgorithms/source/filters/mitkBeamformingFilter.cpp index 781aa4e5e24..fdd45dd679f 100644 --- a/Modules/PhotoacousticsAlgorithms/source/filters/mitkBeamformingFilter.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/filters/mitkBeamformingFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== -mitkBeamformingFilter +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkImageReadAccessor.h" @@ -231,7 +227,7 @@ void mitk::BeamformingFilter::GenerateData() inputBatch->SetSpacing(input->GetGeometry()->GetSpacing()); inputBatch->SetImportVolume(&(((float*)copy.GetData())[input->GetDimension(0) * input->GetDimension(1) * batchSize * i])); - + m_BeamformingOclFilter->SetApodisation(m_Conf->GetApodizationFunction(), m_Conf->GetApodizationArraySize()); m_BeamformingOclFilter->SetInput(inputBatch); m_BeamformingOclFilter->Update(); diff --git a/Modules/PhotoacousticsAlgorithms/source/filters/mitkBeamformingSettings.cpp b/Modules/PhotoacousticsAlgorithms/source/filters/mitkBeamformingSettings.cpp index 894802fe763..7afe9eb327d 100644 --- a/Modules/PhotoacousticsAlgorithms/source/filters/mitkBeamformingSettings.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/filters/mitkBeamformingSettings.cpp @@ -1,18 +1,14 @@ -/*=================================================================== -mitkBeamformingSettings +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkBeamformingSettings.h" #include "mitkBeamformingUtils.h" @@ -138,4 +134,4 @@ unsigned short* mitk::BeamformingSettings::GetMinMaxLines() if (!m_MinMaxLines) m_MinMaxLines = mitk::BeamformingUtils::MinMaxLines(this); return m_MinMaxLines; -} \ No newline at end of file +} diff --git a/Modules/PhotoacousticsAlgorithms/source/filters/mitkCastToFloatImageFilter.cpp b/Modules/PhotoacousticsAlgorithms/source/filters/mitkCastToFloatImageFilter.cpp index cc26284be80..ae7a162d83a 100644 --- a/Modules/PhotoacousticsAlgorithms/source/filters/mitkCastToFloatImageFilter.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/filters/mitkCastToFloatImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== -mitkCastToFloatImageFilter +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkCastToFloatImageFilter.h" #include "mitkImageReadAccessor.h" diff --git a/Modules/PhotoacousticsAlgorithms/source/filters/mitkCropImageFilter.cpp b/Modules/PhotoacousticsAlgorithms/source/filters/mitkCropImageFilter.cpp index b8b74bb4177..2ad7cc6ee7b 100644 --- a/Modules/PhotoacousticsAlgorithms/source/filters/mitkCropImageFilter.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/filters/mitkCropImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== -mitkCropImageFilter +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkCropImageFilter.h" #include diff --git a/Modules/PhotoacousticsAlgorithms/source/filters/mitkImageSliceSelectionFilter.cpp b/Modules/PhotoacousticsAlgorithms/source/filters/mitkImageSliceSelectionFilter.cpp index b90b5a726ee..6c609828e5c 100644 --- a/Modules/PhotoacousticsAlgorithms/source/filters/mitkImageSliceSelectionFilter.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/filters/mitkImageSliceSelectionFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== -mitkImageSliceSelectionFilter +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkImageSliceSelectionFilter.h" diff --git a/Modules/PhotoacousticsAlgorithms/source/mitkPhotoacousticMotionCorrectionFilter.cpp b/Modules/PhotoacousticsAlgorithms/source/mitkPhotoacousticMotionCorrectionFilter.cpp index 7eade84b339..3899b0617ff 100644 --- a/Modules/PhotoacousticsAlgorithms/source/mitkPhotoacousticMotionCorrectionFilter.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/mitkPhotoacousticMotionCorrectionFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "./mitkPhotoacousticMotionCorrectionFilter.h" #include diff --git a/Modules/PhotoacousticsAlgorithms/source/utils/mitkBeamformingUtils.cpp b/Modules/PhotoacousticsAlgorithms/source/utils/mitkBeamformingUtils.cpp index 8cfd04f92be..30c197f9e33 100644 --- a/Modules/PhotoacousticsAlgorithms/source/utils/mitkBeamformingUtils.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/utils/mitkBeamformingUtils.cpp @@ -1,18 +1,14 @@ -/*=================================================================== -mitkPhotoacousticBeamformingFilter +/*============================================================================ + The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" #include "mitkImageReadAccessor.h" @@ -76,7 +72,7 @@ unsigned short* mitk::BeamformingUtils::MinMaxLines(const mitk::BeamformingSetti unsigned short* dDest = new unsigned short[outputL * outputS * 2]; unsigned int inputL = (unsigned int)config->GetInputDim()[0]; - + float horizontalExtent = config->GetHorizontalExtent(); float verticalExtent = config->GetReconstructionDepth(); diff --git a/Modules/PhotoacousticsAlgorithms/source/utils/mitkPhotoacousticFilterService.cpp b/Modules/PhotoacousticsAlgorithms/source/utils/mitkPhotoacousticFilterService.cpp index ddcfed7aa40..cd3f6749c5a 100644 --- a/Modules/PhotoacousticsAlgorithms/source/utils/mitkPhotoacousticFilterService.cpp +++ b/Modules/PhotoacousticsAlgorithms/source/utils/mitkPhotoacousticFilterService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPhotoacousticFilterService.h" @@ -266,7 +262,7 @@ mitk::Image::Pointer mitk::PhotoacousticFilterService::ApplyBandpassFilter( float alphaHighPass, float alphaLowPass, float TimeSpacing, float SpeedOfSound, bool IsBFImage) { - try + try { auto floatData = ConvertToFloat(data); mitk::BandpassFilter::Pointer bandpassFilter = mitk::BandpassFilter::New(); diff --git a/Modules/PhotoacousticsAlgorithms/test/mitkBandpassFilterTest.cpp b/Modules/PhotoacousticsAlgorithms/test/mitkBandpassFilterTest.cpp index 7c2b6004663..373435a6afd 100644 --- a/Modules/PhotoacousticsAlgorithms/test/mitkBandpassFilterTest.cpp +++ b/Modules/PhotoacousticsAlgorithms/test/mitkBandpassFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define _USE_MATH_DEFINES #include diff --git a/Modules/PhotoacousticsAlgorithms/test/mitkBeamformingFilterTest.cpp b/Modules/PhotoacousticsAlgorithms/test/mitkBeamformingFilterTest.cpp index 8258e991e20..b8867a6c62f 100644 --- a/Modules/PhotoacousticsAlgorithms/test/mitkBeamformingFilterTest.cpp +++ b/Modules/PhotoacousticsAlgorithms/test/mitkBeamformingFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -26,7 +22,7 @@ See LICENSE.txt or http://www.mitk.org for details. class SyntheticPAImageData { public: - SyntheticPAImageData(float spacing_x, float spacing_y, unsigned int samples, unsigned int num_transducers, float speedOfSound) + SyntheticPAImageData(float spacing_x, float spacing_y, unsigned int samples, unsigned int num_transducers, float speedOfSound) { m_Spacing_x = spacing_x; m_Spacing_y = spacing_y; @@ -41,7 +37,7 @@ class SyntheticPAImageData } } - ~SyntheticPAImageData() + ~SyntheticPAImageData() { delete[] m_Data; } @@ -112,7 +108,7 @@ class mitkBeamformingFilterTestSuite : public mitk::TestFixture void setUp() override { - + } void test() diff --git a/Modules/PhotoacousticsAlgorithms/test/mitkCastToFloatImageFilterTest.cpp b/Modules/PhotoacousticsAlgorithms/test/mitkCastToFloatImageFilterTest.cpp index e729d990ae1..4cbb826971f 100644 --- a/Modules/PhotoacousticsAlgorithms/test/mitkCastToFloatImageFilterTest.cpp +++ b/Modules/PhotoacousticsAlgorithms/test/mitkCastToFloatImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsAlgorithms/test/mitkCropImageFilterTest.cpp b/Modules/PhotoacousticsAlgorithms/test/mitkCropImageFilterTest.cpp index 90c85b9d447..1248d6231c2 100644 --- a/Modules/PhotoacousticsAlgorithms/test/mitkCropImageFilterTest.cpp +++ b/Modules/PhotoacousticsAlgorithms/test/mitkCropImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsAlgorithms/test/mitkPAFilterServiceTest.cpp b/Modules/PhotoacousticsAlgorithms/test/mitkPAFilterServiceTest.cpp index 82b4a16f2a6..d85d5361457 100644 --- a/Modules/PhotoacousticsAlgorithms/test/mitkPAFilterServiceTest.cpp +++ b/Modules/PhotoacousticsAlgorithms/test/mitkPAFilterServiceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsAlgorithms/test/mitkPhotoacousticMotionCorrectionFilterTest.cpp b/Modules/PhotoacousticsAlgorithms/test/mitkPhotoacousticMotionCorrectionFilterTest.cpp index f8dd8ea1680..d30aed5df29 100644 --- a/Modules/PhotoacousticsAlgorithms/test/mitkPhotoacousticMotionCorrectionFilterTest.cpp +++ b/Modules/PhotoacousticsAlgorithms/test/mitkPhotoacousticMotionCorrectionFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include #include @@ -37,7 +33,7 @@ class mitkPhotoacousticMotionCorrectionFilterTestSuite : public mitk::TestFixtur MITK_TEST(testSameInputDimensions); MITK_TEST(testStaticSliceCorrection); CPPUNIT_TEST_SUITE_END(); - + private: mitk::PhotoacousticMotionCorrectionFilter::Pointer filter; diff --git a/Modules/PhotoacousticsHardware/OphirCppWrapper/ConsoleExample.cpp b/Modules/PhotoacousticsHardware/OphirCppWrapper/ConsoleExample.cpp index 8571245a988..a55a50fce93 100644 --- a/Modules/PhotoacousticsHardware/OphirCppWrapper/ConsoleExample.cpp +++ b/Modules/PhotoacousticsHardware/OphirCppWrapper/ConsoleExample.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -49,7 +45,7 @@ int main() std::cout << "length: " << data.size() << std::endl; for(int i = 0; i @@ -53,7 +49,7 @@ int OphirPyroWrapper::OpenDevice(char* serialNumber) { int deviceHandle; _private->ophirAPI->OpenUSBDevice(gcnew System::String(serialNumber), deviceHandle); - + return deviceHandle; } @@ -88,7 +84,7 @@ bool OphirPyroWrapper::StartStream(int deviceHandle) _private->ophirAPI->StartStream(deviceHandle, 0); return true; } - + bool OphirPyroWrapper::StopStream(int deviceHandle) { _private->ophirAPI->StopStream(deviceHandle, 0); @@ -123,7 +119,7 @@ unsigned int OphirPyroWrapper::GetData(int deviceHandle, std::vector* da (*data)[i] = managedDataArray[i]; (*timestamp)[i] = managedTimeStampArray[i]; (*status)[i] = managedStatusArray[i]; - // DEBUG: std::cout << "managedDataArray " << i << ": " << managedDataArray[i] << " ts: " << managedTimeStampArray[i] << " status: " << managedStatusArray[i] << std::endl; + // DEBUG: std::cout << "managedDataArray " << i << ": " << managedDataArray[i] << " ts: " << managedTimeStampArray[i] << " status: " << managedStatusArray[i] << std::endl; } return managedDataArray->Length; } @@ -138,4 +134,4 @@ unsigned int OphirPyroWrapper::GetData(int deviceHandle, std::vector* da } return 0; -} \ No newline at end of file +} diff --git a/Modules/PhotoacousticsHardware/OphirCppWrapper/OphirPyroWrapper.h b/Modules/PhotoacousticsHardware/OphirCppWrapper/OphirPyroWrapper.h index 1420071c1a6..dd3decfeb84 100644 --- a/Modules/PhotoacousticsHardware/OphirCppWrapper/OphirPyroWrapper.h +++ b/Modules/PhotoacousticsHardware/OphirCppWrapper/OphirPyroWrapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -41,4 +37,4 @@ class __declspec(dllexport) OphirPyroWrapper public: bool CloseDevice(int deviceHandle); public: unsigned int GetData(int deviceHandle, std::vector* data, std::vector* timestamp, std::vector* status); -}; \ No newline at end of file +}; diff --git a/Modules/PhotoacousticsHardware/mitkGalilMotor.cpp b/Modules/PhotoacousticsHardware/mitkGalilMotor.cpp index 583937ab5ac..74cbef697bc 100644 --- a/Modules/PhotoacousticsHardware/mitkGalilMotor.cpp +++ b/Modules/PhotoacousticsHardware/mitkGalilMotor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGalilMotor.h" @@ -278,4 +274,4 @@ double mitk::GalilMotor::GetMaxWavelength() double mitk::GalilMotor::GetCurrentWavelength() { return m_CurrentWavelength; -} \ No newline at end of file +} diff --git a/Modules/PhotoacousticsHardware/mitkGalilMotor.h b/Modules/PhotoacousticsHardware/mitkGalilMotor.h index c73e07d5125..966dfe707d0 100644 --- a/Modules/PhotoacousticsHardware/mitkGalilMotor.h +++ b/Modules/PhotoacousticsHardware/mitkGalilMotor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKGalilAPI_H_HEADER_INCLUDED diff --git a/Modules/PhotoacousticsHardware/mitkOphirPyro.cpp b/Modules/PhotoacousticsHardware/mitkOphirPyro.cpp index c4d76224e12..54081c89224 100644 --- a/Modules/PhotoacousticsHardware/mitkOphirPyro.cpp +++ b/Modules/PhotoacousticsHardware/mitkOphirPyro.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOphirPyro.h" @@ -313,7 +309,7 @@ bool mitk::OphirPyro::OpenConnection() MITK_INFO << "Opening Ophir connection"; m_DeviceHandle = ophirAPI.OpenDevice(m_SerialNumber); } - + if (m_DeviceHandle != 0) { m_Connected = true; @@ -334,4 +330,4 @@ bool mitk::OphirPyro::CloseConnection() return closed; } return false; -} \ No newline at end of file +} diff --git a/Modules/PhotoacousticsHardware/mitkOphirPyro.h b/Modules/PhotoacousticsHardware/mitkOphirPyro.h index b1d9f886d6d..b6f09654a79 100644 --- a/Modules/PhotoacousticsHardware/mitkOphirPyro.h +++ b/Modules/PhotoacousticsHardware/mitkOphirPyro.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOPHIRPYRO_H_HEADER_INCLUDED diff --git a/Modules/PhotoacousticsHardware/mitkQuantelLaser.cpp b/Modules/PhotoacousticsHardware/mitkQuantelLaser.cpp index 2f8c8a00936..c742b8b0720 100644 --- a/Modules/PhotoacousticsHardware/mitkQuantelLaser.cpp +++ b/Modules/PhotoacousticsHardware/mitkQuantelLaser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkQuantelLaser.h" @@ -34,10 +30,10 @@ mitk::QuantelLaser::QuantelLaser() : m_ShutterOpen(false), m_LaserEmission(false), m_DeviceName(), - m_PortNumber(mitk::SerialCommunication::COM6), + m_PortNumber(mitk::SerialCommunication::COM6), m_BaudRate(mitk::SerialCommunication::BaudRate115200), - m_DataBits(mitk::SerialCommunication::DataBits8), - m_Parity(mitk::SerialCommunication::None), + m_DataBits(mitk::SerialCommunication::DataBits8), + m_Parity(mitk::SerialCommunication::None), m_StopBits(mitk::SerialCommunication::StopBits1), m_HardwareHandshake(mitk::SerialCommunication::HardwareHandshakeOff), m_SerialCommunication(nullptr), @@ -59,7 +55,7 @@ mitk::QuantelLaser::~QuantelLaser() this->CloseConnection(); } /* cleanup stay alive thread */ - if (m_StayAliveMessageThread.joinable()) + if (m_StayAliveMessageThread.joinable()) m_StayAliveMessageThread.join(); /* free serial communication interface */ @@ -77,7 +73,7 @@ std::string mitk::QuantelLaser::SendAndReceiveLine(const std::string* input, std MITK_INFO << "[Quantel Laser Debug] sending: " << input->c_str(); if (input == nullptr) return "SERIALSENDERROR"; - + std::string message; message = *input + '\n'; @@ -199,7 +195,7 @@ mitk::QuantelLaser::LaserState mitk::QuantelLaser::GetState() m_State = UNCONNECTED; return m_State; } - + if (!m_SerialCommunication->IsConnected()) { m_State = UNCONNECTED; @@ -263,7 +259,7 @@ mitk::QuantelLaser::LaserState mitk::QuantelLaser::GetState() m_LaserEmission = true; } else - { + { m_State = UNCONNECTED; m_FlashlampRunning = false; m_ShutterOpen = false; @@ -313,7 +309,7 @@ bool mitk::QuantelLaser::StartFlashing() } else MITK_INFO << "[Quantel Laser Debug] " << "Flashlamps are already running"; - + return true; } @@ -337,7 +333,7 @@ bool mitk::QuantelLaser::StopFlashing() m_KeepAlive = false; } else - { + { MITK_ERROR << "[Quantel Laser Debug] " << "Cannot Stop flashlamps." << " Laser is telling me: " << answer; return false; } @@ -406,4 +402,4 @@ bool mitk::QuantelLaser::IsEmitting() bool mitk::QuantelLaser::IsFlashing() { return m_FlashlampRunning; -} \ No newline at end of file +} diff --git a/Modules/PhotoacousticsHardware/mitkQuantelLaser.h b/Modules/PhotoacousticsHardware/mitkQuantelLaser.h index fda48f9b158..761fcb66eef 100644 --- a/Modules/PhotoacousticsHardware/mitkQuantelLaser.h +++ b/Modules/PhotoacousticsHardware/mitkQuantelLaser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKQUANTELLASER_H_HEADER_INCLUDED @@ -35,7 +31,7 @@ See LICENSE.txt or http://www.mitk.org for details. #include "MitkPhotoacousticsHardwareExports.h" namespace mitk { - + class MITKPHOTOACOUSTICSHARDWARE_EXPORT QuantelLaser : public itk::LightObject { public: @@ -90,7 +86,7 @@ namespace mitk { bool m_ShutterOpen = false; bool m_LaserEmission = false; void LoadResorceFile(std::string filename, std::string* lines); - + std::string m_DeviceName;///< Device Name PortNumber m_PortNumber; ///< COM Port Number BaudRate m_BaudRate; ///< COM Port Baud Rate diff --git a/Modules/PhotoacousticsLib/MitkMCxyz/MitkMCxyz.cpp b/Modules/PhotoacousticsLib/MitkMCxyz/MitkMCxyz.cpp index f2c23f88c1d..103c01275ed 100644 --- a/Modules/PhotoacousticsLib/MitkMCxyz/MitkMCxyz.cpp +++ b/Modules/PhotoacousticsLib/MitkMCxyz/MitkMCxyz.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Please retain the following copyright notice /****************************************************************** * based on mcxyz.c Oct2014 diff --git a/Modules/PhotoacousticsLib/MitkPAPhantomGenerator/PAPhantomGenerator.cpp b/Modules/PhotoacousticsLib/MitkPAPhantomGenerator/PAPhantomGenerator.cpp index 9b710abbed4..e309d04de73 100644 --- a/Modules/PhotoacousticsLib/MitkPAPhantomGenerator/PAPhantomGenerator.cpp +++ b/Modules/PhotoacousticsLib/MitkPAPhantomGenerator/PAPhantomGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/MitkSpectralUnmixing/SpectralUnmixingApp.cpp b/Modules/PhotoacousticsLib/MitkSpectralUnmixing/SpectralUnmixingApp.cpp index 2a3ad625ea2..89b3e472ad3 100644 --- a/Modules/PhotoacousticsLib/MitkSpectralUnmixing/SpectralUnmixingApp.cpp +++ b/Modules/PhotoacousticsLib/MitkSpectralUnmixing/SpectralUnmixingApp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -29,7 +25,7 @@ See LICENSE.txt or http://www.mitk.org for details. /* \brief The spectral unmixing mini app (SUMA) is designed to enable batch processing - for spectral unmixing. For detailed documentation look into the header files of the + for spectral unmixing. For detailed documentation look into the header files of the included spectral unmixing filters.*/ struct InputParameters @@ -112,7 +108,7 @@ InputParameters parseInput(int argc, char *argv[]) if (parsedArgs.count("inputFilename")) - { + { input.inputFilename = us::any_cast(parsedArgs["inputFilename"]); } @@ -123,7 +119,7 @@ InputParameters parseInput(int argc, char *argv[]) } if (parsedArgs.count("outputFileStruct")) - { + { input.outputFileStruct = us::any_cast(parsedArgs["outputFileStruct"]); } else @@ -221,7 +217,7 @@ mitk::pa::SpectralUnmixingFilterBase::Pointer GetFilterInstance(std::string algo } int main(int argc, char *argv[]) -{ +{ auto input = parseInput(argc, argv); std::string algo = input.inputAlg; @@ -264,7 +260,7 @@ int main(int argc, char *argv[]) m_SpectralUnmixingFilter->AddChromophore(mitk::pa::PropertyCalculator::ChromophoreType::OXYGENATED); m_SpectralUnmixingFilter->AddChromophore(mitk::pa::PropertyCalculator::ChromophoreType::DEOXYGENATED); m_SpectralUnmixingFilter->AddOutputs(2); - + for (unsigned int wIdx = 0; wIdx < wavelengths.size(); ++wIdx) { m_SpectralUnmixingFilter->AddWavelength(wavelengths[wIdx]); @@ -272,13 +268,13 @@ int main(int argc, char *argv[]) } //to add a batch processing: loop for a dir start here; don't forget to set a counter to the three output savenames!!! - std::string inputImage = input.inputFilename; + std::string inputImage = input.inputFilename; auto m_inputImage = mitk::IOUtil::Load(inputImage); m_SpectralUnmixingFilter->SetInput(m_inputImage); m_SpectralUnmixingFilter->Update(); - + auto output1 = m_SpectralUnmixingFilter->GetOutput(0); auto output2 = m_SpectralUnmixingFilter->GetOutput(1); output1->SetSpacing(m_inputImage->GetGeometry()->GetSpacing()); @@ -291,7 +287,7 @@ int main(int argc, char *argv[]) auto m_sO2 = mitk::pa::SpectralUnmixingSO2::New(); m_sO2->Verbose(false); - + m_sO2->SetInput(0, output1); m_sO2->SetInput(1, output2); @@ -310,6 +306,6 @@ int main(int argc, char *argv[]) m_sO2 = nullptr; m_SpectralUnmixingFilter = nullptr; - //to add a batch processing: loop for a dir end here + //to add a batch processing: loop for a dir end here MITK_INFO << "Spectral Unmixing DONE"; } diff --git a/Modules/PhotoacousticsLib/MitkSpectralUnmixing/SpectralUnmixingAppTimeEval.cpp b/Modules/PhotoacousticsLib/MitkSpectralUnmixing/SpectralUnmixingAppTimeEval.cpp index 40db0957d25..bed21f5d1e8 100644 --- a/Modules/PhotoacousticsLib/MitkSpectralUnmixing/SpectralUnmixingAppTimeEval.cpp +++ b/Modules/PhotoacousticsLib/MitkSpectralUnmixing/SpectralUnmixingAppTimeEval.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#include #include @@ -91,7 +87,7 @@ InputParameters parseInput(int argc, char *argv[]) } if (parsedArgs.count("inputPath")) - { + { input.inputPath = us::any_cast(parsedArgs["inputPath"]); } else @@ -101,7 +97,7 @@ InputParameters parseInput(int argc, char *argv[]) } if (parsedArgs.count("outputPath")) - { + { input.outputPath = us::any_cast(parsedArgs["outputPath"]); } else @@ -187,7 +183,7 @@ void add_weight(int weights, mitk::pa::SpectralUnmixingFilterBase::Pointer m_Spe int main(int argc, char *argv[]) -{ +{ auto input = parseInput(argc, argv); std::string inputDir = input.inputPath; @@ -198,9 +194,9 @@ int main(int argc, char *argv[]) //maybee try with "itk system tools" //auto test = itksys::SystemTools::GetFilenameName(argv[0]).c_str(); - + //MITK_INFO << "test: " << test; - + / +++ temporary solution BEGIN +++ std::vector files; @@ -232,7 +228,7 @@ int main(int argc, char *argv[]) std::string file; file = "E:/NHCAMI/cami-experimental/PAI/spectralUnmixing/inSilico/paImages/selection/noiselevel1_rep1000_wavelength_selction_data.nrrd"; files.push_back(file);*/ - + std::vector algorithms = { "QR", "LU", "SVD", "NNLS", "WLS" }; int repetition = 6000; @@ -250,15 +246,15 @@ int main(int argc, char *argv[]) file = "E:/NHDATA/time/input/time_0" + std::to_string(i) + ".nrrd"; else file = "E:/NHDATA/time/input/time_" + std::to_string(i) + ".nrrd"; - + auto m_inputImage = mitk::IOUtil::Load(file); - + MITK_INFO << "File: " << i; for (int j = 0; j < repetition; ++j) { std::chrono::steady_clock::time_point _start; - _start = std::chrono::steady_clock::now(); + _start = std::chrono::steady_clock::now(); mitk::pa::SpectralUnmixingFilterBase::Pointer m_SpectralUnmixingFilter = GetFilterInstance(algorithms[alg]); m_SpectralUnmixingFilter->SetInput(m_inputImage); @@ -267,14 +263,14 @@ int main(int argc, char *argv[]) m_SpectralUnmixingFilter->RelativeError(false); m_SpectralUnmixingFilter->AddChromophore(mitk::pa::PropertyCalculator::ChromophoreType::OXYGENATED); m_SpectralUnmixingFilter->AddChromophore(mitk::pa::PropertyCalculator::ChromophoreType::DEOXYGENATED); - + for (int wl = 0; wl < i; ++wl) { m_SpectralUnmixingFilter->AddWavelength(700 + wl * 10); - } - + } + if (alg == 4) - { + { add_weight(i, m_SpectralUnmixingFilter); } diff --git a/Modules/PhotoacousticsLib/MitkTissueBatchGenerator/TissueBatchGenerator.cpp b/Modules/PhotoacousticsLib/MitkTissueBatchGenerator/TissueBatchGenerator.cpp index b495daf3c52..b51659f93a8 100644 --- a/Modules/PhotoacousticsLib/MitkTissueBatchGenerator/TissueBatchGenerator.cpp +++ b/Modules/PhotoacousticsLib/MitkTissueBatchGenerator/TissueBatchGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/include/mitkPAComposedVolume.h b/Modules/PhotoacousticsLib/include/mitkPAComposedVolume.h index d0d4cd19792..6a0486c8ab7 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAComposedVolume.h +++ b/Modules/PhotoacousticsLib/include/mitkPAComposedVolume.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICCOMPOSEDVOLUME_H #define MITKPHOTOACOUSTICCOMPOSEDVOLUME_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAExceptions.h b/Modules/PhotoacousticsLib/include/mitkPAExceptions.h index b97423e6405..5eb8da3baa6 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAExceptions.h +++ b/Modules/PhotoacousticsLib/include/mitkPAExceptions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEXCEPTIONS_H #define MITKEXCEPTIONS_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAFluenceYOffsetPair.h b/Modules/PhotoacousticsLib/include/mitkPAFluenceYOffsetPair.h index 9e6f1170945..23d09944c5e 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAFluenceYOffsetPair.h +++ b/Modules/PhotoacousticsLib/include/mitkPAFluenceYOffsetPair.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPAFLUENCEYOFFSETPAIR_H #define MITKPAFLUENCEYOFFSETPAIR_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAIOUtil.h b/Modules/PhotoacousticsLib/include/mitkPAIOUtil.h index 2dfcc892438..3135e135bea 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAIOUtil.h +++ b/Modules/PhotoacousticsLib/include/mitkPAIOUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICIO_H #define MITKPHOTOACOUSTICIO_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAInSilicoTissueVolume.h b/Modules/PhotoacousticsLib/include/mitkPAInSilicoTissueVolume.h index 732bb1040e5..c540b5e1655 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAInSilicoTissueVolume.h +++ b/Modules/PhotoacousticsLib/include/mitkPAInSilicoTissueVolume.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICVOLUME_H #define MITKPHOTOACOUSTICVOLUME_H diff --git a/Modules/PhotoacousticsLib/include/mitkPALightSource.h b/Modules/PhotoacousticsLib/include/mitkPALightSource.h index 1083511c686..7542ae0a0be 100644 --- a/Modules/PhotoacousticsLib/include/mitkPALightSource.h +++ b/Modules/PhotoacousticsLib/include/mitkPALightSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICLIGHTSOURCE_H #define MITKPHOTOACOUSTICLIGHTSOURCE_H diff --git a/Modules/PhotoacousticsLib/include/mitkPALinearSpectralUnmixingFilter.h b/Modules/PhotoacousticsLib/include/mitkPALinearSpectralUnmixingFilter.h index f6c27845ccf..1401f1c9aeb 100644 --- a/Modules/PhotoacousticsLib/include/mitkPALinearSpectralUnmixingFilter.h +++ b/Modules/PhotoacousticsLib/include/mitkPALinearSpectralUnmixingFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLINEARPHOTOACOUSTICSPECTRALUNMIXINGFILTER_H #define MITKLINEARPHOTOACOUSTICSPECTRALUNMIXINGFILTER_H @@ -81,7 +77,7 @@ namespace mitk { protected: LinearSpectralUnmixingFilter(); ~LinearSpectralUnmixingFilter() override; - + /** * \brief overrides the baseclass method with a mehtod to calculate the spectral unmixing result vector. Herain the class performs the * algorithm set by the "SetAlgorithm" method and writes the result into a Eigen vector which is the return value. diff --git a/Modules/PhotoacousticsLib/include/mitkPAMonteCarloThreadHandler.h b/Modules/PhotoacousticsLib/include/mitkPAMonteCarloThreadHandler.h index 4c9e92beb4b..e22c4130afa 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAMonteCarloThreadHandler.h +++ b/Modules/PhotoacousticsLib/include/mitkPAMonteCarloThreadHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMONTECARLOTHREADHANDLER_H #define MITKMONTECARLOTHREADHANDLER_H diff --git a/Modules/PhotoacousticsLib/include/mitkPANoiseGenerator.h b/Modules/PhotoacousticsLib/include/mitkPANoiseGenerator.h index f12641a2971..07a7fa3523a 100644 --- a/Modules/PhotoacousticsLib/include/mitkPANoiseGenerator.h +++ b/Modules/PhotoacousticsLib/include/mitkPANoiseGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICNOISEGENERATOR_H #define MITKPHOTOACOUSTICNOISEGENERATOR_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAPhantomTissueGenerator.h b/Modules/PhotoacousticsLib/include/mitkPAPhantomTissueGenerator.h index f60c62de7cb..1c57151de67 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAPhantomTissueGenerator.h +++ b/Modules/PhotoacousticsLib/include/mitkPAPhantomTissueGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPhotoacousticPhantomTissueGenerator_h #define mitkPhotoacousticPhantomTissueGenerator_h diff --git a/Modules/PhotoacousticsLib/include/mitkPAProbe.h b/Modules/PhotoacousticsLib/include/mitkPAProbe.h index ed2b1048e6c..331e3037484 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAProbe.h +++ b/Modules/PhotoacousticsLib/include/mitkPAProbe.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICPROBE_H #define MITKPHOTOACOUSTICPROBE_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAPropertyCalculator.h b/Modules/PhotoacousticsLib/include/mitkPAPropertyCalculator.h index 89bf0be93de..11fe2fc6753 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAPropertyCalculator.h +++ b/Modules/PhotoacousticsLib/include/mitkPAPropertyCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICPROPERTYCALCULATOR_H #define MITKPHOTOACOUSTICPROPERTYCALCULATOR_H @@ -71,7 +67,7 @@ namespace mitk { bool m_Valid = false; std::map> m_SpectralLibMap; - + }; } } diff --git a/Modules/PhotoacousticsLib/include/mitkPASimulationBatchGenerator.h b/Modules/PhotoacousticsLib/include/mitkPASimulationBatchGenerator.h index 25cf7de8267..1f48abfe478 100644 --- a/Modules/PhotoacousticsLib/include/mitkPASimulationBatchGenerator.h +++ b/Modules/PhotoacousticsLib/include/mitkPASimulationBatchGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICSIMULATIONBATCHGENERATOR_H #define MITKPHOTOACOUSTICSIMULATIONBATCHGENERATOR_H diff --git a/Modules/PhotoacousticsLib/include/mitkPASimulationBatchGeneratorParameters.h b/Modules/PhotoacousticsLib/include/mitkPASimulationBatchGeneratorParameters.h index 91c58f2329a..32d99f98a67 100644 --- a/Modules/PhotoacousticsLib/include/mitkPASimulationBatchGeneratorParameters.h +++ b/Modules/PhotoacousticsLib/include/mitkPASimulationBatchGeneratorParameters.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICSimulationBatchGENERATORPARAMETERS_H #define MITKPHOTOACOUSTICSimulationBatchGENERATORPARAMETERS_H diff --git a/Modules/PhotoacousticsLib/include/mitkPASlicedVolumeGenerator.h b/Modules/PhotoacousticsLib/include/mitkPASlicedVolumeGenerator.h index 1dfe43f27cf..1316fab25b0 100644 --- a/Modules/PhotoacousticsLib/include/mitkPASlicedVolumeGenerator.h +++ b/Modules/PhotoacousticsLib/include/mitkPASlicedVolumeGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICSLICEDVOLUMEGENERATOR_H #define MITKPHOTOACOUSTICSLICEDVOLUMEGENERATOR_H diff --git a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterBase.h b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterBase.h index ae4fd3465b5..9dc1fcdf0c5 100644 --- a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterBase.h +++ b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICSPECTRALUNMIXINGFILTERBASE_H #define MITKPHOTOACOUSTICSPECTRALUNMIXINGFILTERBASE_H @@ -40,7 +36,7 @@ namespace mitk { * The "AddWavelength" uses "push_back" to write float values into a vector. The first wavelength will correspond to the first image!!! * If there a more input images 'I' then added wavelengths 'w' the filter base interprets the next x images as repetition sequence of the same * wavelengths. If I % w !=0 the surplus image(s) will be dropped. - * Addtionaly one has to add chromophores from the property calculator class enum "ChromophoreType" with the "AddChromophore" method. + * Addtionaly one has to add chromophores from the property calculator class enum "ChromophoreType" with the "AddChromophore" method. * This method as well uses "push_back" but the chosen (arbitary) order will be the order of the outputs. * * Output: @@ -57,7 +53,7 @@ namespace mitk { * - "PIXELTYPE ERROR! FLOAT 32 REQUIRED": The MITK input image has to consist out of floats. * - "ERROR! REMOVE WAVELENGTHS!": One needs at least the same amount of images (z-dimension) then added wavelengths. * - "ADD MORE WAVELENGTHS!": One needs at least the same amount of wavelengths then added chromophores. - * - "WAVELENGTH XXX nm NOT SUPPORTED!": The wavelength is not part of the proptery calculater data base. The data base can be found @ + * - "WAVELENGTH XXX nm NOT SUPPORTED!": The wavelength is not part of the proptery calculater data base. The data base can be found @ * [...]\mitk\Modules\PhotoacousticsLib\Resources\spectralLIB.dat * - "ADD OUTPUTS HAS TO BE LARGER THEN ZERO!" * - "NO WAVELENGHTS/CHROMOPHORES SELECZED! @@ -121,7 +117,7 @@ namespace mitk { /** * \brief The subclasses will override the mehtod to calculate the spectral unmixing result vector. - * @param endmemberMatrix Matrix with number of chromophores colums and number of wavelengths rows so matrix element (i,j) contains + * @param endmemberMatrix Matrix with number of chromophores colums and number of wavelengths rows so matrix element (i,j) contains * the absorbtion of chromophore j @ wavelength i taken from the database by PropertyElement method. * @param inputVector Vector containing values of one pixel of XY-plane image with number of wavelength rows (z-dimension of a sequenece) * so the pixelvalue of the first wavelength is stored in inputVector[0] and so on. @@ -164,7 +160,7 @@ namespace mitk { void GenerateData() override; /* - * \brief Creats a Matrix with number of chromophores colums and number of wavelengths rows so matrix element (i,j) contains + * \brief Creats a Matrix with number of chromophores colums and number of wavelengths rows so matrix element (i,j) contains * the absorbtion of chromophore j @ wavelength i. The absorbtion values are taken from the "PropertyElement" method. * @param m_Chromophore is a vector of "PropertyCalculator::ChromophoreType" containing all selected chromophores for the unmixing * @param m_Wavelength is a vector of integers containing all wavelengths of one sequence @@ -173,7 +169,7 @@ namespace mitk { std::vector m_Chromophore, std::vector m_Wavelength); /* - * \brief "PropertyElement" is the tool to access the absorbtion values out of the database using mitk::pa::PropertyCalculator::GetAbsorptionForWavelengt + * \brief "PropertyElement" is the tool to access the absorbtion values out of the database using mitk::pa::PropertyCalculator::GetAbsorptionForWavelengt * and checks if the requested wavelength is part of the database (not zero values). The "ONEENDMEMBER" is a pseudo absorber with static absorbtion 1 * at every wavelength and is therefor not part of the database. If this one is the selected chromophore the return value is 1 for every wavelength. * @param wavelength has to be integer between 300 and 1000 nm diff --git a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterLagrange.h b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterLagrange.h index 89d07c7144a..53b09221d93 100644 --- a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterLagrange.h +++ b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterLagrange.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICSPECTRALUNMIXINGFILTERLAGRANGE_H #define MITKPHOTOACOUSTICSPECTRALUNMIXINGFILTERLAGRANGE_H @@ -32,7 +28,7 @@ namespace mitk { protected: SpectralUnmixingFilterLagrange(); ~SpectralUnmixingFilterLagrange() override; - + private: }; diff --git a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterSimplex.h b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterSimplex.h index bf9272d21cb..eb908b6266e 100644 --- a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterSimplex.h +++ b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterSimplex.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICSPECTRALUNMIXINGFILTERSIMPLEX_H #define MITKPHOTOACOUSTICSPECTRALUNMIXINGFILTERSIMPLEX_H diff --git a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterVigra.h b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterVigra.h index 4291f44b06e..fe27824f262 100644 --- a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterVigra.h +++ b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingFilterVigra.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICSPECTRALUNMIXINGFILTERVIGRA_H #define MITKPHOTOACOUSTICSPECTRALUNMIXINGFILTERVIGRA_H diff --git a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingSO2.h b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingSO2.h index 9ea8d40ed5a..4104269af6c 100644 --- a/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingSO2.h +++ b/Modules/PhotoacousticsLib/include/mitkPASpectralUnmixingSO2.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICSPECTRALUNMIXINGSO2_H #define MITKPHOTOACOUSTICSPECTRALUNMIXINGSO2_H diff --git a/Modules/PhotoacousticsLib/include/mitkPATissueGenerator.h b/Modules/PhotoacousticsLib/include/mitkPATissueGenerator.h index 92f7ab0610b..eb4c4450f76 100644 --- a/Modules/PhotoacousticsLib/include/mitkPATissueGenerator.h +++ b/Modules/PhotoacousticsLib/include/mitkPATissueGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPhotoacousticTissueGenerator_h #define mitkPhotoacousticTissueGenerator_h diff --git a/Modules/PhotoacousticsLib/include/mitkPATissueGeneratorParameters.h b/Modules/PhotoacousticsLib/include/mitkPATissueGeneratorParameters.h index 429a970faa1..904bb78083e 100644 --- a/Modules/PhotoacousticsLib/include/mitkPATissueGeneratorParameters.h +++ b/Modules/PhotoacousticsLib/include/mitkPATissueGeneratorParameters.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTICTISSUEGENERATORPARAMETERS_H #define MITKPHOTOACOUSTICTISSUEGENERATORPARAMETERS_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAVector.h b/Modules/PhotoacousticsLib/include/mitkPAVector.h index b4901b7248e..163d59f17f2 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAVector.h +++ b/Modules/PhotoacousticsLib/include/mitkPAVector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSMARTVECTOR_H #define MITKSMARTVECTOR_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAVessel.h b/Modules/PhotoacousticsLib/include/mitkPAVessel.h index 096c9621492..57dae2bac4c 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAVessel.h +++ b/Modules/PhotoacousticsLib/include/mitkPAVessel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVESSEL_H #define MITKVESSEL_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAVesselDrawer.h b/Modules/PhotoacousticsLib/include/mitkPAVesselDrawer.h index 763d6cacd53..03453e94535 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAVesselDrawer.h +++ b/Modules/PhotoacousticsLib/include/mitkPAVesselDrawer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVESSELDRAWER_H #define MITKVESSELDRAWER_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAVesselMeanderStrategy.h b/Modules/PhotoacousticsLib/include/mitkPAVesselMeanderStrategy.h index 600832bbc02..e282eab94d3 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAVesselMeanderStrategy.h +++ b/Modules/PhotoacousticsLib/include/mitkPAVesselMeanderStrategy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVESSELMEANDERSTRATEGY_H #define MITKVESSELMEANDERSTRATEGY_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAVesselProperties.h b/Modules/PhotoacousticsLib/include/mitkPAVesselProperties.h index f19be3a4d2e..00bbaaf2ee1 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAVesselProperties.h +++ b/Modules/PhotoacousticsLib/include/mitkPAVesselProperties.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPhotoacousticVesselParameters_H #define MITKPhotoacousticVesselParameters_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAVesselTree.h b/Modules/PhotoacousticsLib/include/mitkPAVesselTree.h index f57d057ae59..b3e67c8e79e 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAVesselTree.h +++ b/Modules/PhotoacousticsLib/include/mitkPAVesselTree.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKVESSELSTRUCTURE_H #define MITKVESSELSTRUCTURE_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAVolume.h b/Modules/PhotoacousticsLib/include/mitkPAVolume.h index bf0494f34f7..19845196454 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAVolume.h +++ b/Modules/PhotoacousticsLib/include/mitkPAVolume.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTIC3dVOLUME_H #define MITKPHOTOACOUSTIC3dVOLUME_H diff --git a/Modules/PhotoacousticsLib/include/mitkPAVolumeManipulator.h b/Modules/PhotoacousticsLib/include/mitkPAVolumeManipulator.h index 6aa58d988e1..950a0ac28c3 100644 --- a/Modules/PhotoacousticsLib/include/mitkPAVolumeManipulator.h +++ b/Modules/PhotoacousticsLib/include/mitkPAVolumeManipulator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPHOTOACOUSTIC3DVOLUMEMANIPULATOR_H #define MITKPHOTOACOUSTIC3DVOLUMEMANIPULATOR_H diff --git a/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVessel.cpp b/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVessel.cpp index f159e9203fe..3d2612927e7 100644 --- a/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVessel.cpp +++ b/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVessel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAVessel.h" #include diff --git a/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselMeanderStrategy.cpp b/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselMeanderStrategy.cpp index 10ebdb9e7ef..fdd10f8cda3 100644 --- a/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselMeanderStrategy.cpp +++ b/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselMeanderStrategy.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAVesselMeanderStrategy.h" diff --git a/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselProperties.cpp b/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselProperties.cpp index c3800ef1718..fca82cfe7b4 100644 --- a/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselProperties.cpp +++ b/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselProperties.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAVesselProperties.h" diff --git a/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselTree.cpp b/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselTree.cpp index 5dd1a8f5a6b..31650d26def 100644 --- a/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselTree.cpp +++ b/Modules/PhotoacousticsLib/src/Domain/Vessel/mitkPAVesselTree.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAVesselTree.h" #include "thread" diff --git a/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAComposedVolume.cpp b/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAComposedVolume.cpp index 237cb17d022..f515bc9f17d 100644 --- a/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAComposedVolume.cpp +++ b/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAComposedVolume.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAComposedVolume.h" #include "mitkIOUtil.h" #include "mitkImageReadAccessor.h" diff --git a/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAFluenceYOffsetPair.cpp b/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAFluenceYOffsetPair.cpp index b38d61c9ae8..73cc7edfb6c 100644 --- a/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAFluenceYOffsetPair.cpp +++ b/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAFluenceYOffsetPair.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAFluenceYOffsetPair.h" mitk::pa::FluenceYOffsetPair::FluenceYOffsetPair(mitk::pa::Volume::Pointer fluenceValue, double yOffset) diff --git a/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAInSilicoTissueVolume.cpp b/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAInSilicoTissueVolume.cpp index 6a6ecc8a951..331c90c03b7 100644 --- a/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAInSilicoTissueVolume.cpp +++ b/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAInSilicoTissueVolume.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAVolume.cpp b/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAVolume.cpp index 8ae9e32bb20..93fade9690d 100644 --- a/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAVolume.cpp +++ b/Modules/PhotoacousticsLib/src/Domain/Volume/mitkPAVolume.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAVolume.h" #include diff --git a/Modules/PhotoacousticsLib/src/Generator/mitkPANoiseGenerator.cpp b/Modules/PhotoacousticsLib/src/Generator/mitkPANoiseGenerator.cpp index 1bbf0013188..1ba0e436131 100644 --- a/Modules/PhotoacousticsLib/src/Generator/mitkPANoiseGenerator.cpp +++ b/Modules/PhotoacousticsLib/src/Generator/mitkPANoiseGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPANoiseGenerator.h" #include "mitkPAIOUtil.h" diff --git a/Modules/PhotoacousticsLib/src/Generator/mitkPAPhantomTissueGenerator.cpp b/Modules/PhotoacousticsLib/src/Generator/mitkPAPhantomTissueGenerator.cpp index 167e30b0bb4..e129ec805aa 100644 --- a/Modules/PhotoacousticsLib/src/Generator/mitkPAPhantomTissueGenerator.cpp +++ b/Modules/PhotoacousticsLib/src/Generator/mitkPAPhantomTissueGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAPhantomTissueGenerator.h" #include "mitkPAVector.h" diff --git a/Modules/PhotoacousticsLib/src/Generator/mitkPASimulationBatchGenerator.cpp b/Modules/PhotoacousticsLib/src/Generator/mitkPASimulationBatchGenerator.cpp index 54c4a829fef..973fb6730b1 100644 --- a/Modules/PhotoacousticsLib/src/Generator/mitkPASimulationBatchGenerator.cpp +++ b/Modules/PhotoacousticsLib/src/Generator/mitkPASimulationBatchGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPASimulationBatchGenerator.h" #include diff --git a/Modules/PhotoacousticsLib/src/Generator/mitkPASimulationBatchGeneratorParameters.cpp b/Modules/PhotoacousticsLib/src/Generator/mitkPASimulationBatchGeneratorParameters.cpp index 5c534ae65d1..20f78d606f5 100644 --- a/Modules/PhotoacousticsLib/src/Generator/mitkPASimulationBatchGeneratorParameters.cpp +++ b/Modules/PhotoacousticsLib/src/Generator/mitkPASimulationBatchGeneratorParameters.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPASimulationBatchGeneratorParameters.h" diff --git a/Modules/PhotoacousticsLib/src/Generator/mitkPASlicedVolumeGenerator.cpp b/Modules/PhotoacousticsLib/src/Generator/mitkPASlicedVolumeGenerator.cpp index cd6cf1ea7a8..dfa4c659b86 100644 --- a/Modules/PhotoacousticsLib/src/Generator/mitkPASlicedVolumeGenerator.cpp +++ b/Modules/PhotoacousticsLib/src/Generator/mitkPASlicedVolumeGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPASlicedVolumeGenerator.h" #include diff --git a/Modules/PhotoacousticsLib/src/Generator/mitkPATissueGenerator.cpp b/Modules/PhotoacousticsLib/src/Generator/mitkPATissueGenerator.cpp index cbe23af73db..8bca26a705f 100644 --- a/Modules/PhotoacousticsLib/src/Generator/mitkPATissueGenerator.cpp +++ b/Modules/PhotoacousticsLib/src/Generator/mitkPATissueGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPATissueGenerator.h" #include "mitkPAVector.h" diff --git a/Modules/PhotoacousticsLib/src/IO/mitkPAIOUtil.cpp b/Modules/PhotoacousticsLib/src/IO/mitkPAIOUtil.cpp index 06f2f84d8bf..3fe9583c7ec 100644 --- a/Modules/PhotoacousticsLib/src/IO/mitkPAIOUtil.cpp +++ b/Modules/PhotoacousticsLib/src/IO/mitkPAIOUtil.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkPAIOUtil.h" #include "mitkIOUtil.h" diff --git a/Modules/PhotoacousticsLib/src/SUFilter/mitkPALinearSpectralUnmixingFilter.cpp b/Modules/PhotoacousticsLib/src/SUFilter/mitkPALinearSpectralUnmixingFilter.cpp index ec6b845795e..0a83f8faadc 100644 --- a/Modules/PhotoacousticsLib/src/SUFilter/mitkPALinearSpectralUnmixingFilter.cpp +++ b/Modules/PhotoacousticsLib/src/SUFilter/mitkPALinearSpectralUnmixingFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPALinearSpectralUnmixingFilter.h" diff --git a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterBase.cpp b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterBase.cpp index 798354dc550..71d9fc6e141 100644 --- a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterBase.cpp +++ b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPASpectralUnmixingFilterBase.h" @@ -92,7 +88,7 @@ void mitk::pa::SpectralUnmixingFilterBase::GenerateData() MITK_INFO(m_Verbose) << "TotalNumberOfSequences: " << totalNumberOfSequences; InitializeOutputs(totalNumberOfSequences); - + auto endmemberMatrix = CalculateEndmemberMatrix(m_Chromophore, m_Wavelength); // test to see pixel values @ txt file diff --git a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterLagrange.cpp b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterLagrange.cpp index bfecfca51fc..bb17f63882a 100644 --- a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterLagrange.cpp +++ b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterLagrange.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPASpectralUnmixingFilterLagrange.h" @@ -23,7 +19,7 @@ See LICENSE.txt or http://www.mitk.org for details. mitk::pa::SpectralUnmixingFilterLagrange::SpectralUnmixingFilterLagrange() { - + } mitk::pa::SpectralUnmixingFilterLagrange::~SpectralUnmixingFilterLagrange() diff --git a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterSimplex.cpp b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterSimplex.cpp index 7fb91f31594..ed9ef82ce65 100644 --- a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterSimplex.cpp +++ b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterSimplex.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterVigra.cpp b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterVigra.cpp index f95d5580335..878e331e069 100644 --- a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterVigra.cpp +++ b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingFilterVigra.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPASpectralUnmixingFilterVigra.h" diff --git a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingSO2.cpp b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingSO2.cpp index 85fed87b2b7..f774b82f0a7 100644 --- a/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingSO2.cpp +++ b/Modules/PhotoacousticsLib/src/SUFilter/mitkPASpectralUnmixingSO2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPASpectralUnmixingSO2.h" diff --git a/Modules/PhotoacousticsLib/src/Utils/ProbeDesign/mitkPALightSource.cpp b/Modules/PhotoacousticsLib/src/Utils/ProbeDesign/mitkPALightSource.cpp index 983ed2e1a02..5de81de1b1a 100644 --- a/Modules/PhotoacousticsLib/src/Utils/ProbeDesign/mitkPALightSource.cpp +++ b/Modules/PhotoacousticsLib/src/Utils/ProbeDesign/mitkPALightSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPALightSource.h" #include diff --git a/Modules/PhotoacousticsLib/src/Utils/ProbeDesign/mitkPAProbe.cpp b/Modules/PhotoacousticsLib/src/Utils/ProbeDesign/mitkPAProbe.cpp index 4aebe6f9b6a..3293dbdce5c 100644 --- a/Modules/PhotoacousticsLib/src/Utils/ProbeDesign/mitkPAProbe.cpp +++ b/Modules/PhotoacousticsLib/src/Utils/ProbeDesign/mitkPAProbe.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAProbe.h" diff --git a/Modules/PhotoacousticsLib/src/Utils/Thread/mitkPAMonteCarloThreadHandler.cpp b/Modules/PhotoacousticsLib/src/Utils/Thread/mitkPAMonteCarloThreadHandler.cpp index f8e98d8ae51..1d6ac5a5822 100644 --- a/Modules/PhotoacousticsLib/src/Utils/Thread/mitkPAMonteCarloThreadHandler.cpp +++ b/Modules/PhotoacousticsLib/src/Utils/Thread/mitkPAMonteCarloThreadHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAMonteCarloThreadHandler.h" #include "mitkCommon.h" diff --git a/Modules/PhotoacousticsLib/src/Utils/mitkPAPropertyCalculator.cpp b/Modules/PhotoacousticsLib/src/Utils/mitkPAPropertyCalculator.cpp index 1eeeb142581..72cdd4f783c 100644 --- a/Modules/PhotoacousticsLib/src/Utils/mitkPAPropertyCalculator.cpp +++ b/Modules/PhotoacousticsLib/src/Utils/mitkPAPropertyCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAPropertyCalculator.h" // us diff --git a/Modules/PhotoacousticsLib/src/Utils/mitkPATissueGeneratorParameters.cpp b/Modules/PhotoacousticsLib/src/Utils/mitkPATissueGeneratorParameters.cpp index 7f478d3ddab..af644788e23 100644 --- a/Modules/PhotoacousticsLib/src/Utils/mitkPATissueGeneratorParameters.cpp +++ b/Modules/PhotoacousticsLib/src/Utils/mitkPATissueGeneratorParameters.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPATissueGeneratorParameters.h" diff --git a/Modules/PhotoacousticsLib/src/Utils/mitkPAVector.cpp b/Modules/PhotoacousticsLib/src/Utils/mitkPAVector.cpp index 4c15f750643..fd820728903 100644 --- a/Modules/PhotoacousticsLib/src/Utils/mitkPAVector.cpp +++ b/Modules/PhotoacousticsLib/src/Utils/mitkPAVector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAVector.h" #include "chrono" diff --git a/Modules/PhotoacousticsLib/src/Utils/mitkPAVesselDrawer.cpp b/Modules/PhotoacousticsLib/src/Utils/mitkPAVesselDrawer.cpp index 92c69dff1df..30c46f0432b 100644 --- a/Modules/PhotoacousticsLib/src/Utils/mitkPAVesselDrawer.cpp +++ b/Modules/PhotoacousticsLib/src/Utils/mitkPAVesselDrawer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAVesselDrawer.h" #include "mitkPAVesselProperties.h" diff --git a/Modules/PhotoacousticsLib/src/Utils/mitkPAVolumeManipulator.cpp b/Modules/PhotoacousticsLib/src/Utils/mitkPAVolumeManipulator.cpp index c5f728505e9..89c609158b8 100644 --- a/Modules/PhotoacousticsLib/src/Utils/mitkPAVolumeManipulator.cpp +++ b/Modules/PhotoacousticsLib/src/Utils/mitkPAVolumeManipulator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPAVolumeManipulator.h" #include "mitkPAExceptions.h" diff --git a/Modules/PhotoacousticsLib/test/mitkMCThreadHandlerTest.cpp b/Modules/PhotoacousticsLib/test/mitkMCThreadHandlerTest.cpp index c95c264f8ac..65247b86a2b 100644 --- a/Modules/PhotoacousticsLib/test/mitkMCThreadHandlerTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkMCThreadHandlerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkMcxyzXmlTest.cpp b/Modules/PhotoacousticsLib/test/mitkMcxyzXmlTest.cpp index 441b0e755e2..ac773e63090 100644 --- a/Modules/PhotoacousticsLib/test/mitkMcxyzXmlTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkMcxyzXmlTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacoustic3dVolumeTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacoustic3dVolumeTest.cpp index 8ee9bf73c7a..8452bdc5b76 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacoustic3dVolumeTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacoustic3dVolumeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticComposedVolumeTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticComposedVolumeTest.cpp index 970ddeb5088..5d5b05a955d 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticComposedVolumeTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticComposedVolumeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticIOTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticIOTest.cpp index ba66cf20998..c242b55f463 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticIOTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticNoiseGeneratorTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticNoiseGeneratorTest.cpp index 30a43b9292e..38a5b5f3ce0 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticNoiseGeneratorTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticNoiseGeneratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticTissueGeneratorTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticTissueGeneratorTest.cpp index a5107c27bc8..7168f292faa 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticTissueGeneratorTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticTissueGeneratorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVectorTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVectorTest.cpp index 7c7e18cff94..ac579e29b60 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVectorTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVectorTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselMeanderStrategyTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselMeanderStrategyTest.cpp index 4f870668452..717c60ede0d 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselMeanderStrategyTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselMeanderStrategyTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselTest.cpp index a943cb358b3..ac144f5b577 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselTreeTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselTreeTest.cpp index 5afba9ce0d8..058f6d1d052 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselTreeTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVesselTreeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVolumeTest.cpp b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVolumeTest.cpp index 855f70bcce0..e92fdfc1f37 100644 --- a/Modules/PhotoacousticsLib/test/mitkPhotoacousticVolumeTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPhotoacousticVolumeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkPropertyCalculatorTest.cpp b/Modules/PhotoacousticsLib/test/mitkPropertyCalculatorTest.cpp index 3064f6f835b..1b780a7fa6d 100644 --- a/Modules/PhotoacousticsLib/test/mitkPropertyCalculatorTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkPropertyCalculatorTest.cpp @@ -1,18 +1,14 @@ -///*=================================================================== +/*============================================================================ -//The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) -//Copyright (c) German Cancer Research Center, -//Division of Medical and Biological Informatics. -//All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -//This software is distributed WITHOUT ANY WARRANTY; without -//even the implied warranty of MERCHANTABILITY or FITNESS FOR -//A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -//See LICENSE.txt or http://www.mitk.org for details. - -//===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkSimulationBatchGeneratorTest.cpp b/Modules/PhotoacousticsLib/test/mitkSimulationBatchGeneratorTest.cpp index 10fdbbde73d..7c8f44b1dec 100644 --- a/Modules/PhotoacousticsLib/test/mitkSimulationBatchGeneratorTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkSimulationBatchGeneratorTest.cpp @@ -1,18 +1,14 @@ -///*=================================================================== +/*============================================================================ -//The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) -//Copyright (c) German Cancer Research Center, -//Division of Medical and Biological Informatics. -//All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -//This software is distributed WITHOUT ANY WARRANTY; without -//even the implied warranty of MERCHANTABILITY or FITNESS FOR -//A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -//See LICENSE.txt or http://www.mitk.org for details. - -//===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkSlicedVolumeGeneratorTest.cpp b/Modules/PhotoacousticsLib/test/mitkSlicedVolumeGeneratorTest.cpp index aab23e0aa2f..85f28da73f8 100644 --- a/Modules/PhotoacousticsLib/test/mitkSlicedVolumeGeneratorTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkSlicedVolumeGeneratorTest.cpp @@ -1,18 +1,14 @@ -///*=================================================================== +/*============================================================================ -//The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) -//Copyright (c) German Cancer Research Center, -//Division of Medical and Biological Informatics. -//All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -//This software is distributed WITHOUT ANY WARRANTY; without -//even the implied warranty of MERCHANTABILITY or FITNESS FOR -//A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -//See LICENSE.txt or http://www.mitk.org for details. - -//===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PhotoacousticsLib/test/mitkSpectralUnmixingTest.cpp b/Modules/PhotoacousticsLib/test/mitkSpectralUnmixingTest.cpp index ffdede367a0..fc449d4b35b 100644 --- a/Modules/PhotoacousticsLib/test/mitkSpectralUnmixingTest.cpp +++ b/Modules/PhotoacousticsLib/test/mitkSpectralUnmixingTest.cpp @@ -1,18 +1,14 @@ -//*=================================================================== +/*============================================================================ -//The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) -//Copyright (c) German Cancer Research Center, -//Division of Medical and Biological Informatics. -//All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -//This software is distributed WITHOUT ANY WARRANTY; without -//even the implied warranty of MERCHANTABILITY or FITNESS FOR -//A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -//See LICENSE.txt or http://www.mitk.org for details. - -//===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/PlanarFigure/include/mitkExtrudePlanarFigureFilter.h b/Modules/PlanarFigure/include/mitkExtrudePlanarFigureFilter.h index b21da6ed73b..bda249af0f2 100644 --- a/Modules/PlanarFigure/include/mitkExtrudePlanarFigureFilter.h +++ b/Modules/PlanarFigure/include/mitkExtrudePlanarFigureFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkExtrudePlanarFigureFilter_h #define mitkExtrudePlanarFigureFilter_h diff --git a/Modules/PlanarFigure/include/mitkImageToPlanarFigureFilter.h b/Modules/PlanarFigure/include/mitkImageToPlanarFigureFilter.h index fab1f503851..3ad4d786a3f 100644 --- a/Modules/PlanarFigure/include/mitkImageToPlanarFigureFilter.h +++ b/Modules/PlanarFigure/include/mitkImageToPlanarFigureFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IMAGETOPLANARFIGUREFILTER_H_HEADER_INCLUDED_C1E5E869 #define IMAGETOPLANARFIGUREFILTER_H_HEADER_INCLUDED_C1E5E869 diff --git a/Modules/PlanarFigure/include/mitkPlanarAngle.h b/Modules/PlanarFigure/include/mitkPlanarAngle.h index c3cdcc72b3e..5db0957d105 100644 --- a/Modules/PlanarFigure/include/mitkPlanarAngle.h +++ b/Modules/PlanarFigure/include/mitkPlanarAngle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_ANGLE_H_ #define _MITK_PLANAR_ANGLE_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarArrow.h b/Modules/PlanarFigure/include/mitkPlanarArrow.h index 06fee112143..affb172ad7b 100644 --- a/Modules/PlanarFigure/include/mitkPlanarArrow.h +++ b/Modules/PlanarFigure/include/mitkPlanarArrow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_ARROW_H_ #define _MITK_PLANAR_ARROW_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarBezierCurve.h b/Modules/PlanarFigure/include/mitkPlanarBezierCurve.h index 6eaf47a215a..4ddff9eb0e6 100644 --- a/Modules/PlanarFigure/include/mitkPlanarBezierCurve.h +++ b/Modules/PlanarFigure/include/mitkPlanarBezierCurve.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPlanarBezierCurve_h #define mitkPlanarBezierCurve_h diff --git a/Modules/PlanarFigure/include/mitkPlanarCircle.h b/Modules/PlanarFigure/include/mitkPlanarCircle.h index bd5ca4f9533..d1e56619bf9 100644 --- a/Modules/PlanarFigure/include/mitkPlanarCircle.h +++ b/Modules/PlanarFigure/include/mitkPlanarCircle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_CIRCLE_H_ #define _MITK_PLANAR_CIRCLE_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarCross.h b/Modules/PlanarFigure/include/mitkPlanarCross.h index b6132a0d102..9fe7d0a5360 100644 --- a/Modules/PlanarFigure/include/mitkPlanarCross.h +++ b/Modules/PlanarFigure/include/mitkPlanarCross.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_CROSS_H_ #define _MITK_PLANAR_CROSS_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarDoubleEllipse.h b/Modules/PlanarFigure/include/mitkPlanarDoubleEllipse.h index 6f238557ccc..5beca412701 100644 --- a/Modules/PlanarFigure/include/mitkPlanarDoubleEllipse.h +++ b/Modules/PlanarFigure/include/mitkPlanarDoubleEllipse.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPlanarDoubleEllipse_h #define mitkPlanarDoubleEllipse_h diff --git a/Modules/PlanarFigure/include/mitkPlanarEllipse.h b/Modules/PlanarFigure/include/mitkPlanarEllipse.h index 1e591e5bc8c..f3d84c08e98 100644 --- a/Modules/PlanarFigure/include/mitkPlanarEllipse.h +++ b/Modules/PlanarFigure/include/mitkPlanarEllipse.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_ELLIPSE_H_ #define _MITK_PLANAR_ELLIPSE_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarFigure.h b/Modules/PlanarFigure/include/mitkPlanarFigure.h index ada4fc879ce..7420d33bca5 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigure.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigure.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_FIGURE_H_ #define _MITK_PLANAR_FIGURE_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureControlPointStyleProperty.h b/Modules/PlanarFigure/include/mitkPlanarFigureControlPointStyleProperty.h index 62394a300bd..9950ae35767 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureControlPointStyleProperty.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureControlPointStyleProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPlanarFigureControlPointStyleProperty_h #define mitkPlanarFigureControlPointStyleProperty_h diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureInteractor.h b/Modules/PlanarFigure/include/mitkPlanarFigureInteractor.h index 973212d906d..7c6001084c9 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureInteractor.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLANARFIGUREINTERACTOR_H_HEADER_INCLUDED #define MITKPLANARFIGUREINTERACTOR_H_HEADER_INCLUDED diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureMapper2D.h b/Modules/PlanarFigure/include/mitkPlanarFigureMapper2D.h index b81f4142f97..ed3523b79bc 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureMapper2D.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_PLANAR_FIGURE_MAPPER_2D_H_ #define MITK_PLANAR_FIGURE_MAPPER_2D_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureObjectFactory.h b/Modules/PlanarFigure/include/mitkPlanarFigureObjectFactory.h index a3d69153495..8dc13433cd6 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureObjectFactory.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PLANARFIGUREOBJECTFACTORY_H_INCLUDED #define PLANARFIGUREOBJECTFACTORY_H_INCLUDED diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureReader.h b/Modules/PlanarFigure/include/mitkPlanarFigureReader.h index 869a67dbde0..d47da18ea88 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureReader.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PlanarFigureReader__H_ #define _MITK_PlanarFigureReader__H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureSource.h b/Modules/PlanarFigure/include/mitkPlanarFigureSource.h index 9725ed18546..400ec5af79f 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureSource.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPlanarFigureSOURCE_H_HEADER_INCLUDED #define MITKPlanarFigureSOURCE_H_HEADER_INCLUDED diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureToPlanarFigureFilter.h b/Modules/PlanarFigure/include/mitkPlanarFigureToPlanarFigureFilter.h index be57082c549..3300311ae73 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureToPlanarFigureFilter.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureToPlanarFigureFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPlanarFigureToPlanarFigureFilter_H_HEADER_INCLUDED #define MITKPlanarFigureToPlanarFigureFilter_H_HEADER_INCLUDED diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureVtkMapper3D.h b/Modules/PlanarFigure/include/mitkPlanarFigureVtkMapper3D.h index d96433b8e65..4ff8ddfa778 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureVtkMapper3D.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPlanarFigureVtkMapper3D_h #define mitkPlanarFigureVtkMapper3D_h diff --git a/Modules/PlanarFigure/include/mitkPlanarFigureWriter.h b/Modules/PlanarFigure/include/mitkPlanarFigureWriter.h index da8d6207be4..b8d1dfc97f3 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFigureWriter.h +++ b/Modules/PlanarFigure/include/mitkPlanarFigureWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PlanarFigure_WRITER__H_ #define _MITK_PlanarFigure_WRITER__H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarFourPointAngle.h b/Modules/PlanarFigure/include/mitkPlanarFourPointAngle.h index 22e3550be87..7f7d79ec98d 100644 --- a/Modules/PlanarFigure/include/mitkPlanarFourPointAngle.h +++ b/Modules/PlanarFigure/include/mitkPlanarFourPointAngle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_FOURPOINTANGLE_H_ #define _MITK_PLANAR_FOURPOINTANGLE_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarLine.h b/Modules/PlanarFigure/include/mitkPlanarLine.h index a2c845e9741..f867e246b06 100644 --- a/Modules/PlanarFigure/include/mitkPlanarLine.h +++ b/Modules/PlanarFigure/include/mitkPlanarLine.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_LINE_H_ #define _MITK_PLANAR_LINE_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarPolygon.h b/Modules/PlanarFigure/include/mitkPlanarPolygon.h index 442453c5630..743e6632e3a 100644 --- a/Modules/PlanarFigure/include/mitkPlanarPolygon.h +++ b/Modules/PlanarFigure/include/mitkPlanarPolygon.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_POLYGON_H_ #define _MITK_PLANAR_POLYGON_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarRectangle.h b/Modules/PlanarFigure/include/mitkPlanarRectangle.h index d874d05463b..a7aea7f3dd5 100644 --- a/Modules/PlanarFigure/include/mitkPlanarRectangle.h +++ b/Modules/PlanarFigure/include/mitkPlanarRectangle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_RECTANGLE_H_ #define _MITK_PLANAR_RECTANGLE_H_ diff --git a/Modules/PlanarFigure/include/mitkPlanarSubdivisionPolygon.h b/Modules/PlanarFigure/include/mitkPlanarSubdivisionPolygon.h index d39d58c75db..ef655677e45 100644 --- a/Modules/PlanarFigure/include/mitkPlanarSubdivisionPolygon.h +++ b/Modules/PlanarFigure/include/mitkPlanarSubdivisionPolygon.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_PLANAR_SUBDIVISION_POLYGON_H_ #define _MITK_PLANAR_SUBDIVISION_POLYGON_H_ diff --git a/Modules/PlanarFigure/src/Algorithms/mitkExtrudePlanarFigureFilter.cpp b/Modules/PlanarFigure/src/Algorithms/mitkExtrudePlanarFigureFilter.cpp index 3b470f6a8c5..645bd7245ce 100644 --- a/Modules/PlanarFigure/src/Algorithms/mitkExtrudePlanarFigureFilter.cpp +++ b/Modules/PlanarFigure/src/Algorithms/mitkExtrudePlanarFigureFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigure.h" #include diff --git a/Modules/PlanarFigure/src/Algorithms/mitkImageToPlanarFigureFilter.cpp b/Modules/PlanarFigure/src/Algorithms/mitkImageToPlanarFigureFilter.cpp index a604013e62b..64e48374ae8 100644 --- a/Modules/PlanarFigure/src/Algorithms/mitkImageToPlanarFigureFilter.cpp +++ b/Modules/PlanarFigure/src/Algorithms/mitkImageToPlanarFigureFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageToPlanarFigureFilter.h" diff --git a/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureObjectFactory.cpp b/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureObjectFactory.cpp index b7fb8dde90a..ab07c731b39 100644 --- a/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureObjectFactory.cpp +++ b/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureObjectFactory.h" #include "mitkPlanarFigureWriter.h" diff --git a/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureSource.cpp b/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureSource.cpp index 943b7fd6f6d..f7afa447ff7 100644 --- a/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureSource.cpp +++ b/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureSource.h" diff --git a/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureToPlanarFigureFilter.cpp b/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureToPlanarFigureFilter.cpp index b37df2305bf..7ffa7edce35 100644 --- a/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureToPlanarFigureFilter.cpp +++ b/Modules/PlanarFigure/src/Algorithms/mitkPlanarFigureToPlanarFigureFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureToPlanarFigureFilter.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarAngle.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarAngle.cpp index 572b3e6799b..527c30ef798 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarAngle.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarAngle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarAngle.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarArrow.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarArrow.cpp index 2a1dbdacb73..61d54587a79 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarArrow.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarArrow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarArrow.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarBezierCurve.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarBezierCurve.cpp index cf33d6e50ce..90cf67853d6 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarBezierCurve.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarBezierCurve.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarBezierCurve.h" #include diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarCircle.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarCircle.cpp index 497b8342439..199977f3db0 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarCircle.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarCircle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarCircle.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarCross.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarCross.cpp index d584a988174..d46ce81fae9 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarCross.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarCross.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarCross.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarDoubleEllipse.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarDoubleEllipse.cpp index 1bacf806218..f2fd9030f1b 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarDoubleEllipse.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarDoubleEllipse.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarDoubleEllipse.h" #include diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarEllipse.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarEllipse.cpp index 58a21ea2941..6627a6c8658 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarEllipse.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarEllipse.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarEllipse.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarFigure.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarFigure.cpp index 56615479d45..d135f3e58ab 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarFigure.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarFigure.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigure.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarFigureControlPointStyleProperty.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarFigureControlPointStyleProperty.cpp index 2bb79dfa22d..c257c2e6d26 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarFigureControlPointStyleProperty.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarFigureControlPointStyleProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureControlPointStyleProperty.h" mitk::PlanarFigureControlPointStyleProperty::PlanarFigureControlPointStyleProperty() diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarFourPointAngle.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarFourPointAngle.cpp index 9175affed05..63b362fc11c 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarFourPointAngle.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarFourPointAngle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFourPointAngle.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarLine.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarLine.cpp index abeac4f4989..890e074a1a7 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarLine.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarLine.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarLine.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarPolygon.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarPolygon.cpp index 92a225ebb97..bd1fc94fd3c 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarPolygon.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarPolygon.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarPolygon.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarRectangle.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarRectangle.cpp index 774266620f5..6ecdfd6ee93 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarRectangle.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarRectangle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkProperties.h" diff --git a/Modules/PlanarFigure/src/DataManagement/mitkPlanarSubdivisionPolygon.cpp b/Modules/PlanarFigure/src/DataManagement/mitkPlanarSubdivisionPolygon.cpp index 992b8dbf22f..34a4f621f32 100644 --- a/Modules/PlanarFigure/src/DataManagement/mitkPlanarSubdivisionPolygon.cpp +++ b/Modules/PlanarFigure/src/DataManagement/mitkPlanarSubdivisionPolygon.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarSubdivisionPolygon.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureIOFactory.cpp b/Modules/PlanarFigure/src/IO/mitkPlanarFigureIOFactory.cpp index 078d228b783..9c6d67781ca 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureIOFactory.cpp +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureIOFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureIOFactory.h" #include "mitkIOAdapter.h" diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureIOFactory.h b/Modules/PlanarFigure/src/IO/mitkPlanarFigureIOFactory.h index adef0f90436..f7f3b161ef6 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureIOFactory.h +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureIOFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkPlanarFigureIOFactory_h #define __mitkPlanarFigureIOFactory_h diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureReader.cpp b/Modules/PlanarFigure/src/IO/mitkPlanarFigureReader.cpp index df4fbe17a51..5aa97568ccb 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureReader.cpp +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureReader.h" diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureSerializer.cpp b/Modules/PlanarFigure/src/IO/mitkPlanarFigureSerializer.cpp index bcc60c22319..3cb1fb983b4 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureSerializer.cpp +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureSerializer.h" #include "mitkPlanarFigure.h" diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureSerializer.h b/Modules/PlanarFigure/src/IO/mitkPlanarFigureSerializer.h index df8429fa782..e456a425212 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureSerializer.h +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPlanarFigureSerializer_h_included #define mitkPlanarFigureSerializer_h_included diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureSubclassesSerializer.cpp b/Modules/PlanarFigure/src/IO/mitkPlanarFigureSubclassesSerializer.cpp index 7ac08d333cf..576541fefd1 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureSubclassesSerializer.cpp +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureSubclassesSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPlanarFiguresSubclassesSerializer_h_included #define mitkPlanarFiguresSubclassesSerializer_h_included diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriter.cpp b/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriter.cpp index 49c6b492ad1..ceec5adfb99 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriter.cpp +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureWriter.h" #include "mitkBasePropertySerializer.h" diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriterFactory.cpp b/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriterFactory.cpp index 0a69aecd16e..2b1ee14b9e2 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriterFactory.cpp +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriterFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureWriterFactory.h" diff --git a/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriterFactory.h b/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriterFactory.h index 94517c248af..9047ecc0773 100644 --- a/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriterFactory.h +++ b/Modules/PlanarFigure/src/IO/mitkPlanarFigureWriterFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PLANARFIGURE_WRITERFACTORY_H_HEADER_INCLUDED #define PLANARFIGURE_WRITERFACTORY_H_HEADER_INCLUDED diff --git a/Modules/PlanarFigure/src/Interactions/mitkPlanarFigureInteractor.cpp b/Modules/PlanarFigure/src/Interactions/mitkPlanarFigureInteractor.cpp index 7fefadf5fc9..82f60c6d4c9 100644 --- a/Modules/PlanarFigure/src/Interactions/mitkPlanarFigureInteractor.cpp +++ b/Modules/PlanarFigure/src/Interactions/mitkPlanarFigureInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define PLANARFIGUREINTERACTOR_DBG MITK_DEBUG("PlanarFigureInteractor") << __LINE__ << ": " diff --git a/Modules/PlanarFigure/src/Rendering/mitkPlanarFigureMapper2D.cpp b/Modules/PlanarFigure/src/Rendering/mitkPlanarFigureMapper2D.cpp index b4d9a60e906..abb316d7ad5 100644 --- a/Modules/PlanarFigure/src/Rendering/mitkPlanarFigureMapper2D.cpp +++ b/Modules/PlanarFigure/src/Rendering/mitkPlanarFigureMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureMapper2D.h" diff --git a/Modules/PlanarFigure/src/Rendering/mitkPlanarFigureVtkMapper3D.cpp b/Modules/PlanarFigure/src/Rendering/mitkPlanarFigureVtkMapper3D.cpp index a5aee606224..98ea7850794 100644 --- a/Modules/PlanarFigure/src/Rendering/mitkPlanarFigureVtkMapper3D.cpp +++ b/Modules/PlanarFigure/src/Rendering/mitkPlanarFigureVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureVtkMapper3D.h" #include "mitkAbstractTransformGeometry.h" diff --git a/Modules/PlanarFigure/test/mitkPlanarArrowTest.cpp b/Modules/PlanarFigure/test/mitkPlanarArrowTest.cpp index 62a3542f41e..8f43a8eedb8 100644 --- a/Modules/PlanarFigure/test/mitkPlanarArrowTest.cpp +++ b/Modules/PlanarFigure/test/mitkPlanarArrowTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarArrow.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/test/mitkPlanarCrossTest.cpp b/Modules/PlanarFigure/test/mitkPlanarCrossTest.cpp index aa4cb650564..2814defc7f7 100644 --- a/Modules/PlanarFigure/test/mitkPlanarCrossTest.cpp +++ b/Modules/PlanarFigure/test/mitkPlanarCrossTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarCross.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/test/mitkPlanarFigureIOTest.cpp b/Modules/PlanarFigure/test/mitkPlanarFigureIOTest.cpp index 1105cf5d933..dc58e9e5a7d 100644 --- a/Modules/PlanarFigure/test/mitkPlanarFigureIOTest.cpp +++ b/Modules/PlanarFigure/test/mitkPlanarFigureIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" diff --git a/Modules/PlanarFigure/test/mitkPlanarFigureInteractionTest.cpp b/Modules/PlanarFigure/test/mitkPlanarFigureInteractionTest.cpp index 7f68db6cf1a..ed99c4df762 100644 --- a/Modules/PlanarFigure/test/mitkPlanarFigureInteractionTest.cpp +++ b/Modules/PlanarFigure/test/mitkPlanarFigureInteractionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/PlanarFigure/test/mitkPlanarPolygonTest.cpp b/Modules/PlanarFigure/test/mitkPlanarPolygonTest.cpp index 4918b0f4225..02706c95213 100644 --- a/Modules/PlanarFigure/test/mitkPlanarPolygonTest.cpp +++ b/Modules/PlanarFigure/test/mitkPlanarPolygonTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarPolygon.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/test/mitkPlanarSubdivisionPolygonTest.cpp b/Modules/PlanarFigure/test/mitkPlanarSubdivisionPolygonTest.cpp index 44e9b9c71c9..a3cc018cb64 100644 --- a/Modules/PlanarFigure/test/mitkPlanarSubdivisionPolygonTest.cpp +++ b/Modules/PlanarFigure/test/mitkPlanarSubdivisionPolygonTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarSubdivisionPolygon.h" #include "mitkPlaneGeometry.h" diff --git a/Modules/PlanarFigure/test/mitkViewportRenderingTest.cpp b/Modules/PlanarFigure/test/mitkViewportRenderingTest.cpp index cac1611d142..662e5775078 100644 --- a/Modules/PlanarFigure/test/mitkViewportRenderingTest.cpp +++ b/Modules/PlanarFigure/test/mitkViewportRenderingTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkColorProperty.h" diff --git a/Modules/Python/autoload/PythonService/mitkPythonActivator.cpp b/Modules/Python/autoload/PythonService/mitkPythonActivator.cpp index 7d770d44d25..d58ba5cf273 100644 --- a/Modules/Python/autoload/PythonService/mitkPythonActivator.cpp +++ b/Modules/Python/autoload/PythonService/mitkPythonActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPythonActivator_h #define mitkPythonActivator_h diff --git a/Modules/Python/autoload/PythonService/mitkPythonService.cpp b/Modules/Python/autoload/PythonService/mitkPythonService.cpp index 367e07f69df..de6dafd9d7f 100644 --- a/Modules/Python/autoload/PythonService/mitkPythonService.cpp +++ b/Modules/Python/autoload/PythonService/mitkPythonService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPythonService.h" #include diff --git a/Modules/Python/autoload/PythonService/mitkPythonService.h b/Modules/Python/autoload/PythonService/mitkPythonService.h index 40135c9303c..31338dd8e15 100644 --- a/Modules/Python/autoload/PythonService/mitkPythonService.h +++ b/Modules/Python/autoload/PythonService/mitkPythonService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPythonService_h #define mitkPythonService_h diff --git a/Modules/Python/mitkIPythonService.cpp b/Modules/Python/mitkIPythonService.cpp index 446636ddc2c..e52b7bb25e7 100644 --- a/Modules/Python/mitkIPythonService.cpp +++ b/Modules/Python/mitkIPythonService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIPythonService.h" diff --git a/Modules/Python/mitkIPythonService.h b/Modules/Python/mitkIPythonService.h index 935c8cd7fe9..eb9c4d1dadd 100644 --- a/Modules/Python/mitkIPythonService.h +++ b/Modules/Python/mitkIPythonService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIPythonService_h #define mitkIPythonService_h diff --git a/Modules/QtOverlays/QmitkCustomWidgetOverlay.cpp b/Modules/QtOverlays/QmitkCustomWidgetOverlay.cpp index ee8c23f44b0..d0eef033b82 100644 --- a/Modules/QtOverlays/QmitkCustomWidgetOverlay.cpp +++ b/Modules/QtOverlays/QmitkCustomWidgetOverlay.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCustomWidgetOverlay.h" diff --git a/Modules/QtOverlays/QmitkCustomWidgetOverlay.h b/Modules/QtOverlays/QmitkCustomWidgetOverlay.h index 09cdd47844a..684accc0ef9 100644 --- a/Modules/QtOverlays/QmitkCustomWidgetOverlay.h +++ b/Modules/QtOverlays/QmitkCustomWidgetOverlay.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCustomWidgetOverlay_H_HEADER_INCLUDED_C10DC4EB #define QmitkCustomWidgetOverlay_H_HEADER_INCLUDED_C10DC4EB diff --git a/Modules/QtOverlays/QmitkOverlay.cpp b/Modules/QtOverlays/QmitkOverlay.cpp index 43649c788b3..bda802286a6 100644 --- a/Modules/QtOverlays/QmitkOverlay.cpp +++ b/Modules/QtOverlays/QmitkOverlay.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOverlay.h" diff --git a/Modules/QtOverlays/QmitkOverlay.h b/Modules/QtOverlays/QmitkOverlay.h index 265b4680f8c..9f87c4cb27b 100644 --- a/Modules/QtOverlays/QmitkOverlay.h +++ b/Modules/QtOverlays/QmitkOverlay.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOVERLAY_H_HEADER_INCLUDED_C10DC4EB #define MITKOVERLAY_H_HEADER_INCLUDED_C10DC4EB diff --git a/Modules/QtOverlays/QmitkOverlayContainerWidget.cpp b/Modules/QtOverlays/QmitkOverlayContainerWidget.cpp index 0b3aeaf7d6d..d62978b0e31 100644 --- a/Modules/QtOverlays/QmitkOverlayContainerWidget.cpp +++ b/Modules/QtOverlays/QmitkOverlayContainerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOverlayContainerWidget.h" diff --git a/Modules/QtOverlays/QmitkOverlayContainerWidget.h b/Modules/QtOverlays/QmitkOverlayContainerWidget.h index f3ffc643498..d13e2a3a452 100644 --- a/Modules/QtOverlays/QmitkOverlayContainerWidget.h +++ b/Modules/QtOverlays/QmitkOverlayContainerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkOverlayContainerWidget_H_HEADER_INCLUDED_C10DC4EB #define QmitkOverlayContainerWidget_H_HEADER_INCLUDED_C10DC4EB diff --git a/Modules/QtOverlays/QmitkOverlayController.cpp b/Modules/QtOverlays/QmitkOverlayController.cpp index 44d005a6e6c..5e2a36cdd6d 100644 --- a/Modules/QtOverlays/QmitkOverlayController.cpp +++ b/Modules/QtOverlays/QmitkOverlayController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOverlayController.h" diff --git a/Modules/QtOverlays/QmitkOverlayController.h b/Modules/QtOverlays/QmitkOverlayController.h index 68dfc8cfe82..ef98f78d9f3 100644 --- a/Modules/QtOverlays/QmitkOverlayController.h +++ b/Modules/QtOverlays/QmitkOverlayController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOVERLAYCONTROLLER_H_HEADER_INCLUDED_C1E77191 #define MITKOVERLAYCONTROLLER_H_HEADER_INCLUDED_C1E77191 diff --git a/Modules/QtOverlays/QmitkScalarBar.cpp b/Modules/QtOverlays/QmitkScalarBar.cpp index 8aef482e09f..88bbe1526dd 100644 --- a/Modules/QtOverlays/QmitkScalarBar.cpp +++ b/Modules/QtOverlays/QmitkScalarBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkScalarBar.h" diff --git a/Modules/QtOverlays/QmitkScalarBar.h b/Modules/QtOverlays/QmitkScalarBar.h index 7a26b9077fa..e34e739bafa 100644 --- a/Modules/QtOverlays/QmitkScalarBar.h +++ b/Modules/QtOverlays/QmitkScalarBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSCALARBAR_H_HEADER_INCLUDED_C10DC4EB #define MITKSCALARBAR_H_HEADER_INCLUDED_C10DC4EB diff --git a/Modules/QtOverlays/QmitkScalarBarOverlay.cpp b/Modules/QtOverlays/QmitkScalarBarOverlay.cpp index b5ed623299f..d68d606c36f 100644 --- a/Modules/QtOverlays/QmitkScalarBarOverlay.cpp +++ b/Modules/QtOverlays/QmitkScalarBarOverlay.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkScalarBarOverlay.h" diff --git a/Modules/QtOverlays/QmitkScalarBarOverlay.h b/Modules/QtOverlays/QmitkScalarBarOverlay.h index ac576774f2f..b5502d6de0f 100644 --- a/Modules/QtOverlays/QmitkScalarBarOverlay.h +++ b/Modules/QtOverlays/QmitkScalarBarOverlay.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSCALARBAROVERLAY_H_HEADER_INCLUDED_C10DC4EB #define MITKSCALARBAROVERLAY_H_HEADER_INCLUDED_C10DC4EB diff --git a/Modules/QtOverlays/QmitkTextOverlay.cpp b/Modules/QtOverlays/QmitkTextOverlay.cpp index 84b887ec42b..ebdd4d70053 100644 --- a/Modules/QtOverlays/QmitkTextOverlay.cpp +++ b/Modules/QtOverlays/QmitkTextOverlay.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTextOverlay.h" diff --git a/Modules/QtOverlays/QmitkTextOverlay.h b/Modules/QtOverlays/QmitkTextOverlay.h index a42384c7fb8..56d1ce7e55c 100644 --- a/Modules/QtOverlays/QmitkTextOverlay.h +++ b/Modules/QtOverlays/QmitkTextOverlay.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTEXTOVERLAY_H_HEADER_INCLUDED_C10DC4EB #define MITKTEXTOVERLAY_H_HEADER_INCLUDED_C10DC4EB diff --git a/Modules/QtPython/QmitkCtkPythonShell.cpp b/Modules/QtPython/QmitkCtkPythonShell.cpp index 9ea407669c7..ebdbbf36d8c 100644 --- a/Modules/QtPython/QmitkCtkPythonShell.cpp +++ b/Modules/QtPython/QmitkCtkPythonShell.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCtkPythonShell.h" diff --git a/Modules/QtPython/QmitkCtkPythonShell.h b/Modules/QtPython/QmitkCtkPythonShell.h index 9cba0db1476..10c507a63d7 100644 --- a/Modules/QtPython/QmitkCtkPythonShell.h +++ b/Modules/QtPython/QmitkCtkPythonShell.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCtkPythonShell_h #define QmitkCtkPythonShell_h diff --git a/Modules/QtPython/QmitkPythonScriptEditorHighlighter.cpp b/Modules/QtPython/QmitkPythonScriptEditorHighlighter.cpp index 0e26100f74b..09356d65698 100644 --- a/Modules/QtPython/QmitkPythonScriptEditorHighlighter.cpp +++ b/Modules/QtPython/QmitkPythonScriptEditorHighlighter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPythonScriptEditorHighlighter.h" diff --git a/Modules/QtPython/QmitkPythonScriptEditorHighlighter.h b/Modules/QtPython/QmitkPythonScriptEditorHighlighter.h index 6b56b657351..a628b3ef5e9 100644 --- a/Modules/QtPython/QmitkPythonScriptEditorHighlighter.h +++ b/Modules/QtPython/QmitkPythonScriptEditorHighlighter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPythonScriptEditorHighlighter_h #define QmitkPythonScriptEditorHighlighter_h diff --git a/Modules/QtPython/QmitkPythonSnippets.cpp b/Modules/QtPython/QmitkPythonSnippets.cpp index a3cf24760d5..460ae115dd5 100644 --- a/Modules/QtPython/QmitkPythonSnippets.cpp +++ b/Modules/QtPython/QmitkPythonSnippets.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPythonSnippets.h" #include "QmitkPythonScriptEditorHighlighter.h" diff --git a/Modules/QtPython/QmitkPythonSnippets.h b/Modules/QtPython/QmitkPythonSnippets.h index 03621a93588..abec155fc27 100644 --- a/Modules/QtPython/QmitkPythonSnippets.h +++ b/Modules/QtPython/QmitkPythonSnippets.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkPythonSnippets_H #define _QmitkPythonSnippets_H diff --git a/Modules/QtPython/QmitkPythonTextEditor.cpp b/Modules/QtPython/QmitkPythonTextEditor.cpp index abc2e9f856a..29de17ca46a 100644 --- a/Modules/QtPython/QmitkPythonTextEditor.cpp +++ b/Modules/QtPython/QmitkPythonTextEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPythonTextEditor.h" diff --git a/Modules/QtPython/QmitkPythonTextEditor.h b/Modules/QtPython/QmitkPythonTextEditor.h index db701f2c829..2c347342007 100644 --- a/Modules/QtPython/QmitkPythonTextEditor.h +++ b/Modules/QtPython/QmitkPythonTextEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPYTHONTEXTEDITOR_H_ #define QMITKPYTHONTEXTEDITOR_H_ diff --git a/Modules/QtPython/QmitkPythonVariableStackTableModel.cpp b/Modules/QtPython/QmitkPythonVariableStackTableModel.cpp index 93d57881a4f..399903ff84d 100755 --- a/Modules/QtPython/QmitkPythonVariableStackTableModel.cpp +++ b/Modules/QtPython/QmitkPythonVariableStackTableModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPythonVariableStackTableModel.h" #include diff --git a/Modules/QtPython/QmitkPythonVariableStackTableModel.h b/Modules/QtPython/QmitkPythonVariableStackTableModel.h index cbcd798f70c..a9e8ac748f7 100755 --- a/Modules/QtPython/QmitkPythonVariableStackTableModel.h +++ b/Modules/QtPython/QmitkPythonVariableStackTableModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPythonVariableStackTableModel_h #define QmitkPythonVariableStackTableModel_h diff --git a/Modules/QtPython/QmitkPythonVariableStackTableView.cpp b/Modules/QtPython/QmitkPythonVariableStackTableView.cpp index 768b03ab7df..4d3ddc392a9 100755 --- a/Modules/QtPython/QmitkPythonVariableStackTableView.cpp +++ b/Modules/QtPython/QmitkPythonVariableStackTableView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPythonVariableStackTableView.h" #include diff --git a/Modules/QtPython/QmitkPythonVariableStackTableView.h b/Modules/QtPython/QmitkPythonVariableStackTableView.h index 96596fc924b..3754279bbf2 100755 --- a/Modules/QtPython/QmitkPythonVariableStackTableView.h +++ b/Modules/QtPython/QmitkPythonVariableStackTableView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPythonVariableStackTableView_h #define QmitkPythonVariableStackTableView_h diff --git a/Modules/QtPython/Testing/mitkPythonTest.cpp b/Modules/QtPython/Testing/mitkPythonTest.cpp index 20e8af9d1c6..762a8f3a184 100644 --- a/Modules/QtPython/Testing/mitkPythonTest.cpp +++ b/Modules/QtPython/Testing/mitkPythonTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/QtWidgets/include/QmitkAbstractDataStorageInspector.h b/Modules/QtWidgets/include/QmitkAbstractDataStorageInspector.h index ae3183d91f4..9c2100f766f 100644 --- a/Modules/QtWidgets/include/QmitkAbstractDataStorageInspector.h +++ b/Modules/QtWidgets/include/QmitkAbstractDataStorageInspector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTDATASTORAGEINSPECTOR_H #define QMITKABSTRACTDATASTORAGEINSPECTOR_H diff --git a/Modules/QtWidgets/include/QmitkAbstractDataStorageModel.h b/Modules/QtWidgets/include/QmitkAbstractDataStorageModel.h index fc42b2c4a69..9a31130f823 100644 --- a/Modules/QtWidgets/include/QmitkAbstractDataStorageModel.h +++ b/Modules/QtWidgets/include/QmitkAbstractDataStorageModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTDATASTORAGEMODEL_H #define QMITKABSTRACTDATASTORAGEMODEL_H diff --git a/Modules/QtWidgets/include/QmitkAbstractMultiWidget.h b/Modules/QtWidgets/include/QmitkAbstractMultiWidget.h index 61cf705cc30..d2e3bec9087 100644 --- a/Modules/QtWidgets/include/QmitkAbstractMultiWidget.h +++ b/Modules/QtWidgets/include/QmitkAbstractMultiWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTMULTIWIDGET_H #define QMITKABSTRACTMULTIWIDGET_H @@ -70,7 +66,7 @@ class MITKQTWIDGETS_EXPORT QmitkAbstractMultiWidget : public QWidget const QString& multiWidgetName = "multiwidget"); virtual ~QmitkAbstractMultiWidget(); - + virtual void InitializeMultiWidget() = 0; virtual void MultiWidgetOpened() { } virtual void MultiWidgetClosed() { } @@ -104,7 +100,7 @@ class MITKQTWIDGETS_EXPORT QmitkAbstractMultiWidget : public QWidget RenderWindowWidgetPointer GetActiveRenderWindowWidget() const; RenderWindowWidgetPointer GetFirstRenderWindowWidget() const; RenderWindowWidgetPointer GetLastRenderWindowWidget() const; - + virtual QString GetNameFromIndex(int row, int column) const; virtual QString GetNameFromIndex(size_t index) const; diff --git a/Modules/QtWidgets/include/QmitkApplicationCursor.h b/Modules/QtWidgets/include/QmitkApplicationCursor.h index f0336b0225e..48fec89548b 100644 --- a/Modules/QtWidgets/include/QmitkApplicationCursor.h +++ b/Modules/QtWidgets/include/QmitkApplicationCursor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_APPLICATION_CURSOR_H_INCLUDED #define QMITK_APPLICATION_CURSOR_H_INCLUDED diff --git a/Modules/QtWidgets/include/QmitkColoredNodeDescriptor.h b/Modules/QtWidgets/include/QmitkColoredNodeDescriptor.h index 87edaf72981..a7b397ff30d 100644 --- a/Modules/QtWidgets/include/QmitkColoredNodeDescriptor.h +++ b/Modules/QtWidgets/include/QmitkColoredNodeDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkColoredNodeDescriptor_h #define QmitkColoredNodeDescriptor_h diff --git a/Modules/QtWidgets/include/QmitkCustomVariants.h b/Modules/QtWidgets/include/QmitkCustomVariants.h index 1a52d35c0d7..56e9c7674b5 100755 --- a/Modules/QtWidgets/include/QmitkCustomVariants.h +++ b/Modules/QtWidgets/include/QmitkCustomVariants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCUSTOMVARIANTS_H_ #define QMITKCUSTOMVARIANTS_H_ diff --git a/Modules/QtWidgets/include/QmitkDataStorageComboBox.h b/Modules/QtWidgets/include/QmitkDataStorageComboBox.h index e271d0215d3..147cb7c998e 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageComboBox.h +++ b/Modules/QtWidgets/include/QmitkDataStorageComboBox.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDataStorageComboBox_h #define QmitkDataStorageComboBox_h diff --git a/Modules/QtWidgets/include/QmitkDataStorageComboBoxWithSelectNone.h b/Modules/QtWidgets/include/QmitkDataStorageComboBoxWithSelectNone.h index 2ee588a200d..fd56e7dead8 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageComboBoxWithSelectNone.h +++ b/Modules/QtWidgets/include/QmitkDataStorageComboBoxWithSelectNone.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDataStorageComboBoxWithSelectNone_h #define QmitkDataStorageComboBoxWithSelectNone_h diff --git a/Modules/QtWidgets/include/QmitkDataStorageDefaultListModel.h b/Modules/QtWidgets/include/QmitkDataStorageDefaultListModel.h index cbfdf819164..2de2f0a4000 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageDefaultListModel.h +++ b/Modules/QtWidgets/include/QmitkDataStorageDefaultListModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGEDEFAULTLISTMODEL_H #define QMITKDATASTORAGEDEFAULTLISTMODEL_H diff --git a/Modules/QtWidgets/include/QmitkDataStorageFilterProxyModel.h b/Modules/QtWidgets/include/QmitkDataStorageFilterProxyModel.h index e34adba0c83..34e362d7ff5 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageFilterProxyModel.h +++ b/Modules/QtWidgets/include/QmitkDataStorageFilterProxyModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGEFILTERPROXYMODEL_H_ #define QMITKDATASTORAGEFILTERPROXYMODEL_H_ diff --git a/Modules/QtWidgets/include/QmitkDataStorageInspectorProviderBase.h b/Modules/QtWidgets/include/QmitkDataStorageInspectorProviderBase.h index 3b53e140cf9..65ffd677363 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageInspectorProviderBase.h +++ b/Modules/QtWidgets/include/QmitkDataStorageInspectorProviderBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __QMITK_DATA_STORAGE_INSPECTOR_PROVIDER_BASE_H #define __QMITK_DATA_STORAGE_INSPECTOR_PROVIDER_BASE_H diff --git a/Modules/QtWidgets/include/QmitkDataStorageInspectorProviderBase.tpp b/Modules/QtWidgets/include/QmitkDataStorageInspectorProviderBase.tpp index f7982f867cf..ed49cd23118 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageInspectorProviderBase.tpp +++ b/Modules/QtWidgets/include/QmitkDataStorageInspectorProviderBase.tpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -91,7 +87,7 @@ See LICENSE.txt or http://www.mitk.org for details. { return d->m_DisplayName; }; - + template std::string QmitkDataStorageInspectorProviderBase::GetInspectorDescription() const @@ -100,7 +96,7 @@ See LICENSE.txt or http://www.mitk.org for details. }; template - us::ServiceRegistration + us::ServiceRegistration QmitkDataStorageInspectorProviderBase::RegisterService(us::ModuleContext *context) { if (d->m_Reg) diff --git a/Modules/QtWidgets/include/QmitkDataStorageListInspector.h b/Modules/QtWidgets/include/QmitkDataStorageListInspector.h index ac98dc74415..1b87d0ff3c6 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageListInspector.h +++ b/Modules/QtWidgets/include/QmitkDataStorageListInspector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGELISTINSPECTOR_H #define QMITKDATASTORAGELISTINSPECTOR_H diff --git a/Modules/QtWidgets/include/QmitkDataStorageListModel.h b/Modules/QtWidgets/include/QmitkDataStorageListModel.h index 58c015d1c3b..6ab6c7796b7 100755 --- a/Modules/QtWidgets/include/QmitkDataStorageListModel.h +++ b/Modules/QtWidgets/include/QmitkDataStorageListModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDataStorageListModel_h #define QmitkDataStorageListModel_h diff --git a/Modules/QtWidgets/include/QmitkDataStorageSimpleTreeModel.h b/Modules/QtWidgets/include/QmitkDataStorageSimpleTreeModel.h index d43df70f832..d70ddec93bc 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageSimpleTreeModel.h +++ b/Modules/QtWidgets/include/QmitkDataStorageSimpleTreeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGESIMPLETREEMODEL_H #define QMITKDATASTORAGESIMPLETREEMODEL_H diff --git a/Modules/QtWidgets/include/QmitkDataStorageTableModel.h b/Modules/QtWidgets/include/QmitkDataStorageTableModel.h index 1538ee59fe7..e69bf5beceb 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageTableModel.h +++ b/Modules/QtWidgets/include/QmitkDataStorageTableModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDataStorageTableModel_h #define QmitkDataStorageTableModel_h diff --git a/Modules/QtWidgets/include/QmitkDataStorageTreeInspector.h b/Modules/QtWidgets/include/QmitkDataStorageTreeInspector.h index d5a03917752..b999ba63102 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageTreeInspector.h +++ b/Modules/QtWidgets/include/QmitkDataStorageTreeInspector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGETREEINSPECTOR_H #define QMITKDATASTORAGETREEINSPECTOR_H diff --git a/Modules/QtWidgets/include/QmitkDataStorageTreeModel.h b/Modules/QtWidgets/include/QmitkDataStorageTreeModel.h index 03ee7de417e..35ee8ce70ea 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageTreeModel.h +++ b/Modules/QtWidgets/include/QmitkDataStorageTreeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGETREEMODEL_H_ #define QMITKDATASTORAGETREEMODEL_H_ diff --git a/Modules/QtWidgets/include/QmitkDataStorageTreeModelInternalItem.h b/Modules/QtWidgets/include/QmitkDataStorageTreeModelInternalItem.h index 9590cac01aa..82ab4eae5ae 100644 --- a/Modules/QtWidgets/include/QmitkDataStorageTreeModelInternalItem.h +++ b/Modules/QtWidgets/include/QmitkDataStorageTreeModelInternalItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGETREEMODELINTERNALITEM_H_ #define QMITKDATASTORAGETREEMODELINTERNALITEM_H_ diff --git a/Modules/QtWidgets/include/QmitkDnDDataNodeWidget.h b/Modules/QtWidgets/include/QmitkDnDDataNodeWidget.h index baad4fe34b8..f5076788670 100644 --- a/Modules/QtWidgets/include/QmitkDnDDataNodeWidget.h +++ b/Modules/QtWidgets/include/QmitkDnDDataNodeWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDNDDATANODEWIDGET_H #define QMITKDNDDATANODEWIDGET_H diff --git a/Modules/QtWidgets/include/QmitkEnums.h b/Modules/QtWidgets/include/QmitkEnums.h index a71441500b4..1cee7ca1e78 100755 --- a/Modules/QtWidgets/include/QmitkEnums.h +++ b/Modules/QtWidgets/include/QmitkEnums.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKENUMS_H_ #define QMITKENUMS_H_ diff --git a/Modules/QtWidgets/include/QmitkFileReaderOptionsDialog.h b/Modules/QtWidgets/include/QmitkFileReaderOptionsDialog.h index e7823c252a5..fda8fc7f472 100644 --- a/Modules/QtWidgets/include/QmitkFileReaderOptionsDialog.h +++ b/Modules/QtWidgets/include/QmitkFileReaderOptionsDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFILEREADEROPTIONSDIALOG_H #define QMITKFILEREADEROPTIONSDIALOG_H diff --git a/Modules/QtWidgets/include/QmitkFileReaderWriterOptionsWidget.h b/Modules/QtWidgets/include/QmitkFileReaderWriterOptionsWidget.h index 3b07e74064e..a05e050678b 100644 --- a/Modules/QtWidgets/include/QmitkFileReaderWriterOptionsWidget.h +++ b/Modules/QtWidgets/include/QmitkFileReaderWriterOptionsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFILEREADERWRITEROPTIONSWIDGET_H #define QMITKFILEREADERWRITEROPTIONSWIDGET_H diff --git a/Modules/QtWidgets/include/QmitkFileWriterOptionsDialog.h b/Modules/QtWidgets/include/QmitkFileWriterOptionsDialog.h index 8e871d58367..20321903cbd 100644 --- a/Modules/QtWidgets/include/QmitkFileWriterOptionsDialog.h +++ b/Modules/QtWidgets/include/QmitkFileWriterOptionsDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFILEWRITEROPTIONSDIALOG_H #define QMITKFILEWRITEROPTIONSDIALOG_H diff --git a/Modules/QtWidgets/include/QmitkIOUtil.h b/Modules/QtWidgets/include/QmitkIOUtil.h index b0d288eb07b..6d2adf32308 100644 --- a/Modules/QtWidgets/include/QmitkIOUtil.h +++ b/Modules/QtWidgets/include/QmitkIOUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkIOUtil__h_ #define _QmitkIOUtil__h_ diff --git a/Modules/QtWidgets/include/QmitkInteractionSchemeToolBar.h b/Modules/QtWidgets/include/QmitkInteractionSchemeToolBar.h index e6420076722..49f1c58eec6 100644 --- a/Modules/QtWidgets/include/QmitkInteractionSchemeToolBar.h +++ b/Modules/QtWidgets/include/QmitkInteractionSchemeToolBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKINTERACTIONSCHEMETOOLBAR_H #define QMITKINTERACTIONSCHEMETOOLBAR_H @@ -26,7 +22,7 @@ See LICENSE.txt or http://www.mitk.org for details. #include /** -* @brief +* @brief * * */ diff --git a/Modules/QtWidgets/include/QmitkLevelWindowPresetDefinitionDialog.h b/Modules/QtWidgets/include/QmitkLevelWindowPresetDefinitionDialog.h index 30282e02544..bd36ead9a08 100644 --- a/Modules/QtWidgets/include/QmitkLevelWindowPresetDefinitionDialog.h +++ b/Modules/QtWidgets/include/QmitkLevelWindowPresetDefinitionDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLEVELWINDOWPRESETDEFINITIONDIALOG_H_ #define QMITKLEVELWINDOWPRESETDEFINITIONDIALOG_H_ diff --git a/Modules/QtWidgets/include/QmitkLevelWindowRangeChangeDialog.h b/Modules/QtWidgets/include/QmitkLevelWindowRangeChangeDialog.h index 0347d32e689..2c1e4b60232 100644 --- a/Modules/QtWidgets/include/QmitkLevelWindowRangeChangeDialog.h +++ b/Modules/QtWidgets/include/QmitkLevelWindowRangeChangeDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLEVELWINDOWRANGECHANGEDIALOG_H_ #define QMITKLEVELWINDOWRANGECHANGEDIALOG_H_ diff --git a/Modules/QtWidgets/include/QmitkLevelWindowWidget.h b/Modules/QtWidgets/include/QmitkLevelWindowWidget.h index d799ac6c5ee..f580d0007ad 100644 --- a/Modules/QtWidgets/include/QmitkLevelWindowWidget.h +++ b/Modules/QtWidgets/include/QmitkLevelWindowWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLEVELWINDOWWIDGET_H_ #define QMITKLEVELWINDOWWIDGET_H_ diff --git a/Modules/QtWidgets/include/QmitkLevelWindowWidgetContextMenu.h b/Modules/QtWidgets/include/QmitkLevelWindowWidgetContextMenu.h index 0b42568a4b4..3f80aff6fe3 100644 --- a/Modules/QtWidgets/include/QmitkLevelWindowWidgetContextMenu.h +++ b/Modules/QtWidgets/include/QmitkLevelWindowWidgetContextMenu.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLEVELWINDOWWIDGETCONTEXTMENU_H #define QMITKLEVELWINDOWWIDGETCONTEXTMENU_H diff --git a/Modules/QtWidgets/include/QmitkLineEditLevelWindowWidget.h b/Modules/QtWidgets/include/QmitkLineEditLevelWindowWidget.h index a01af09448b..2a7ad658415 100644 --- a/Modules/QtWidgets/include/QmitkLineEditLevelWindowWidget.h +++ b/Modules/QtWidgets/include/QmitkLineEditLevelWindowWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLINEEDITLEVELWINDOWWIDGET_H #define QMITKLINEEDITLEVELWINDOWWIDGET_H diff --git a/Modules/QtWidgets/include/QmitkMemoryUsageIndicatorView.h b/Modules/QtWidgets/include/QmitkMemoryUsageIndicatorView.h index 91eb84563d1..b049ca84b11 100644 --- a/Modules/QtWidgets/include/QmitkMemoryUsageIndicatorView.h +++ b/Modules/QtWidgets/include/QmitkMemoryUsageIndicatorView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMEMORYUSAGEINDICATORVIEW_WIDGET #define QMITKMEMORYUSAGEINDICATORVIEW_WIDGET diff --git a/Modules/QtWidgets/include/QmitkMimeTypes.h b/Modules/QtWidgets/include/QmitkMimeTypes.h index e4e7411dee1..093ed33bfd8 100644 --- a/Modules/QtWidgets/include/QmitkMimeTypes.h +++ b/Modules/QtWidgets/include/QmitkMimeTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMIMETYPES_H #define QMITKMIMETYPES_H diff --git a/Modules/QtWidgets/include/QmitkModelViewSelectionConnector.h b/Modules/QtWidgets/include/QmitkModelViewSelectionConnector.h index 5b2d361a58c..08ba039adc7 100644 --- a/Modules/QtWidgets/include/QmitkModelViewSelectionConnector.h +++ b/Modules/QtWidgets/include/QmitkModelViewSelectionConnector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMODELVIEWSELECTIONCONNECTOR_H #define QMITKMODELVIEWSELECTIONCONNECTOR_H @@ -95,7 +91,7 @@ public Q_SLOTS: * @param selectOnlyVisibleNodes The bool value to define the selection modus. */ void SetSelectOnlyVisibleNodes(bool selectOnlyVisibleNodes); - + /** * @brief Transform a list of data nodes into a model selection and set this as a new selection of the * selection model of the private member item view. diff --git a/Modules/QtWidgets/include/QmitkMouseModeSwitcher.h b/Modules/QtWidgets/include/QmitkMouseModeSwitcher.h index 4f1575c5278..c88ab5c62f3 100644 --- a/Modules/QtWidgets/include/QmitkMouseModeSwitcher.h +++ b/Modules/QtWidgets/include/QmitkMouseModeSwitcher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMouseModeSwitcher_h #define QmitkMouseModeSwitcher_h diff --git a/Modules/QtWidgets/include/QmitkMultiWidgetConfigurationToolBar.h b/Modules/QtWidgets/include/QmitkMultiWidgetConfigurationToolBar.h index e13c26ac1cd..f87572b04ab 100644 --- a/Modules/QtWidgets/include/QmitkMultiWidgetConfigurationToolBar.h +++ b/Modules/QtWidgets/include/QmitkMultiWidgetConfigurationToolBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMULTIWIDGETCONFIGURATIONTOOLBAR_H #define QMITKMULTIWIDGETCONFIGURATIONTOOLBAR_H @@ -28,7 +24,7 @@ class QmitkAbstractMultiWidget; class QmitkMultiWidgetLayoutSelectionWidget; /** -* @brief +* @brief * * */ diff --git a/Modules/QtWidgets/include/QmitkMultiWidgetLayoutManager.h b/Modules/QtWidgets/include/QmitkMultiWidgetLayoutManager.h index 4bcc6db371d..5a52dccb4af 100644 --- a/Modules/QtWidgets/include/QmitkMultiWidgetLayoutManager.h +++ b/Modules/QtWidgets/include/QmitkMultiWidgetLayoutManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMULTIWIDGETLAYOUTMANAGER_H #define QMITKMULTIWIDGETLAYOUTMANAGER_H diff --git a/Modules/QtWidgets/include/QmitkMultiWidgetLayoutSelectionWidget.h b/Modules/QtWidgets/include/QmitkMultiWidgetLayoutSelectionWidget.h index 8541f0cb2b8..178ec31f6b1 100644 --- a/Modules/QtWidgets/include/QmitkMultiWidgetLayoutSelectionWidget.h +++ b/Modules/QtWidgets/include/QmitkMultiWidgetLayoutSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMULTIWIDGETLAYOUTSELECTIONWIDGET_H #define QMITKMULTIWIDGETLAYOUTSELECTIONWIDGET_H @@ -25,7 +21,7 @@ See LICENSE.txt or http://www.mitk.org for details. #include "QWidget" /** -* @brief +* @brief * * */ diff --git a/Modules/QtWidgets/include/QmitkMxNMultiWidget.h b/Modules/QtWidgets/include/QmitkMxNMultiWidget.h index d44839ecbe9..2143d7668ef 100644 --- a/Modules/QtWidgets/include/QmitkMxNMultiWidget.h +++ b/Modules/QtWidgets/include/QmitkMxNMultiWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMXNMULTIWIDGET_H #define QMITKMXNMULTIWIDGET_H diff --git a/Modules/QtWidgets/include/QmitkNodeDescriptor.h b/Modules/QtWidgets/include/QmitkNodeDescriptor.h index 809716229c4..9081c18776c 100644 --- a/Modules/QtWidgets/include/QmitkNodeDescriptor.h +++ b/Modules/QtWidgets/include/QmitkNodeDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNodeDescriptor_h #define QmitkNodeDescriptor_h diff --git a/Modules/QtWidgets/include/QmitkNodeDescriptorManager.h b/Modules/QtWidgets/include/QmitkNodeDescriptorManager.h index 8b8024a523a..59a68099f12 100644 --- a/Modules/QtWidgets/include/QmitkNodeDescriptorManager.h +++ b/Modules/QtWidgets/include/QmitkNodeDescriptorManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNodeDescriptorManager_h #define QmitkNodeDescriptorManager_h diff --git a/Modules/QtWidgets/include/QmitkNodeDetailsDialog.h b/Modules/QtWidgets/include/QmitkNodeDetailsDialog.h index 769bbf085ee..ed6d81b3d0d 100644 --- a/Modules/QtWidgets/include/QmitkNodeDetailsDialog.h +++ b/Modules/QtWidgets/include/QmitkNodeDetailsDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKNODEDETAILSDIALOG_H #define QMITKNODEDETAILSDIALOG_H diff --git a/Modules/QtWidgets/include/QmitkOverlayWidget.h b/Modules/QtWidgets/include/QmitkOverlayWidget.h index b9d56364e5b..a4dc6f0e1a4 100644 --- a/Modules/QtWidgets/include/QmitkOverlayWidget.h +++ b/Modules/QtWidgets/include/QmitkOverlayWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_OVERLAY_WIDGET_H #define QMITK_OVERLAY_WIDGET_H diff --git a/Modules/QtWidgets/include/QmitkProgressBar.h b/Modules/QtWidgets/include/QmitkProgressBar.h index 8232f32928f..cab36ed703a 100644 --- a/Modules/QtWidgets/include/QmitkProgressBar.h +++ b/Modules/QtWidgets/include/QmitkProgressBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPROGRESSBAR_H #define QMITKPROGRESSBAR_H diff --git a/Modules/QtWidgets/include/QmitkPropertiesTableEditor.h b/Modules/QtWidgets/include/QmitkPropertiesTableEditor.h index 49222d33a92..2a5eadec478 100644 --- a/Modules/QtWidgets/include/QmitkPropertiesTableEditor.h +++ b/Modules/QtWidgets/include/QmitkPropertiesTableEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertiesTableEditor_h #define QmitkPropertiesTableEditor_h diff --git a/Modules/QtWidgets/include/QmitkPropertiesTableModel.h b/Modules/QtWidgets/include/QmitkPropertiesTableModel.h index 3fbbc89313b..92ad8fd103c 100644 --- a/Modules/QtWidgets/include/QmitkPropertiesTableModel.h +++ b/Modules/QtWidgets/include/QmitkPropertiesTableModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /// Header guard. #ifndef QmitkPropertiesTableModel_h diff --git a/Modules/QtWidgets/include/QmitkPropertyDelegate.h b/Modules/QtWidgets/include/QmitkPropertyDelegate.h index 8ecf2f05afd..5b19dcbfc3e 100644 --- a/Modules/QtWidgets/include/QmitkPropertyDelegate.h +++ b/Modules/QtWidgets/include/QmitkPropertyDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyDelegate_h #define QmitkPropertyDelegate_h diff --git a/Modules/QtWidgets/include/QmitkPropertyItem.h b/Modules/QtWidgets/include/QmitkPropertyItem.h index 8b2054ec7a9..6b4f2c6fc91 100644 --- a/Modules/QtWidgets/include/QmitkPropertyItem.h +++ b/Modules/QtWidgets/include/QmitkPropertyItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyItem_h #define QmitkPropertyItem_h diff --git a/Modules/QtWidgets/include/QmitkPropertyItemDelegate.h b/Modules/QtWidgets/include/QmitkPropertyItemDelegate.h index f55ec505bfc..cd18a319a80 100644 --- a/Modules/QtWidgets/include/QmitkPropertyItemDelegate.h +++ b/Modules/QtWidgets/include/QmitkPropertyItemDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyItemDelegate_h #define QmitkPropertyItemDelegate_h diff --git a/Modules/QtWidgets/include/QmitkPropertyItemModel.h b/Modules/QtWidgets/include/QmitkPropertyItemModel.h index 333e7f691f5..ebc40880441 100644 --- a/Modules/QtWidgets/include/QmitkPropertyItemModel.h +++ b/Modules/QtWidgets/include/QmitkPropertyItemModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyItemModel_h #define QmitkPropertyItemModel_h diff --git a/Modules/QtWidgets/include/QmitkRegisterClasses.h b/Modules/QtWidgets/include/QmitkRegisterClasses.h index e835bc1469c..d1416f22589 100644 --- a/Modules/QtWidgets/include/QmitkRegisterClasses.h +++ b/Modules/QtWidgets/include/QmitkRegisterClasses.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkRegisterClassesHIncluded #define QmitkRegisterClassesHIncluded diff --git a/Modules/QtWidgets/include/QmitkRenderWindow.h b/Modules/QtWidgets/include/QmitkRenderWindow.h index d963134579c..872fd6cdbc4 100644 --- a/Modules/QtWidgets/include/QmitkRenderWindow.h +++ b/Modules/QtWidgets/include/QmitkRenderWindow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef QMITKRENDERWINDOW_H #define QMITKRENDERWINDOW_H diff --git a/Modules/QtWidgets/include/QmitkRenderWindowMenu.h b/Modules/QtWidgets/include/QmitkRenderWindowMenu.h index a28f4c9b432..c01bbf94499 100644 --- a/Modules/QtWidgets/include/QmitkRenderWindowMenu.h +++ b/Modules/QtWidgets/include/QmitkRenderWindowMenu.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKRENDERWINDOWMENU_H #define QMITKRENDERWINDOWMENU_H diff --git a/Modules/QtWidgets/include/QmitkRenderWindowWidget.h b/Modules/QtWidgets/include/QmitkRenderWindowWidget.h index 20693ef65a2..a2444a34721 100644 --- a/Modules/QtWidgets/include/QmitkRenderWindowWidget.h +++ b/Modules/QtWidgets/include/QmitkRenderWindowWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKRENDERWINDOWWIDGET_H #define QMITKRENDERWINDOWWIDGET_H diff --git a/Modules/QtWidgets/include/QmitkRenderingManager.h b/Modules/QtWidgets/include/QmitkRenderingManager.h index 55974ab58be..85f30b3b249 100644 --- a/Modules/QtWidgets/include/QmitkRenderingManager.h +++ b/Modules/QtWidgets/include/QmitkRenderingManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKRENDERINGMANAGER_H_HEADER_INCLUDED_C135A197 #define QMITKRENDERINGMANAGER_H_HEADER_INCLUDED_C135A197 diff --git a/Modules/QtWidgets/include/QmitkRenderingManagerFactory.h b/Modules/QtWidgets/include/QmitkRenderingManagerFactory.h index 78def7c0cba..0a2b351f160 100644 --- a/Modules/QtWidgets/include/QmitkRenderingManagerFactory.h +++ b/Modules/QtWidgets/include/QmitkRenderingManagerFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKRENDERINGMANAGERFACTORY_H_HEADER_INCLUDED_C135A197 #define QMITKRENDERINGMANAGERFACTORY_H_HEADER_INCLUDED_C135A197 diff --git a/Modules/QtWidgets/include/QmitkServiceListWidget.h b/Modules/QtWidgets/include/QmitkServiceListWidget.h index a4626ec14f1..d8d8dc3f68d 100644 --- a/Modules/QtWidgets/include/QmitkServiceListWidget.h +++ b/Modules/QtWidgets/include/QmitkServiceListWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkServiceListWidget_H_INCLUDED #define _QmitkServiceListWidget_H_INCLUDED diff --git a/Modules/QtWidgets/include/QmitkSliderLevelWindowWidget.h b/Modules/QtWidgets/include/QmitkSliderLevelWindowWidget.h index 624f8319ba3..4d0b9c36300 100644 --- a/Modules/QtWidgets/include/QmitkSliderLevelWindowWidget.h +++ b/Modules/QtWidgets/include/QmitkSliderLevelWindowWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSLIDERLEVELWINDOWWIDGET_H #define QMITKSLIDERLEVELWINDOWWIDGET_H diff --git a/Modules/QtWidgets/include/QmitkStdMultiWidget.h b/Modules/QtWidgets/include/QmitkStdMultiWidget.h index da430b70e9a..12b41a7b794 100644 --- a/Modules/QtWidgets/include/QmitkStdMultiWidget.h +++ b/Modules/QtWidgets/include/QmitkStdMultiWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSTDMULTIWIDGET_H #define QMITKSTDMULTIWIDGET_H diff --git a/Modules/QtWidgets/include/QmitkStyleManager.h b/Modules/QtWidgets/include/QmitkStyleManager.h index 29f07fc9788..c2acc0d6e6c 100644 --- a/Modules/QtWidgets/include/QmitkStyleManager.h +++ b/Modules/QtWidgets/include/QmitkStyleManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkStyleManager_h #define QmitkStyleManager_h diff --git a/Modules/QtWidgets/include/mitkDataStorageInspectorGenerator.h b/Modules/QtWidgets/include/mitkDataStorageInspectorGenerator.h index 9ef6d60b7bd..4356c46e228 100644 --- a/Modules/QtWidgets/include/mitkDataStorageInspectorGenerator.h +++ b/Modules/QtWidgets/include/mitkDataStorageInspectorGenerator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataStorageInspectorGenerator_H #define mitkDataStorageInspectorGenerator_H diff --git a/Modules/QtWidgets/include/mitkIDataStorageInspectorProvider.h b/Modules/QtWidgets/include/mitkIDataStorageInspectorProvider.h index bbce815718a..9a0f1ab9ae7 100644 --- a/Modules/QtWidgets/include/mitkIDataStorageInspectorProvider.h +++ b/Modules/QtWidgets/include/mitkIDataStorageInspectorProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __I_DATA_STORAGE_INSPECTOR_PROVIDER_H #define __I_DATA_STORAGE_INSPECTOR_PROVIDER_H diff --git a/Modules/QtWidgets/src/QmitkAbstractDataStorageInspector.cpp b/Modules/QtWidgets/src/QmitkAbstractDataStorageInspector.cpp index d42d6846f87..cef39a1a29d 100644 --- a/Modules/QtWidgets/src/QmitkAbstractDataStorageInspector.cpp +++ b/Modules/QtWidgets/src/QmitkAbstractDataStorageInspector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgets/src/QmitkAbstractDataStorageModel.cpp b/Modules/QtWidgets/src/QmitkAbstractDataStorageModel.cpp index 7d16ab842fc..537af2dc908 100644 --- a/Modules/QtWidgets/src/QmitkAbstractDataStorageModel.cpp +++ b/Modules/QtWidgets/src/QmitkAbstractDataStorageModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgets/src/QmitkAbstractMultiWidget.cpp b/Modules/QtWidgets/src/QmitkAbstractMultiWidget.cpp index deb1aadf24f..71cac19f4d7 100644 --- a/Modules/QtWidgets/src/QmitkAbstractMultiWidget.cpp +++ b/Modules/QtWidgets/src/QmitkAbstractMultiWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk qt widgets module #include "QmitkAbstractMultiWidget.h" @@ -56,7 +52,7 @@ struct QmitkAbstractMultiWidget::Impl final m_DisplayActionEventBroadcast->LoadStateMachine("DisplayInteraction.xml"); m_DisplayActionEventBroadcast->SetEventConfig("DisplayConfigPACS.xml"); } - + mitk::DataStorage::Pointer m_DataStorage; QString m_MultiWidgetName; diff --git a/Modules/QtWidgets/src/QmitkApplicationCursor.cpp b/Modules/QtWidgets/src/QmitkApplicationCursor.cpp index 041e9da0c71..ce7f85d2b95 100644 --- a/Modules/QtWidgets/src/QmitkApplicationCursor.cpp +++ b/Modules/QtWidgets/src/QmitkApplicationCursor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkApplicationCursor.h" diff --git a/Modules/QtWidgets/src/QmitkColoredNodeDescriptor.cpp b/Modules/QtWidgets/src/QmitkColoredNodeDescriptor.cpp index cd500503701..22407d86e66 100644 --- a/Modules/QtWidgets/src/QmitkColoredNodeDescriptor.cpp +++ b/Modules/QtWidgets/src/QmitkColoredNodeDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/QtWidgets/src/QmitkDataStorageComboBox.cpp b/Modules/QtWidgets/src/QmitkDataStorageComboBox.cpp index 9710f7b7040..8620733a7c3 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageComboBox.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageComboBox.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataStorageComboBox.h" diff --git a/Modules/QtWidgets/src/QmitkDataStorageComboBoxWithSelectNone.cpp b/Modules/QtWidgets/src/QmitkDataStorageComboBoxWithSelectNone.cpp index 488d7ac3ab9..dacc7ea0d37 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageComboBoxWithSelectNone.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageComboBoxWithSelectNone.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataStorageComboBoxWithSelectNone.h" #include diff --git a/Modules/QtWidgets/src/QmitkDataStorageDefaultListModel.cpp b/Modules/QtWidgets/src/QmitkDataStorageDefaultListModel.cpp index 6f3a9db5ad1..66b4b31d544 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageDefaultListModel.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageDefaultListModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgets/src/QmitkDataStorageFilterProxyModel.cpp b/Modules/QtWidgets/src/QmitkDataStorageFilterProxyModel.cpp index 6626c1d15b8..6113f8c1d16 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageFilterProxyModel.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageFilterProxyModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/QtWidgets/src/QmitkDataStorageListInspector.cpp b/Modules/QtWidgets/src/QmitkDataStorageListInspector.cpp index 37e57944f55..dff7f3b3c94 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageListInspector.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageListInspector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgets/src/QmitkDataStorageListModel.cpp b/Modules/QtWidgets/src/QmitkDataStorageListModel.cpp index 93aeeaa8279..90358e60335 100755 --- a/Modules/QtWidgets/src/QmitkDataStorageListModel.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageListModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataStorageListModel.h" diff --git a/Modules/QtWidgets/src/QmitkDataStorageSimpleTreeModel.cpp b/Modules/QtWidgets/src/QmitkDataStorageSimpleTreeModel.cpp index 52ed2575cfd..f75cfbd875c 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageSimpleTreeModel.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageSimpleTreeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -161,7 +157,7 @@ QmitkDataStorageSimpleTreeModel::TreeItem *QmitkDataStorageSimpleTreeModel::Tree return nullptr; } return item; - } + } else return m_Root; } diff --git a/Modules/QtWidgets/src/QmitkDataStorageTableModel.cpp b/Modules/QtWidgets/src/QmitkDataStorageTableModel.cpp index f555b5fbee4..96884c3dff8 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageTableModel.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageTableModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataStorageTableModel.h" diff --git a/Modules/QtWidgets/src/QmitkDataStorageTreeInspector.cpp b/Modules/QtWidgets/src/QmitkDataStorageTreeInspector.cpp index c8bb5c952b4..10cde334bee 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageTreeInspector.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageTreeInspector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgets/src/QmitkDataStorageTreeModel.cpp b/Modules/QtWidgets/src/QmitkDataStorageTreeModel.cpp index b616464026e..45a78fe841b 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageTreeModel.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageTreeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include #include diff --git a/Modules/QtWidgets/src/QmitkDataStorageTreeModelInternalItem.cpp b/Modules/QtWidgets/src/QmitkDataStorageTreeModelInternalItem.cpp index cd647f19ea5..0d31cbc1802 100644 --- a/Modules/QtWidgets/src/QmitkDataStorageTreeModelInternalItem.cpp +++ b/Modules/QtWidgets/src/QmitkDataStorageTreeModelInternalItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataStorageTreeModelInternalItem.h" diff --git a/Modules/QtWidgets/src/QmitkDnDDataNodeWidget.cpp b/Modules/QtWidgets/src/QmitkDnDDataNodeWidget.cpp index fbdab13999b..6a0cfcde32c 100644 --- a/Modules/QtWidgets/src/QmitkDnDDataNodeWidget.cpp +++ b/Modules/QtWidgets/src/QmitkDnDDataNodeWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgets/src/QmitkFileReaderOptionsDialog.cpp b/Modules/QtWidgets/src/QmitkFileReaderOptionsDialog.cpp index 08b635ab41e..0f1760a299e 100644 --- a/Modules/QtWidgets/src/QmitkFileReaderOptionsDialog.cpp +++ b/Modules/QtWidgets/src/QmitkFileReaderOptionsDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileReaderOptionsDialog.h" #include "ui_QmitkFileReaderOptionsDialog.h" diff --git a/Modules/QtWidgets/src/QmitkFileReaderWriterOptionsWidget.cpp b/Modules/QtWidgets/src/QmitkFileReaderWriterOptionsWidget.cpp index b6f835fad73..0a310ab082d 100644 --- a/Modules/QtWidgets/src/QmitkFileReaderWriterOptionsWidget.cpp +++ b/Modules/QtWidgets/src/QmitkFileReaderWriterOptionsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileReaderWriterOptionsWidget.h" diff --git a/Modules/QtWidgets/src/QmitkFileWriterOptionsDialog.cpp b/Modules/QtWidgets/src/QmitkFileWriterOptionsDialog.cpp index c3c703fba1c..86db3b3f2c9 100644 --- a/Modules/QtWidgets/src/QmitkFileWriterOptionsDialog.cpp +++ b/Modules/QtWidgets/src/QmitkFileWriterOptionsDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileWriterOptionsDialog.h" #include "ui_QmitkFileWriterOptionsDialog.h" diff --git a/Modules/QtWidgets/src/QmitkIOUtil.cpp b/Modules/QtWidgets/src/QmitkIOUtil.cpp index 6247e21cd71..3754154f2ed 100644 --- a/Modules/QtWidgets/src/QmitkIOUtil.cpp +++ b/Modules/QtWidgets/src/QmitkIOUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIOUtil.h" diff --git a/Modules/QtWidgets/src/QmitkInteractionSchemeToolBar.cpp b/Modules/QtWidgets/src/QmitkInteractionSchemeToolBar.cpp index 780fb7e4366..dbb54e08995 100644 --- a/Modules/QtWidgets/src/QmitkInteractionSchemeToolBar.cpp +++ b/Modules/QtWidgets/src/QmitkInteractionSchemeToolBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkInteractionSchemeToolBar.h" diff --git a/Modules/QtWidgets/src/QmitkLevelWindowPresetDefinitionDialog.cpp b/Modules/QtWidgets/src/QmitkLevelWindowPresetDefinitionDialog.cpp index 0c0faeff311..e83cf30a06e 100644 --- a/Modules/QtWidgets/src/QmitkLevelWindowPresetDefinitionDialog.cpp +++ b/Modules/QtWidgets/src/QmitkLevelWindowPresetDefinitionDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkLevelWindowPresetDefinitionDialog.h" diff --git a/Modules/QtWidgets/src/QmitkLevelWindowRangeChangeDialog.cpp b/Modules/QtWidgets/src/QmitkLevelWindowRangeChangeDialog.cpp index f3eb12b2cbd..4cf0cc67e2f 100644 --- a/Modules/QtWidgets/src/QmitkLevelWindowRangeChangeDialog.cpp +++ b/Modules/QtWidgets/src/QmitkLevelWindowRangeChangeDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkLevelWindowRangeChangeDialog.h" diff --git a/Modules/QtWidgets/src/QmitkLevelWindowWidget.cpp b/Modules/QtWidgets/src/QmitkLevelWindowWidget.cpp index d6805560a9c..422c98ccaf2 100644 --- a/Modules/QtWidgets/src/QmitkLevelWindowWidget.cpp +++ b/Modules/QtWidgets/src/QmitkLevelWindowWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkLevelWindowWidget.h" #include "QmitkSliderLevelWindowWidget.h" diff --git a/Modules/QtWidgets/src/QmitkLevelWindowWidgetContextMenu.cpp b/Modules/QtWidgets/src/QmitkLevelWindowWidgetContextMenu.cpp index 3676429edfc..dfd7b828f63 100644 --- a/Modules/QtWidgets/src/QmitkLevelWindowWidgetContextMenu.cpp +++ b/Modules/QtWidgets/src/QmitkLevelWindowWidgetContextMenu.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgets/src/QmitkLineEditLevelWindowWidget.cpp b/Modules/QtWidgets/src/QmitkLineEditLevelWindowWidget.cpp index 6bb58cb3d3f..e11dcbfb6a1 100644 --- a/Modules/QtWidgets/src/QmitkLineEditLevelWindowWidget.cpp +++ b/Modules/QtWidgets/src/QmitkLineEditLevelWindowWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkLineEditLevelWindowWidget.h" diff --git a/Modules/QtWidgets/src/QmitkMemoryUsageIndicatorView.cpp b/Modules/QtWidgets/src/QmitkMemoryUsageIndicatorView.cpp index 5c0fb1be6c0..e5f61ab68d3 100644 --- a/Modules/QtWidgets/src/QmitkMemoryUsageIndicatorView.cpp +++ b/Modules/QtWidgets/src/QmitkMemoryUsageIndicatorView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /**************************************************************************** ** ui.h extension file, included from the uic-generated form implementation. diff --git a/Modules/QtWidgets/src/QmitkMimeTypes.cpp b/Modules/QtWidgets/src/QmitkMimeTypes.cpp index 4284344d0e6..c82378c4a40 100644 --- a/Modules/QtWidgets/src/QmitkMimeTypes.cpp +++ b/Modules/QtWidgets/src/QmitkMimeTypes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMimeTypes.h" diff --git a/Modules/QtWidgets/src/QmitkModelViewSelectionConnector.cpp b/Modules/QtWidgets/src/QmitkModelViewSelectionConnector.cpp index b582b9e240b..a7637028b9a 100644 --- a/Modules/QtWidgets/src/QmitkModelViewSelectionConnector.cpp +++ b/Modules/QtWidgets/src/QmitkModelViewSelectionConnector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk gui qt common plugin #include "QmitkModelViewSelectionConnector.h" @@ -121,7 +117,7 @@ QList QmitkModelViewSelectionConnector::GetSelectedNode // add the non-visible nodes from the original selection nodes.append(m_NonVisibleSelection); } - + return nodes; } diff --git a/Modules/QtWidgets/src/QmitkMouseModeSwitcher.cpp b/Modules/QtWidgets/src/QmitkMouseModeSwitcher.cpp index b3b91efd711..5b46e055dd8 100644 --- a/Modules/QtWidgets/src/QmitkMouseModeSwitcher.cpp +++ b/Modules/QtWidgets/src/QmitkMouseModeSwitcher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMouseModeSwitcher.h" #include diff --git a/Modules/QtWidgets/src/QmitkMultiWidgetConfigurationToolBar.cpp b/Modules/QtWidgets/src/QmitkMultiWidgetConfigurationToolBar.cpp index ad913b5f70b..60c85e57240 100644 --- a/Modules/QtWidgets/src/QmitkMultiWidgetConfigurationToolBar.cpp +++ b/Modules/QtWidgets/src/QmitkMultiWidgetConfigurationToolBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMultiWidgetConfigurationToolBar.h" diff --git a/Modules/QtWidgets/src/QmitkMultiWidgetLayoutManager.cpp b/Modules/QtWidgets/src/QmitkMultiWidgetLayoutManager.cpp index 1c9f59acedf..522f7bcdc1e 100644 --- a/Modules/QtWidgets/src/QmitkMultiWidgetLayoutManager.cpp +++ b/Modules/QtWidgets/src/QmitkMultiWidgetLayoutManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMultiWidgetLayoutManager.h" diff --git a/Modules/QtWidgets/src/QmitkMultiWidgetLayoutSelectionWidget.cpp b/Modules/QtWidgets/src/QmitkMultiWidgetLayoutSelectionWidget.cpp index 17081206c45..637997248c7 100644 --- a/Modules/QtWidgets/src/QmitkMultiWidgetLayoutSelectionWidget.cpp +++ b/Modules/QtWidgets/src/QmitkMultiWidgetLayoutSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMultiWidgetLayoutSelectionWidget.h" diff --git a/Modules/QtWidgets/src/QmitkMxNMultiWidget.cpp b/Modules/QtWidgets/src/QmitkMxNMultiWidget.cpp index 24780e43376..aae74f80bb9 100644 --- a/Modules/QtWidgets/src/QmitkMxNMultiWidget.cpp +++ b/Modules/QtWidgets/src/QmitkMxNMultiWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMxNMultiWidget.h" #include "QmitkRenderWindowWidget.h" diff --git a/Modules/QtWidgets/src/QmitkNodeDescriptor.cpp b/Modules/QtWidgets/src/QmitkNodeDescriptor.cpp index 8ee6ef71b93..d63adbfae3a 100644 --- a/Modules/QtWidgets/src/QmitkNodeDescriptor.cpp +++ b/Modules/QtWidgets/src/QmitkNodeDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeDescriptor.h" #include diff --git a/Modules/QtWidgets/src/QmitkNodeDescriptorManager.cpp b/Modules/QtWidgets/src/QmitkNodeDescriptorManager.cpp index c8d380adac5..46a86003753 100644 --- a/Modules/QtWidgets/src/QmitkNodeDescriptorManager.cpp +++ b/Modules/QtWidgets/src/QmitkNodeDescriptorManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeDescriptorManager.h" #include diff --git a/Modules/QtWidgets/src/QmitkNodeDetailsDialog.cpp b/Modules/QtWidgets/src/QmitkNodeDetailsDialog.cpp index 262d9c50539..5cee3a7fb29 100644 --- a/Modules/QtWidgets/src/QmitkNodeDetailsDialog.cpp +++ b/Modules/QtWidgets/src/QmitkNodeDetailsDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeDetailsDialog.h" diff --git a/Modules/QtWidgets/src/QmitkOverlayWidget.cpp b/Modules/QtWidgets/src/QmitkOverlayWidget.cpp index 0cf86b3edea..533953fca43 100644 --- a/Modules/QtWidgets/src/QmitkOverlayWidget.cpp +++ b/Modules/QtWidgets/src/QmitkOverlayWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOverlayWidget.h" #include diff --git a/Modules/QtWidgets/src/QmitkProgressBar.cpp b/Modules/QtWidgets/src/QmitkProgressBar.cpp index 86321df0b27..85e4647e1a5 100644 --- a/Modules/QtWidgets/src/QmitkProgressBar.cpp +++ b/Modules/QtWidgets/src/QmitkProgressBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkProgressBar.h" diff --git a/Modules/QtWidgets/src/QmitkPropertiesTableEditor.cpp b/Modules/QtWidgets/src/QmitkPropertiesTableEditor.cpp index d8880edb685..bbaca03d478 100644 --- a/Modules/QtWidgets/src/QmitkPropertiesTableEditor.cpp +++ b/Modules/QtWidgets/src/QmitkPropertiesTableEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertiesTableEditor.h" diff --git a/Modules/QtWidgets/src/QmitkPropertiesTableModel.cpp b/Modules/QtWidgets/src/QmitkPropertiesTableModel.cpp index 99ac1422914..a89b2af14ca 100644 --- a/Modules/QtWidgets/src/QmitkPropertiesTableModel.cpp +++ b/Modules/QtWidgets/src/QmitkPropertiesTableModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertiesTableModel.h" diff --git a/Modules/QtWidgets/src/QmitkPropertyDelegate.cpp b/Modules/QtWidgets/src/QmitkPropertyDelegate.cpp index b446abdc42e..991f3742383 100644 --- a/Modules/QtWidgets/src/QmitkPropertyDelegate.cpp +++ b/Modules/QtWidgets/src/QmitkPropertyDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NOMINMAX #define NOMINMAX diff --git a/Modules/QtWidgets/src/QmitkPropertyItem.cpp b/Modules/QtWidgets/src/QmitkPropertyItem.cpp index f4caea258a0..3a335d31b41 100644 --- a/Modules/QtWidgets/src/QmitkPropertyItem.cpp +++ b/Modules/QtWidgets/src/QmitkPropertyItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertyItem.h" #include diff --git a/Modules/QtWidgets/src/QmitkPropertyItemDelegate.cpp b/Modules/QtWidgets/src/QmitkPropertyItemDelegate.cpp index 8e1f5990461..dc74128ae6c 100644 --- a/Modules/QtWidgets/src/QmitkPropertyItemDelegate.cpp +++ b/Modules/QtWidgets/src/QmitkPropertyItemDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertyItemDelegate.h" #include "QmitkPropertyItemModel.h" diff --git a/Modules/QtWidgets/src/QmitkPropertyItemModel.cpp b/Modules/QtWidgets/src/QmitkPropertyItemModel.cpp index 913209dd0cb..351b71fd9c0 100644 --- a/Modules/QtWidgets/src/QmitkPropertyItemModel.cpp +++ b/Modules/QtWidgets/src/QmitkPropertyItemModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertyItemModel.h" #include "QmitkPropertyItem.h" diff --git a/Modules/QtWidgets/src/QmitkRegisterClasses.cpp b/Modules/QtWidgets/src/QmitkRegisterClasses.cpp index f82cd0a4790..d4ef9bcb121 100644 --- a/Modules/QtWidgets/src/QmitkRegisterClasses.cpp +++ b/Modules/QtWidgets/src/QmitkRegisterClasses.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRegisterClasses.h" diff --git a/Modules/QtWidgets/src/QmitkRenderWindow.cpp b/Modules/QtWidgets/src/QmitkRenderWindow.cpp index 55809a1bd1b..0ecf112050e 100644 --- a/Modules/QtWidgets/src/QmitkRenderWindow.cpp +++ b/Modules/QtWidgets/src/QmitkRenderWindow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "QmitkRenderWindow.h" diff --git a/Modules/QtWidgets/src/QmitkRenderWindowMenu.cpp b/Modules/QtWidgets/src/QmitkRenderWindowMenu.cpp index 36be1473bc0..e958bdd6890 100644 --- a/Modules/QtWidgets/src/QmitkRenderWindowMenu.cpp +++ b/Modules/QtWidgets/src/QmitkRenderWindowMenu.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRenderWindowMenu.h" diff --git a/Modules/QtWidgets/src/QmitkRenderWindowWidget.cpp b/Modules/QtWidgets/src/QmitkRenderWindowWidget.cpp index e4f35965040..2f3fa6fdec1 100644 --- a/Modules/QtWidgets/src/QmitkRenderWindowWidget.cpp +++ b/Modules/QtWidgets/src/QmitkRenderWindowWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRenderWindowWidget.h" diff --git a/Modules/QtWidgets/src/QmitkRenderingManager.cpp b/Modules/QtWidgets/src/QmitkRenderingManager.cpp index cff814fd802..e2e743f5288 100644 --- a/Modules/QtWidgets/src/QmitkRenderingManager.cpp +++ b/Modules/QtWidgets/src/QmitkRenderingManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRenderingManager.h" diff --git a/Modules/QtWidgets/src/QmitkRenderingManagerFactory.cpp b/Modules/QtWidgets/src/QmitkRenderingManagerFactory.cpp index bd3c0546f23..ba6353ff80d 100644 --- a/Modules/QtWidgets/src/QmitkRenderingManagerFactory.cpp +++ b/Modules/QtWidgets/src/QmitkRenderingManagerFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRenderingManagerFactory.h" #include "QmitkRenderingManager.h" diff --git a/Modules/QtWidgets/src/QmitkServiceListWidget.cpp b/Modules/QtWidgets/src/QmitkServiceListWidget.cpp index 5008aa883c2..6e314ed8b29 100644 --- a/Modules/QtWidgets/src/QmitkServiceListWidget.cpp +++ b/Modules/QtWidgets/src/QmitkServiceListWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define _USE_MATH_DEFINES #include diff --git a/Modules/QtWidgets/src/QmitkSliderLevelWindowWidget.cpp b/Modules/QtWidgets/src/QmitkSliderLevelWindowWidget.cpp index 1642b8c67ba..770dd4567e1 100644 --- a/Modules/QtWidgets/src/QmitkSliderLevelWindowWidget.cpp +++ b/Modules/QtWidgets/src/QmitkSliderLevelWindowWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgets/src/QmitkStdMultiWidget.cpp b/Modules/QtWidgets/src/QmitkStdMultiWidget.cpp index 84832fe484d..880f13d30f0 100644 --- a/Modules/QtWidgets/src/QmitkStdMultiWidget.cpp +++ b/Modules/QtWidgets/src/QmitkStdMultiWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define SMW_INFO MITK_INFO("widget.stdmulti") diff --git a/Modules/QtWidgets/src/QmitkStyleManager.cpp b/Modules/QtWidgets/src/QmitkStyleManager.cpp index 1497073b162..3f1270a8ed3 100644 --- a/Modules/QtWidgets/src/QmitkStyleManager.cpp +++ b/Modules/QtWidgets/src/QmitkStyleManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include @@ -70,4 +66,4 @@ QIcon QmitkStyleManager::ThemeIcon(const QString &resourcePath) MITK_WARN << "Could not read " << resourcePath.toStdString(); return QIcon(); -} \ No newline at end of file +} diff --git a/Modules/QtWidgets/src/mitkDataStorageInspectorGenerator.cpp b/Modules/QtWidgets/src/mitkDataStorageInspectorGenerator.cpp index 2439f4792f1..fad908465e7 100644 --- a/Modules/QtWidgets/src/mitkDataStorageInspectorGenerator.cpp +++ b/Modules/QtWidgets/src/mitkDataStorageInspectorGenerator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "usModuleContext.h" #include "usGetModuleContext.h" @@ -58,4 +54,4 @@ mitk::DataStorageInspectorGenerator::DataStorageInspectorGenerator() = default; mitk::DataStorageInspectorGenerator::~DataStorageInspectorGenerator() -= default; \ No newline at end of file += default; diff --git a/Modules/QtWidgets/src/mitkIDataStorageInspectorProvider.cpp b/Modules/QtWidgets/src/mitkIDataStorageInspectorProvider.cpp index 65027755c77..30318af2568 100644 --- a/Modules/QtWidgets/src/mitkIDataStorageInspectorProvider.cpp +++ b/Modules/QtWidgets/src/mitkIDataStorageInspectorProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIDataStorageInspectorProvider.h" @@ -26,4 +22,4 @@ namespace mitk return s; } -} \ No newline at end of file +} diff --git a/Modules/QtWidgets/src/mitkQtWidgetsActivator.cpp b/Modules/QtWidgets/src/mitkQtWidgetsActivator.cpp index 8763ca14354..f19120728d2 100644 --- a/Modules/QtWidgets/src/mitkQtWidgetsActivator.cpp +++ b/Modules/QtWidgets/src/mitkQtWidgetsActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkQtWidgetsActivator.h" @@ -35,4 +31,4 @@ void MitkQtWidgetsActivator::Unload(us::ModuleContext *) { } -US_EXPORT_MODULE_ACTIVATOR(MitkQtWidgetsActivator) \ No newline at end of file +US_EXPORT_MODULE_ACTIVATOR(MitkQtWidgetsActivator) diff --git a/Modules/QtWidgets/src/mitkQtWidgetsActivator.h b/Modules/QtWidgets/src/mitkQtWidgetsActivator.h index c2b3e7465d6..66da4000502 100644 --- a/Modules/QtWidgets/src/mitkQtWidgetsActivator.h +++ b/Modules/QtWidgets/src/mitkQtWidgetsActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKQTWIDGETSACTIVATOR_H_ #define MITKQTWIDGETSACTIVATOR_H_ diff --git a/Modules/QtWidgets/test/QmitkDataStorageListModelTest.cpp b/Modules/QtWidgets/test/QmitkDataStorageListModelTest.cpp index 30d377ce20d..bf7492a7c91 100644 --- a/Modules/QtWidgets/test/QmitkDataStorageListModelTest.cpp +++ b/Modules/QtWidgets/test/QmitkDataStorageListModelTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/QtWidgets/test/QmitkThreadedLogTest.cpp b/Modules/QtWidgets/test/QmitkThreadedLogTest.cpp index 0b4c47b4798..8f1b8d43b5a 100644 --- a/Modules/QtWidgets/test/QmitkThreadedLogTest.cpp +++ b/Modules/QtWidgets/test/QmitkThreadedLogTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommon.h" #include "mitkTestingMacros.h" diff --git a/Modules/QtWidgetsExt/include/QmitkAboutDialog.h b/Modules/QtWidgetsExt/include/QmitkAboutDialog.h index d73ebdb0dde..91058ffaeeb 100644 --- a/Modules/QtWidgetsExt/include/QmitkAboutDialog.h +++ b/Modules/QtWidgetsExt/include/QmitkAboutDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAboutDialog_h #define QmitkAboutDialog_h diff --git a/Modules/QtWidgetsExt/include/QmitkBasePropertyView.h b/Modules/QtWidgetsExt/include/QmitkBasePropertyView.h index cfc6d346a4f..6bbe69b170d 100644 --- a/Modules/QtWidgetsExt/include/QmitkBasePropertyView.h +++ b/Modules/QtWidgetsExt/include/QmitkBasePropertyView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_BASEPROPERTYVIEW_H_INCLUDED #define QMITK_BASEPROPERTYVIEW_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkBoolPropertyWidget.h b/Modules/QtWidgetsExt/include/QmitkBoolPropertyWidget.h index 138c5aa1349..6c2b4c918cd 100644 --- a/Modules/QtWidgetsExt/include/QmitkBoolPropertyWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkBoolPropertyWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_BOOLPROPERTYVIEW_H_INCLUDED #define QMITK_BOOLPROPERTYVIEW_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkBoundingObjectWidget.h b/Modules/QtWidgetsExt/include/QmitkBoundingObjectWidget.h index 11185d3c678..52d5f0d2ada 100644 --- a/Modules/QtWidgetsExt/include/QmitkBoundingObjectWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkBoundingObjectWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKBOUNDINGOBJECTWIDGET_H_INCLUDED #define _QMITKBOUNDINGOBJECTWIDGET_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkCallbackFromGUIThread.h b/Modules/QtWidgetsExt/include/QmitkCallbackFromGUIThread.h index f149380854d..426fd943889 100644 --- a/Modules/QtWidgetsExt/include/QmitkCallbackFromGUIThread.h +++ b/Modules/QtWidgetsExt/include/QmitkCallbackFromGUIThread.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_CALLBACK_WITHIN_GUI_TREAD_H_INCLUDGEWQ #define QMITK_CALLBACK_WITHIN_GUI_TREAD_H_INCLUDGEWQ diff --git a/Modules/QtWidgetsExt/include/QmitkColorPropertyEditor.h b/Modules/QtWidgetsExt/include/QmitkColorPropertyEditor.h index f15bc9df52f..e4ba7e4c7de 100644 --- a/Modules/QtWidgetsExt/include/QmitkColorPropertyEditor.h +++ b/Modules/QtWidgetsExt/include/QmitkColorPropertyEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_COLORPROPERTYEDITOR_H_INCLUDED #define QMITK_COLORPROPERTYEDITOR_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkColorPropertyView.h b/Modules/QtWidgetsExt/include/QmitkColorPropertyView.h index ee573684893..c43c8038977 100644 --- a/Modules/QtWidgetsExt/include/QmitkColorPropertyView.h +++ b/Modules/QtWidgetsExt/include/QmitkColorPropertyView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_COLORPROPERTYVIEW_H_INCLUDED #define QMITK_COLORPROPERTYVIEW_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkColorTransferFunctionCanvas.h b/Modules/QtWidgetsExt/include/QmitkColorTransferFunctionCanvas.h index 2c93615435f..9fb1387c887 100755 --- a/Modules/QtWidgetsExt/include/QmitkColorTransferFunctionCanvas.h +++ b/Modules/QtWidgetsExt/include/QmitkColorTransferFunctionCanvas.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCOLORTRANSFERFUNCTIONCANVAS_H_INCLUDED #define QMITKCOLORTRANSFERFUNCTIONCANVAS_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkCrossWidget.h b/Modules/QtWidgetsExt/include/QmitkCrossWidget.h index 7b6c509f823..fdb79132601 100644 --- a/Modules/QtWidgetsExt/include/QmitkCrossWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkCrossWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTCROSSWIDGET_H_INCLUDED #define QMITKTCROSSWIDGET_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkEditPointDialog.h b/Modules/QtWidgetsExt/include/QmitkEditPointDialog.h index 33588ebddff..7845d08fed5 100644 --- a/Modules/QtWidgetsExt/include/QmitkEditPointDialog.h +++ b/Modules/QtWidgetsExt/include/QmitkEditPointDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkEditPointDialog_h #define QmitkEditPointDialog_h diff --git a/Modules/QtWidgetsExt/include/QmitkEnumerationPropertyWidget.h b/Modules/QtWidgetsExt/include/QmitkEnumerationPropertyWidget.h index a03fb70ac1f..cbbe00bd5d7 100644 --- a/Modules/QtWidgetsExt/include/QmitkEnumerationPropertyWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkEnumerationPropertyWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_ENUMERATIONPROPERTYWIDGET_H_INCLUDED #define QMITK_ENUMERATIONPROPERTYWIDGET_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkFFmpegWriter.h b/Modules/QtWidgetsExt/include/QmitkFFmpegWriter.h index 34f531f64f4..30a66b4b687 100644 --- a/Modules/QtWidgetsExt/include/QmitkFFmpegWriter.h +++ b/Modules/QtWidgetsExt/include/QmitkFFmpegWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkFFmpegWriter_h #define QmitkFFmpegWriter_h diff --git a/Modules/QtWidgetsExt/include/QmitkFileChooser.h b/Modules/QtWidgetsExt/include/QmitkFileChooser.h index 0acf4fc6edd..3bcd6ac7196 100644 --- a/Modules/QtWidgetsExt/include/QmitkFileChooser.h +++ b/Modules/QtWidgetsExt/include/QmitkFileChooser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkFileChooser_h_Included #define QmitkFileChooser_h_Included diff --git a/Modules/QtWidgetsExt/include/QmitkFunctionalityComponentContainer.h b/Modules/QtWidgetsExt/include/QmitkFunctionalityComponentContainer.h index ab715dff33d..b2aa08832ef 100644 --- a/Modules/QtWidgetsExt/include/QmitkFunctionalityComponentContainer.h +++ b/Modules/QtWidgetsExt/include/QmitkFunctionalityComponentContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_FUNCTIONALITYCOMPONENTCONTAINER_H #define QMITK_FUNCTIONALITYCOMPONENTCONTAINER_H diff --git a/Modules/QtWidgetsExt/include/QmitkGnuplotWidget.h b/Modules/QtWidgetsExt/include/QmitkGnuplotWidget.h index e05ec284c21..25d895be440 100644 --- a/Modules/QtWidgetsExt/include/QmitkGnuplotWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkGnuplotWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkGnuplotWidget_h #define QmitkGnuplotWidget_h diff --git a/Modules/QtWidgetsExt/include/QmitkHistogram.h b/Modules/QtWidgetsExt/include/QmitkHistogram.h index 67662286264..6a0138af177 100644 --- a/Modules/QtWidgetsExt/include/QmitkHistogram.h +++ b/Modules/QtWidgetsExt/include/QmitkHistogram.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKHISTOGRAM_H #define QMITKHISTOGRAM_H diff --git a/Modules/QtWidgetsExt/include/QmitkHotkeyLineEdit.h b/Modules/QtWidgetsExt/include/QmitkHotkeyLineEdit.h index f2948201811..c2ebbc41ce9 100644 --- a/Modules/QtWidgetsExt/include/QmitkHotkeyLineEdit.h +++ b/Modules/QtWidgetsExt/include/QmitkHotkeyLineEdit.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKHOTKEYLINEEDIT_H #define QMITKHOTKEYLINEEDIT_H diff --git a/Modules/QtWidgetsExt/include/QmitkModuleTableModel.h b/Modules/QtWidgetsExt/include/QmitkModuleTableModel.h index a4709821aaa..6344a99f4a6 100644 --- a/Modules/QtWidgetsExt/include/QmitkModuleTableModel.h +++ b/Modules/QtWidgetsExt/include/QmitkModuleTableModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMODULETABLEMODEL_H #define QMITKMODULETABLEMODEL_H diff --git a/Modules/QtWidgetsExt/include/QmitkModulesDialog.h b/Modules/QtWidgetsExt/include/QmitkModulesDialog.h index 4464aff22cc..d3fb6e01acf 100644 --- a/Modules/QtWidgetsExt/include/QmitkModulesDialog.h +++ b/Modules/QtWidgetsExt/include/QmitkModulesDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMODULESDIALOG_H #define QMITKMODULESDIALOG_H diff --git a/Modules/QtWidgetsExt/include/QmitkNumberPropertyEditor.h b/Modules/QtWidgetsExt/include/QmitkNumberPropertyEditor.h index b47b5ec4ef9..0065bcf0c3b 100644 --- a/Modules/QtWidgetsExt/include/QmitkNumberPropertyEditor.h +++ b/Modules/QtWidgetsExt/include/QmitkNumberPropertyEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_NUMBERPROPERTYEDITOR_H_INCLUDED #define QMITK_NUMBERPROPERTYEDITOR_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkNumberPropertySlider.h b/Modules/QtWidgetsExt/include/QmitkNumberPropertySlider.h index 8561c6fe4ac..6e254fde607 100644 --- a/Modules/QtWidgetsExt/include/QmitkNumberPropertySlider.h +++ b/Modules/QtWidgetsExt/include/QmitkNumberPropertySlider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNumberPropertySliderhincludecd #define QmitkNumberPropertySliderhincludecd diff --git a/Modules/QtWidgetsExt/include/QmitkNumberPropertyView.h b/Modules/QtWidgetsExt/include/QmitkNumberPropertyView.h index 5b9cabe3428..616c22e22ba 100644 --- a/Modules/QtWidgetsExt/include/QmitkNumberPropertyView.h +++ b/Modules/QtWidgetsExt/include/QmitkNumberPropertyView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_NUMBERPROPERTYVIEW_H_INCLUDED #define QMITK_NUMBERPROPERTYVIEW_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkPiecewiseFunctionCanvas.h b/Modules/QtWidgetsExt/include/QmitkPiecewiseFunctionCanvas.h index 476e9e292e7..e688fa03e48 100755 --- a/Modules/QtWidgetsExt/include/QmitkPiecewiseFunctionCanvas.h +++ b/Modules/QtWidgetsExt/include/QmitkPiecewiseFunctionCanvas.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPIECEWISEFUNCTIONCANVAS_H_INCLUDED #define QMITKPIECEWISEFUNCTIONCANVAS_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkPlotDialog.h b/Modules/QtWidgetsExt/include/QmitkPlotDialog.h index 8c513b4afc2..52e001e5327 100644 --- a/Modules/QtWidgetsExt/include/QmitkPlotDialog.h +++ b/Modules/QtWidgetsExt/include/QmitkPlotDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkPlotDialog_H #define _QmitkPlotDialog_H diff --git a/Modules/QtWidgetsExt/include/QmitkPlotWidget.h b/Modules/QtWidgetsExt/include/QmitkPlotWidget.h index 0c1578b5fa3..9fc9f6c9c0b 100644 --- a/Modules/QtWidgetsExt/include/QmitkPlotWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkPlotWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkPlotWidget_H_ #define _QmitkPlotWidget_H_ diff --git a/Modules/QtWidgetsExt/include/QmitkPointListModel.h b/Modules/QtWidgetsExt/include/QmitkPointListModel.h index e545ec2eff5..03b4be53145 100644 --- a/Modules/QtWidgetsExt/include/QmitkPointListModel.h +++ b/Modules/QtWidgetsExt/include/QmitkPointListModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_POINTLIST_MODEL_H_INCLUDED #define QMITK_POINTLIST_MODEL_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkPointListView.h b/Modules/QtWidgetsExt/include/QmitkPointListView.h index 4e62db62f0c..fccb80b0b45 100644 --- a/Modules/QtWidgetsExt/include/QmitkPointListView.h +++ b/Modules/QtWidgetsExt/include/QmitkPointListView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_POINTLIST_VIEW_H_INCLUDED #define QMITK_POINTLIST_VIEW_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkPointListViewWidget.h b/Modules/QtWidgetsExt/include/QmitkPointListViewWidget.h index 46c84fe8620..51420445c1e 100644 --- a/Modules/QtWidgetsExt/include/QmitkPointListViewWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkPointListViewWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPointListViewWidget_h #define QmitkPointListViewWidget_h diff --git a/Modules/QtWidgetsExt/include/QmitkPointListWidget.h b/Modules/QtWidgetsExt/include/QmitkPointListWidget.h index 94f696986c7..b886dea24a4 100644 --- a/Modules/QtWidgetsExt/include/QmitkPointListWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkPointListWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPointListWidget_H #define QmitkPointListWidget_H diff --git a/Modules/QtWidgetsExt/include/QmitkPrimitiveMovieNavigatorWidget.h b/Modules/QtWidgetsExt/include/QmitkPrimitiveMovieNavigatorWidget.h index 1239f3d5307..687c40c77cf 100755 --- a/Modules/QtWidgetsExt/include/QmitkPrimitiveMovieNavigatorWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkPrimitiveMovieNavigatorWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPRIMITIVEMOVIENAVIGATORWIDGET_H_ #define QMITKPRIMITIVEMOVIENAVIGATORWIDGET_H_ diff --git a/Modules/QtWidgetsExt/include/QmitkPropertyListPopup.h b/Modules/QtWidgetsExt/include/QmitkPropertyListPopup.h index 67090d3aacd..691b08e9150 100644 --- a/Modules/QtWidgetsExt/include/QmitkPropertyListPopup.h +++ b/Modules/QtWidgetsExt/include/QmitkPropertyListPopup.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyListPopuph_included_dingeling #define QmitkPropertyListPopuph_included_dingeling diff --git a/Modules/QtWidgetsExt/include/QmitkPropertyViewFactory.h b/Modules/QtWidgetsExt/include/QmitkPropertyViewFactory.h index 7865b54db74..75e1b32b9f6 100644 --- a/Modules/QtWidgetsExt/include/QmitkPropertyViewFactory.h +++ b/Modules/QtWidgetsExt/include/QmitkPropertyViewFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyViewFactory_h #define QmitkPropertyViewFactory_h diff --git a/Modules/QtWidgetsExt/include/QmitkSelectableGLWidget.h b/Modules/QtWidgetsExt/include/QmitkSelectableGLWidget.h index 4088319be85..36a92bb1da0 100644 --- a/Modules/QtWidgetsExt/include/QmitkSelectableGLWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkSelectableGLWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSELECTABLEGLWIDGET_H #define QMITKSELECTABLEGLWIDGET_H diff --git a/Modules/QtWidgetsExt/include/QmitkSliceWidget.h b/Modules/QtWidgetsExt/include/QmitkSliceWidget.h index 9599d598be5..be216bdaf29 100644 --- a/Modules/QtWidgetsExt/include/QmitkSliceWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkSliceWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSLICEWIDGET_H_ #define QMITKSLICEWIDGET_H_ diff --git a/Modules/QtWidgetsExt/include/QmitkSliderNavigatorWidget.h b/Modules/QtWidgetsExt/include/QmitkSliderNavigatorWidget.h index 99d5e3fd598..76a054de7f1 100644 --- a/Modules/QtWidgetsExt/include/QmitkSliderNavigatorWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkSliderNavigatorWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSLIDERNAVIGATORWIDGET_H_ #define QMITKSLIDERNAVIGATORWIDGET_H_ diff --git a/Modules/QtWidgetsExt/include/QmitkStandardViews.h b/Modules/QtWidgetsExt/include/QmitkStandardViews.h index bf46f5fcd0e..f0883cbefde 100644 --- a/Modules/QtWidgetsExt/include/QmitkStandardViews.h +++ b/Modules/QtWidgetsExt/include/QmitkStandardViews.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkStandardViews_h_included #define QmitkStandardViews_h_included diff --git a/Modules/QtWidgetsExt/include/QmitkStepperAdapter.h b/Modules/QtWidgetsExt/include/QmitkStepperAdapter.h index 7c331b21cab..403e2370e55 100644 --- a/Modules/QtWidgetsExt/include/QmitkStepperAdapter.h +++ b/Modules/QtWidgetsExt/include/QmitkStepperAdapter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSTEPPERADAPTER_H_HEADER_INCLUDED_C1E77191 #define QMITKSTEPPERADAPTER_H_HEADER_INCLUDED_C1E77191 diff --git a/Modules/QtWidgetsExt/include/QmitkStringPropertyEditor.h b/Modules/QtWidgetsExt/include/QmitkStringPropertyEditor.h index 5cd9dd0f240..7d0f2da732f 100644 --- a/Modules/QtWidgetsExt/include/QmitkStringPropertyEditor.h +++ b/Modules/QtWidgetsExt/include/QmitkStringPropertyEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_STRINGPROPERTYEDITOR_H_INCLUDED #define QMITK_STRINGPROPERTYEDITOR_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkStringPropertyOnDemandEdit.h b/Modules/QtWidgetsExt/include/QmitkStringPropertyOnDemandEdit.h index be78c0553c0..f609a7a5a4d 100644 --- a/Modules/QtWidgetsExt/include/QmitkStringPropertyOnDemandEdit.h +++ b/Modules/QtWidgetsExt/include/QmitkStringPropertyOnDemandEdit.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_STRINGPROPERTYONDEMANDDEDITOR_H_INCLUDED #define QMITK_STRINGPROPERTYONDEMANDDEDITOR_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkStringPropertyView.h b/Modules/QtWidgetsExt/include/QmitkStringPropertyView.h index ec87682cea7..1b928164316 100644 --- a/Modules/QtWidgetsExt/include/QmitkStringPropertyView.h +++ b/Modules/QtWidgetsExt/include/QmitkStringPropertyView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_STRINGPROPERTYVIEW_H_INCLUDED #define QMITK_STRINGPROPERTYVIEW_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkTransferFunctionCanvas.h b/Modules/QtWidgetsExt/include/QmitkTransferFunctionCanvas.h index 8969ae058fc..59a3d1c8ed4 100755 --- a/Modules/QtWidgetsExt/include/QmitkTransferFunctionCanvas.h +++ b/Modules/QtWidgetsExt/include/QmitkTransferFunctionCanvas.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTRANSFERFUNCTIONCANVAS_H_INCLUDED #define QMITKTRANSFERFUNCTIONCANVAS_H_INCLUDED diff --git a/Modules/QtWidgetsExt/include/QmitkTransferFunctionGeneratorWidget.h b/Modules/QtWidgetsExt/include/QmitkTransferFunctionGeneratorWidget.h index ff42f5d3d38..5bf7ea8d64a 100644 --- a/Modules/QtWidgetsExt/include/QmitkTransferFunctionGeneratorWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkTransferFunctionGeneratorWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTRANSFERFUNCTIONGENERATORWIDGET_H #define QMITKTRANSFERFUNCTIONGENERATORWIDGET_H diff --git a/Modules/QtWidgetsExt/include/QmitkTransferFunctionWidget.h b/Modules/QtWidgetsExt/include/QmitkTransferFunctionWidget.h index 20b6bf728fe..d1d5a901d4f 100755 --- a/Modules/QtWidgetsExt/include/QmitkTransferFunctionWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkTransferFunctionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTRANSFERFUNCTIONWIDGET_H #define QMITKTRANSFERFUNCTIONWIDGET_H diff --git a/Modules/QtWidgetsExt/include/QmitkUGCombinedRepresentationPropertyWidget.h b/Modules/QtWidgetsExt/include/QmitkUGCombinedRepresentationPropertyWidget.h index 7c4e87e3ddf..969febb3967 100644 --- a/Modules/QtWidgetsExt/include/QmitkUGCombinedRepresentationPropertyWidget.h +++ b/Modules/QtWidgetsExt/include/QmitkUGCombinedRepresentationPropertyWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUGCOMBINEDREPRESENTATIONPROPERTYWIDGET_H #define QMITKUGCOMBINEDREPRESENTATIONPROPERTYWIDGET_H diff --git a/Modules/QtWidgetsExt/include/QmitkVideoBackground.h b/Modules/QtWidgetsExt/include/QmitkVideoBackground.h index 62193875e51..ad37281eecd 100644 --- a/Modules/QtWidgetsExt/include/QmitkVideoBackground.h +++ b/Modules/QtWidgetsExt/include/QmitkVideoBackground.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _Qmitk_Video_Background_h_ #define _Qmitk_Video_Background_h_ diff --git a/Modules/QtWidgetsExt/include/QtWidgetsExtRegisterClasses.h b/Modules/QtWidgetsExt/include/QtWidgetsExtRegisterClasses.h index 952067dc928..c1b2f86ff39 100644 --- a/Modules/QtWidgetsExt/include/QtWidgetsExtRegisterClasses.h +++ b/Modules/QtWidgetsExt/include/QtWidgetsExtRegisterClasses.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QtWidgetsExtRegisterClasses_h #define QtWidgetsExtRegisterClasses_h diff --git a/Modules/QtWidgetsExt/include/qclickablelabel.h b/Modules/QtWidgetsExt/include/qclickablelabel.h index 61905357e6d..1afe7791c93 100644 --- a/Modules/QtWidgetsExt/include/qclickablelabel.h +++ b/Modules/QtWidgetsExt/include/qclickablelabel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef qclickablelabelhincluded #define qclickablelabelhincluded diff --git a/Modules/QtWidgetsExt/src/QmitkAboutDialog.cpp b/Modules/QtWidgetsExt/src/QmitkAboutDialog.cpp index 089e45a6632..b29b0e411b8 100644 --- a/Modules/QtWidgetsExt/src/QmitkAboutDialog.cpp +++ b/Modules/QtWidgetsExt/src/QmitkAboutDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAboutDialog.h" #include "QmitkModulesDialog.h" diff --git a/Modules/QtWidgetsExt/src/QmitkBasePropertyView.cpp b/Modules/QtWidgetsExt/src/QmitkBasePropertyView.cpp index 5db4f6da61f..14bdbaec918 100644 --- a/Modules/QtWidgetsExt/src/QmitkBasePropertyView.cpp +++ b/Modules/QtWidgetsExt/src/QmitkBasePropertyView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkBasePropertyView.h" QmitkBasePropertyView::QmitkBasePropertyView(const mitk::BaseProperty *property, QWidget *parent) diff --git a/Modules/QtWidgetsExt/src/QmitkBoolPropertyWidget.cpp b/Modules/QtWidgetsExt/src/QmitkBoolPropertyWidget.cpp index b34be32af00..61df61f57f7 100644 --- a/Modules/QtWidgetsExt/src/QmitkBoolPropertyWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkBoolPropertyWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkBoolPropertyWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkBoundingObjectWidget.cpp b/Modules/QtWidgetsExt/src/QmitkBoundingObjectWidget.cpp index 2152b3ff3ad..20446588511 100644 --- a/Modules/QtWidgetsExt/src/QmitkBoundingObjectWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkBoundingObjectWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkBoundingObjectWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkCallbackFromGUIThread.cpp b/Modules/QtWidgetsExt/src/QmitkCallbackFromGUIThread.cpp index c4979d961f8..9556d2973cd 100644 --- a/Modules/QtWidgetsExt/src/QmitkCallbackFromGUIThread.cpp +++ b/Modules/QtWidgetsExt/src/QmitkCallbackFromGUIThread.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCallbackFromGUIThread.h" diff --git a/Modules/QtWidgetsExt/src/QmitkColorPropertyEditor.cpp b/Modules/QtWidgetsExt/src/QmitkColorPropertyEditor.cpp index 70b0d89972c..254c1afea45 100644 --- a/Modules/QtWidgetsExt/src/QmitkColorPropertyEditor.cpp +++ b/Modules/QtWidgetsExt/src/QmitkColorPropertyEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkColorPropertyEditor.h" #include diff --git a/Modules/QtWidgetsExt/src/QmitkColorPropertyView.cpp b/Modules/QtWidgetsExt/src/QmitkColorPropertyView.cpp index f953ae6e671..95789bc8e4a 100644 --- a/Modules/QtWidgetsExt/src/QmitkColorPropertyView.cpp +++ b/Modules/QtWidgetsExt/src/QmitkColorPropertyView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkColorPropertyView.h" #include #define ROUND_P(x) ((int)((x) + 0.5)) diff --git a/Modules/QtWidgetsExt/src/QmitkColorTransferFunctionCanvas.cpp b/Modules/QtWidgetsExt/src/QmitkColorTransferFunctionCanvas.cpp index 261cb848dde..f0b9626bbaa 100755 --- a/Modules/QtWidgetsExt/src/QmitkColorTransferFunctionCanvas.cpp +++ b/Modules/QtWidgetsExt/src/QmitkColorTransferFunctionCanvas.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkColorTransferFunctionCanvas.h" diff --git a/Modules/QtWidgetsExt/src/QmitkCrossWidget.cpp b/Modules/QtWidgetsExt/src/QmitkCrossWidget.cpp index 383bd10c710..33023012701 100644 --- a/Modules/QtWidgetsExt/src/QmitkCrossWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkCrossWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCrossWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkEditPointDialog.cpp b/Modules/QtWidgetsExt/src/QmitkEditPointDialog.cpp index 2a0384b96d8..3bed54a3437 100644 --- a/Modules/QtWidgetsExt/src/QmitkEditPointDialog.cpp +++ b/Modules/QtWidgetsExt/src/QmitkEditPointDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkEditPointDialog.h" diff --git a/Modules/QtWidgetsExt/src/QmitkEnumerationPropertyWidget.cpp b/Modules/QtWidgetsExt/src/QmitkEnumerationPropertyWidget.cpp index b3637528dfe..e66561ba9ce 100644 --- a/Modules/QtWidgetsExt/src/QmitkEnumerationPropertyWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkEnumerationPropertyWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkEnumerationPropertyWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkFFmpegWriter.cpp b/Modules/QtWidgetsExt/src/QmitkFFmpegWriter.cpp index a55bb1259c3..58d8c5cc070 100644 --- a/Modules/QtWidgetsExt/src/QmitkFFmpegWriter.cpp +++ b/Modules/QtWidgetsExt/src/QmitkFFmpegWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFFmpegWriter.h" #include diff --git a/Modules/QtWidgetsExt/src/QmitkFileChooser.cpp b/Modules/QtWidgetsExt/src/QmitkFileChooser.cpp index 18dc541cb06..56ef7168dc1 100644 --- a/Modules/QtWidgetsExt/src/QmitkFileChooser.cpp +++ b/Modules/QtWidgetsExt/src/QmitkFileChooser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileChooser.h" diff --git a/Modules/QtWidgetsExt/src/QmitkFunctionalityComponentContainer.cpp b/Modules/QtWidgetsExt/src/QmitkFunctionalityComponentContainer.cpp index fc2cd04a593..9cf43a280b0 100644 --- a/Modules/QtWidgetsExt/src/QmitkFunctionalityComponentContainer.cpp +++ b/Modules/QtWidgetsExt/src/QmitkFunctionalityComponentContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFunctionalityComponentContainer.h" #include "ui_QmitkFunctionalityComponentContainerControls.h" diff --git a/Modules/QtWidgetsExt/src/QmitkGnuplotWidget.cpp b/Modules/QtWidgetsExt/src/QmitkGnuplotWidget.cpp index 5fb05db1212..76527b197d6 100644 --- a/Modules/QtWidgetsExt/src/QmitkGnuplotWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkGnuplotWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkGnuplotWidget.h" #include diff --git a/Modules/QtWidgetsExt/src/QmitkHistogram.cpp b/Modules/QtWidgetsExt/src/QmitkHistogram.cpp index 6719756c45f..c2a7db8f5b5 100644 --- a/Modules/QtWidgetsExt/src/QmitkHistogram.cpp +++ b/Modules/QtWidgetsExt/src/QmitkHistogram.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/QtWidgetsExt/src/QmitkHotkeyLineEdit.cpp b/Modules/QtWidgetsExt/src/QmitkHotkeyLineEdit.cpp index a884b3b50a2..f15f2c3b18b 100644 --- a/Modules/QtWidgetsExt/src/QmitkHotkeyLineEdit.cpp +++ b/Modules/QtWidgetsExt/src/QmitkHotkeyLineEdit.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkHotkeyLineEdit.h" diff --git a/Modules/QtWidgetsExt/src/QmitkModuleTableModel.cpp b/Modules/QtWidgetsExt/src/QmitkModuleTableModel.cpp index 8b216029807..7cbc0d9781e 100644 --- a/Modules/QtWidgetsExt/src/QmitkModuleTableModel.cpp +++ b/Modules/QtWidgetsExt/src/QmitkModuleTableModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkModuleTableModel.h" diff --git a/Modules/QtWidgetsExt/src/QmitkModulesDialog.cpp b/Modules/QtWidgetsExt/src/QmitkModulesDialog.cpp index 2619ff5b0f0..09412d7fd88 100644 --- a/Modules/QtWidgetsExt/src/QmitkModulesDialog.cpp +++ b/Modules/QtWidgetsExt/src/QmitkModulesDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkModulesDialog.h" diff --git a/Modules/QtWidgetsExt/src/QmitkNumberPropertyEditor.cpp b/Modules/QtWidgetsExt/src/QmitkNumberPropertyEditor.cpp index c64b589cc17..13ee1c331cf 100644 --- a/Modules/QtWidgetsExt/src/QmitkNumberPropertyEditor.cpp +++ b/Modules/QtWidgetsExt/src/QmitkNumberPropertyEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNumberPropertyEditor.h" #include #include diff --git a/Modules/QtWidgetsExt/src/QmitkNumberPropertySlider.cpp b/Modules/QtWidgetsExt/src/QmitkNumberPropertySlider.cpp index 64c84ebd7d6..11d5bfe1222 100644 --- a/Modules/QtWidgetsExt/src/QmitkNumberPropertySlider.cpp +++ b/Modules/QtWidgetsExt/src/QmitkNumberPropertySlider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/QtWidgetsExt/src/QmitkNumberPropertyView.cpp b/Modules/QtWidgetsExt/src/QmitkNumberPropertyView.cpp index e6901911093..17bb2e44669 100644 --- a/Modules/QtWidgetsExt/src/QmitkNumberPropertyView.cpp +++ b/Modules/QtWidgetsExt/src/QmitkNumberPropertyView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNumberPropertyView.h" #include diff --git a/Modules/QtWidgetsExt/src/QmitkPiecewiseFunctionCanvas.cpp b/Modules/QtWidgetsExt/src/QmitkPiecewiseFunctionCanvas.cpp index e6cc4590850..d96035007e8 100755 --- a/Modules/QtWidgetsExt/src/QmitkPiecewiseFunctionCanvas.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPiecewiseFunctionCanvas.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPiecewiseFunctionCanvas.h" diff --git a/Modules/QtWidgetsExt/src/QmitkPlotDialog.cpp b/Modules/QtWidgetsExt/src/QmitkPlotDialog.cpp index 96967b1b8b8..887e3cf0f07 100644 --- a/Modules/QtWidgetsExt/src/QmitkPlotDialog.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPlotDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/QtWidgetsExt/src/QmitkPlotWidget.cpp b/Modules/QtWidgetsExt/src/QmitkPlotWidget.cpp index 37b14467398..950eec87a15 100644 --- a/Modules/QtWidgetsExt/src/QmitkPlotWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPlotWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/QtWidgetsExt/src/QmitkPointListModel.cpp b/Modules/QtWidgetsExt/src/QmitkPointListModel.cpp index 96b6da72bba..c9dc4df9c00 100644 --- a/Modules/QtWidgetsExt/src/QmitkPointListModel.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPointListModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPointListModel.h" #include "mitkInteractionConst.h" diff --git a/Modules/QtWidgetsExt/src/QmitkPointListView.cpp b/Modules/QtWidgetsExt/src/QmitkPointListView.cpp index 973005a7b18..8e16d207ebe 100644 --- a/Modules/QtWidgetsExt/src/QmitkPointListView.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPointListView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPointListView.h" diff --git a/Modules/QtWidgetsExt/src/QmitkPointListViewWidget.cpp b/Modules/QtWidgetsExt/src/QmitkPointListViewWidget.cpp index b71b44d2300..347368f3089 100644 --- a/Modules/QtWidgetsExt/src/QmitkPointListViewWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPointListViewWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPointListViewWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkPointListWidget.cpp b/Modules/QtWidgetsExt/src/QmitkPointListWidget.cpp index f4b6a15e089..b2c9dcd2a81 100644 --- a/Modules/QtWidgetsExt/src/QmitkPointListWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPointListWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPointListWidget.h" #include "QmitkPointListView.h" #include "QmitkPointListModel.h" diff --git a/Modules/QtWidgetsExt/src/QmitkPrimitiveMovieNavigatorWidget.cpp b/Modules/QtWidgetsExt/src/QmitkPrimitiveMovieNavigatorWidget.cpp index 53650d67614..dad58a3c4bd 100755 --- a/Modules/QtWidgetsExt/src/QmitkPrimitiveMovieNavigatorWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPrimitiveMovieNavigatorWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPrimitiveMovieNavigatorWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkPropertyListPopup.cpp b/Modules/QtWidgetsExt/src/QmitkPropertyListPopup.cpp index c1947e5cb29..6d3be72f8f8 100644 --- a/Modules/QtWidgetsExt/src/QmitkPropertyListPopup.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPropertyListPopup.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertyListPopup.h" #include "QmitkMaterialEditor.h" diff --git a/Modules/QtWidgetsExt/src/QmitkPropertyViewFactory.cpp b/Modules/QtWidgetsExt/src/QmitkPropertyViewFactory.cpp index 957499a62cb..7d55a519f06 100644 --- a/Modules/QtWidgetsExt/src/QmitkPropertyViewFactory.cpp +++ b/Modules/QtWidgetsExt/src/QmitkPropertyViewFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertyViewFactory.h" diff --git a/Modules/QtWidgetsExt/src/QmitkSelectableGLWidget.cpp b/Modules/QtWidgetsExt/src/QmitkSelectableGLWidget.cpp index 5f1811d3ddb..acad59eb4f0 100644 --- a/Modules/QtWidgetsExt/src/QmitkSelectableGLWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkSelectableGLWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSelectableGLWidget.h" #include "QmitkRenderWindow.h" diff --git a/Modules/QtWidgetsExt/src/QmitkSliceWidget.cpp b/Modules/QtWidgetsExt/src/QmitkSliceWidget.cpp index 4edc9e9954d..34cb7dab3b5 100644 --- a/Modules/QtWidgetsExt/src/QmitkSliceWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkSliceWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSliceWidget.h" #include "QmitkStepperAdapter.h" diff --git a/Modules/QtWidgetsExt/src/QmitkSliderNavigatorWidget.cpp b/Modules/QtWidgetsExt/src/QmitkSliderNavigatorWidget.cpp index 19b40ad0e07..4d3b9e244c0 100644 --- a/Modules/QtWidgetsExt/src/QmitkSliderNavigatorWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkSliderNavigatorWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSliderNavigatorWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkStandardViews.cpp b/Modules/QtWidgetsExt/src/QmitkStandardViews.cpp index 781b34e7be0..e529aaba609 100644 --- a/Modules/QtWidgetsExt/src/QmitkStandardViews.cpp +++ b/Modules/QtWidgetsExt/src/QmitkStandardViews.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStandardViews.h" diff --git a/Modules/QtWidgetsExt/src/QmitkStepperAdapter.cpp b/Modules/QtWidgetsExt/src/QmitkStepperAdapter.cpp index 0ab46456c33..1d24d388586 100644 --- a/Modules/QtWidgetsExt/src/QmitkStepperAdapter.cpp +++ b/Modules/QtWidgetsExt/src/QmitkStepperAdapter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStepperAdapter.h" diff --git a/Modules/QtWidgetsExt/src/QmitkStringPropertyEditor.cpp b/Modules/QtWidgetsExt/src/QmitkStringPropertyEditor.cpp index 7c98022c304..da0463daaa1 100644 --- a/Modules/QtWidgetsExt/src/QmitkStringPropertyEditor.cpp +++ b/Modules/QtWidgetsExt/src/QmitkStringPropertyEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStringPropertyEditor.h" QmitkStringPropertyEditor::QmitkStringPropertyEditor(mitk::StringProperty *property, QWidget *parent) diff --git a/Modules/QtWidgetsExt/src/QmitkStringPropertyOnDemandEdit.cpp b/Modules/QtWidgetsExt/src/QmitkStringPropertyOnDemandEdit.cpp index 6676be7c4ca..1a20f6a3e41 100644 --- a/Modules/QtWidgetsExt/src/QmitkStringPropertyOnDemandEdit.cpp +++ b/Modules/QtWidgetsExt/src/QmitkStringPropertyOnDemandEdit.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStringPropertyOnDemandEdit.h" #include diff --git a/Modules/QtWidgetsExt/src/QmitkStringPropertyView.cpp b/Modules/QtWidgetsExt/src/QmitkStringPropertyView.cpp index 9bd6c153129..6e055fa9e30 100644 --- a/Modules/QtWidgetsExt/src/QmitkStringPropertyView.cpp +++ b/Modules/QtWidgetsExt/src/QmitkStringPropertyView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStringPropertyView.h" QmitkStringPropertyView::QmitkStringPropertyView(const mitk::StringProperty *property, QWidget *parent) diff --git a/Modules/QtWidgetsExt/src/QmitkTransferFunctionCanvas.cpp b/Modules/QtWidgetsExt/src/QmitkTransferFunctionCanvas.cpp index 53032f23543..b71f2fb8894 100755 --- a/Modules/QtWidgetsExt/src/QmitkTransferFunctionCanvas.cpp +++ b/Modules/QtWidgetsExt/src/QmitkTransferFunctionCanvas.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTransferFunctionCanvas.h" diff --git a/Modules/QtWidgetsExt/src/QmitkTransferFunctionGeneratorWidget.cpp b/Modules/QtWidgetsExt/src/QmitkTransferFunctionGeneratorWidget.cpp index 166f3516afa..e244bb77a10 100644 --- a/Modules/QtWidgetsExt/src/QmitkTransferFunctionGeneratorWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkTransferFunctionGeneratorWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTransferFunctionGeneratorWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkTransferFunctionWidget.cpp b/Modules/QtWidgetsExt/src/QmitkTransferFunctionWidget.cpp index 7a85f8e3eb0..bde5c548547 100755 --- a/Modules/QtWidgetsExt/src/QmitkTransferFunctionWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkTransferFunctionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTransferFunctionWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkUGCombinedRepresentationPropertyWidget.cpp b/Modules/QtWidgetsExt/src/QmitkUGCombinedRepresentationPropertyWidget.cpp index c41a50ea02c..4a47503b526 100644 --- a/Modules/QtWidgetsExt/src/QmitkUGCombinedRepresentationPropertyWidget.cpp +++ b/Modules/QtWidgetsExt/src/QmitkUGCombinedRepresentationPropertyWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUGCombinedRepresentationPropertyWidget.h" diff --git a/Modules/QtWidgetsExt/src/QmitkVideoBackground.cpp b/Modules/QtWidgetsExt/src/QmitkVideoBackground.cpp index 3beff5cf405..cade3a04175 100644 --- a/Modules/QtWidgetsExt/src/QmitkVideoBackground.cpp +++ b/Modules/QtWidgetsExt/src/QmitkVideoBackground.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkVideoBackground.h" diff --git a/Modules/QtWidgetsExt/src/QtWidgetsExtRegisterClasses.cpp b/Modules/QtWidgetsExt/src/QtWidgetsExtRegisterClasses.cpp index f49e2d03c49..3d4d7408609 100644 --- a/Modules/QtWidgetsExt/src/QtWidgetsExtRegisterClasses.cpp +++ b/Modules/QtWidgetsExt/src/QtWidgetsExtRegisterClasses.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QtWidgetsExtRegisterClasses.h" #include "QmitkCallbackFromGUIThread.h" diff --git a/Modules/QtWidgetsExt/src/qclickablelabel.cpp b/Modules/QtWidgetsExt/src/qclickablelabel.cpp index 5ba2357521b..1e72a11213d 100644 --- a/Modules/QtWidgetsExt/src/qclickablelabel.cpp +++ b/Modules/QtWidgetsExt/src/qclickablelabel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "qclickablelabel.h" diff --git a/Modules/REST/include/mitkIRESTManager.h b/Modules/REST/include/mitkIRESTManager.h index 3da1876ec2c..a40a9432fb0 100644 --- a/Modules/REST/include/mitkIRESTManager.h +++ b/Modules/REST/include/mitkIRESTManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIRESTManager_h #define mitkIRESTManager_h diff --git a/Modules/REST/include/mitkIRESTObserver.h b/Modules/REST/include/mitkIRESTObserver.h index a90e246bda8..099483fc585 100644 --- a/Modules/REST/include/mitkIRESTObserver.h +++ b/Modules/REST/include/mitkIRESTObserver.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIRESTObserver_h #define mitkIRESTObserver_h diff --git a/Modules/REST/include/mitkRESTClient.h b/Modules/REST/include/mitkRESTClient.h index c8775030581..5cf46e094ab 100644 --- a/Modules/REST/include/mitkRESTClient.h +++ b/Modules/REST/include/mitkRESTClient.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRESTClient_h #define mitkRESTClient_h diff --git a/Modules/REST/include/mitkRESTServer.h b/Modules/REST/include/mitkRESTServer.h index fdcaf611aad..429f0b687de 100644 --- a/Modules/REST/include/mitkRESTServer.h +++ b/Modules/REST/include/mitkRESTServer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRESTServer_h #define mitkRESTServer_h diff --git a/Modules/REST/include/mitkRESTUtil.h b/Modules/REST/include/mitkRESTUtil.h index fdc16c0a19b..22b0fed5939 100644 --- a/Modules/REST/include/mitkRESTUtil.h +++ b/Modules/REST/include/mitkRESTUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRESTUtil_h #define mitkRESTUtil_h diff --git a/Modules/REST/src/mitkIRESTManager.cpp b/Modules/REST/src/mitkIRESTManager.cpp index 81840e0292d..b26b7dc1b01 100644 --- a/Modules/REST/src/mitkIRESTManager.cpp +++ b/Modules/REST/src/mitkIRESTManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/REST/src/mitkIRESTObserver.cpp b/Modules/REST/src/mitkIRESTObserver.cpp index 3691556bc9c..c60342304f2 100644 --- a/Modules/REST/src/mitkIRESTObserver.cpp +++ b/Modules/REST/src/mitkIRESTObserver.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -20,7 +16,7 @@ See LICENSE.txt or http://www.mitk.org for details. #include #include -mitk::IRESTObserver::~IRESTObserver() +mitk::IRESTObserver::~IRESTObserver() { auto context = us::GetModuleContext(); auto managerRef = context->GetServiceReference(); diff --git a/Modules/REST/src/mitkRESTClient.cpp b/Modules/REST/src/mitkRESTClient.cpp index 5fc0cb30d0b..11c66a519f3 100644 --- a/Modules/REST/src/mitkRESTClient.cpp +++ b/Modules/REST/src/mitkRESTClient.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/REST/src/mitkRESTServer.cpp b/Modules/REST/src/mitkRESTServer.cpp index 13333f85d40..64e94fdb89c 100644 --- a/Modules/REST/src/mitkRESTServer.cpp +++ b/Modules/REST/src/mitkRESTServer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/REST/test/mitkRESTClientTest.cpp b/Modules/REST/test/mitkRESTClientTest.cpp index 1ac3ff898af..4c68032e0d5 100644 --- a/Modules/REST/test/mitkRESTClientTest.cpp +++ b/Modules/REST/test/mitkRESTClientTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/REST/test/mitkRESTServerTest.cpp b/Modules/REST/test/mitkRESTServerTest.cpp index cf3ddd496c0..1292d98b5f7 100644 --- a/Modules/REST/test/mitkRESTServerTest.cpp +++ b/Modules/REST/test/mitkRESTServerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifdef _WIN32 #include diff --git a/Modules/RESTService/include/mitkRESTManager.h b/Modules/RESTService/include/mitkRESTManager.h index cd0929d0acf..f1ad8e00c5f 100644 --- a/Modules/RESTService/include/mitkRESTManager.h +++ b/Modules/RESTService/include/mitkRESTManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRESTManager_h #define mitkRESTManager_h diff --git a/Modules/RESTService/src/mitkRESTManager.cpp b/Modules/RESTService/src/mitkRESTManager.cpp index 36b365168df..0e1962835ef 100644 --- a/Modules/RESTService/src/mitkRESTManager.cpp +++ b/Modules/RESTService/src/mitkRESTManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/RESTService/src/mitkRESTServiceActivator.cpp b/Modules/RESTService/src/mitkRESTServiceActivator.cpp index 4f1dc252550..5128dd40a12 100644 --- a/Modules/RESTService/src/mitkRESTServiceActivator.cpp +++ b/Modules/RESTService/src/mitkRESTServiceActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRESTServiceActivator.h" #include diff --git a/Modules/RESTService/src/mitkRESTServiceActivator.h b/Modules/RESTService/src/mitkRESTServiceActivator.h index de1149b7d05..2029536e649 100644 --- a/Modules/RESTService/src/mitkRESTServiceActivator.h +++ b/Modules/RESTService/src/mitkRESTServiceActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRESTServiceActivator_h #define mitkRESTServiceActivator_h diff --git a/Modules/RTUI/Helper/mitkRTUIConstants.cpp b/Modules/RTUI/Helper/mitkRTUIConstants.cpp index a927b4f7a7c..52a008a5f3b 100644 --- a/Modules/RTUI/Helper/mitkRTUIConstants.cpp +++ b/Modules/RTUI/Helper/mitkRTUIConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRTUIConstants.h" diff --git a/Modules/RTUI/Helper/mitkRTUIConstants.h b/Modules/RTUI/Helper/mitkRTUIConstants.h index 87fed4df09f..d50347048ed 100644 --- a/Modules/RTUI/Helper/mitkRTUIConstants.h +++ b/Modules/RTUI/Helper/mitkRTUIConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_RT_UI_CONSTANTS_H_ #define _MITK_RT_UI_CONSTANTS_H_ diff --git a/Modules/RTUI/Qmitk/QmitkDoseColorDelegate.cpp b/Modules/RTUI/Qmitk/QmitkDoseColorDelegate.cpp index 5332dc97aa1..bf9793a8df8 100644 --- a/Modules/RTUI/Qmitk/QmitkDoseColorDelegate.cpp +++ b/Modules/RTUI/Qmitk/QmitkDoseColorDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDoseColorDelegate.h" diff --git a/Modules/RTUI/Qmitk/QmitkDoseColorDelegate.h b/Modules/RTUI/Qmitk/QmitkDoseColorDelegate.h index f053e95d7b6..750143f8753 100644 --- a/Modules/RTUI/Qmitk/QmitkDoseColorDelegate.h +++ b/Modules/RTUI/Qmitk/QmitkDoseColorDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDoseColorDelegate_h #define QmitkDoseColorDelegate_h diff --git a/Modules/RTUI/Qmitk/QmitkDoseValueDelegate.cpp b/Modules/RTUI/Qmitk/QmitkDoseValueDelegate.cpp index 0c7f90fc212..b98038a7744 100644 --- a/Modules/RTUI/Qmitk/QmitkDoseValueDelegate.cpp +++ b/Modules/RTUI/Qmitk/QmitkDoseValueDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDoseValueDelegate.h" diff --git a/Modules/RTUI/Qmitk/QmitkDoseValueDelegate.h b/Modules/RTUI/Qmitk/QmitkDoseValueDelegate.h index 3622b6d92c1..0a837cc9cca 100644 --- a/Modules/RTUI/Qmitk/QmitkDoseValueDelegate.h +++ b/Modules/RTUI/Qmitk/QmitkDoseValueDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDoseValueDelegate_h #define QmitkDoseValueDelegate_h diff --git a/Modules/RTUI/Qmitk/QmitkDoseVisualStyleDelegate.cpp b/Modules/RTUI/Qmitk/QmitkDoseVisualStyleDelegate.cpp index 0abfd3973f7..716816f470f 100644 --- a/Modules/RTUI/Qmitk/QmitkDoseVisualStyleDelegate.cpp +++ b/Modules/RTUI/Qmitk/QmitkDoseVisualStyleDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDoseVisualStyleDelegate.h" diff --git a/Modules/RTUI/Qmitk/QmitkDoseVisualStyleDelegate.h b/Modules/RTUI/Qmitk/QmitkDoseVisualStyleDelegate.h index 71fe740a0e5..1816c2403eb 100644 --- a/Modules/RTUI/Qmitk/QmitkDoseVisualStyleDelegate.h +++ b/Modules/RTUI/Qmitk/QmitkDoseVisualStyleDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDoseVisualStyleDelegate_h #define QmitkDoseVisualStyleDelegate_h diff --git a/Modules/RTUI/Qmitk/QmitkFreeIsoDoseLevelWidget.cpp b/Modules/RTUI/Qmitk/QmitkFreeIsoDoseLevelWidget.cpp index 82ae029d595..22e5bf3d9d6 100644 --- a/Modules/RTUI/Qmitk/QmitkFreeIsoDoseLevelWidget.cpp +++ b/Modules/RTUI/Qmitk/QmitkFreeIsoDoseLevelWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFreeIsoDoseLevelWidget.h" diff --git a/Modules/RTUI/Qmitk/QmitkFreeIsoDoseLevelWidget.h b/Modules/RTUI/Qmitk/QmitkFreeIsoDoseLevelWidget.h index a1d2293d149..7c001d75611 100644 --- a/Modules/RTUI/Qmitk/QmitkFreeIsoDoseLevelWidget.h +++ b/Modules/RTUI/Qmitk/QmitkFreeIsoDoseLevelWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_FREE_ISO_DOSE_LEVEL_WIDGET_H diff --git a/Modules/RTUI/Qmitk/QmitkIsoDoseLevelSetModel.cpp b/Modules/RTUI/Qmitk/QmitkIsoDoseLevelSetModel.cpp index 3863f42bdf5..cca10226f65 100644 --- a/Modules/RTUI/Qmitk/QmitkIsoDoseLevelSetModel.cpp +++ b/Modules/RTUI/Qmitk/QmitkIsoDoseLevelSetModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/RTUI/Qmitk/QmitkIsoDoseLevelSetModel.h b/Modules/RTUI/Qmitk/QmitkIsoDoseLevelSetModel.h index bcf516d2ce4..7e7d443211f 100644 --- a/Modules/RTUI/Qmitk/QmitkIsoDoseLevelSetModel.h +++ b/Modules/RTUI/Qmitk/QmitkIsoDoseLevelSetModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIsoDoseLevelSetModel_h #define QmitkIsoDoseLevelSetModel_h diff --git a/Modules/RegistrationOntology/include/mitkLesionPropagation.h b/Modules/RegistrationOntology/include/mitkLesionPropagation.h index ea2a7a7cd91..ffcf03cbee7 100644 --- a/Modules/RegistrationOntology/include/mitkLesionPropagation.h +++ b/Modules/RegistrationOntology/include/mitkLesionPropagation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLESIONPROPAGATION_H #define MITKLESIONPROPAGATION_H diff --git a/Modules/RegistrationOntology/src/mitkLesionPropagation.cpp b/Modules/RegistrationOntology/src/mitkLesionPropagation.cpp index 7f73c07a764..82fb1b317da 100644 --- a/Modules/RegistrationOntology/src/mitkLesionPropagation.cpp +++ b/Modules/RegistrationOntology/src/mitkLesionPropagation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLesionPropagation.h" diff --git a/Modules/Remeshing/Testing/mitkACVDTest.cpp b/Modules/Remeshing/Testing/mitkACVDTest.cpp index b29d9ae96e6..f5bf8d53647 100644 --- a/Modules/Remeshing/Testing/mitkACVDTest.cpp +++ b/Modules/Remeshing/Testing/mitkACVDTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Remeshing/mitkACVD.cpp b/Modules/Remeshing/mitkACVD.cpp index 6c44f2c6078..f805979d527 100644 --- a/Modules/Remeshing/mitkACVD.cpp +++ b/Modules/Remeshing/mitkACVD.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkACVD.h" #include diff --git a/Modules/Remeshing/mitkACVD.h b/Modules/Remeshing/mitkACVD.h index 4e03f82cc85..62ee4711154 100644 --- a/Modules/Remeshing/mitkACVD.h +++ b/Modules/Remeshing/mitkACVD.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkACVD_h #define mitkACVD_h diff --git a/Modules/RenderWindowManager/include/mitkRenderWindowLayerController.h b/Modules/RenderWindowManager/include/mitkRenderWindowLayerController.h index d81a6bf2e70..d4e14f8fa3d 100644 --- a/Modules/RenderWindowManager/include/mitkRenderWindowLayerController.h +++ b/Modules/RenderWindowManager/include/mitkRenderWindowLayerController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRENDERWINDOWLAYERCONTROLLER_H #define MITKRENDERWINDOWLAYERCONTROLLER_H diff --git a/Modules/RenderWindowManager/include/mitkRenderWindowLayerUtilities.h b/Modules/RenderWindowManager/include/mitkRenderWindowLayerUtilities.h index 23af38d3c37..c87efddf129 100644 --- a/Modules/RenderWindowManager/include/mitkRenderWindowLayerUtilities.h +++ b/Modules/RenderWindowManager/include/mitkRenderWindowLayerUtilities.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRENDERWINDOWLAYERUTILITIES_H #define MITKRENDERWINDOWLAYERUTILITIES_H diff --git a/Modules/RenderWindowManager/include/mitkRenderWindowViewDirectionController.h b/Modules/RenderWindowManager/include/mitkRenderWindowViewDirectionController.h index 9280a6df776..87825914a25 100644 --- a/Modules/RenderWindowManager/include/mitkRenderWindowViewDirectionController.h +++ b/Modules/RenderWindowManager/include/mitkRenderWindowViewDirectionController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRENDERWINDOWVIEWDIRECTIONCONTROLLER_H #define MITKRENDERWINDOWVIEWDIRECTIONCONTROLLER_H @@ -39,7 +35,7 @@ namespace mitk class MITKRENDERWINDOWMANAGER_EXPORT RenderWindowViewDirectionController { public: - + using ViewDirection = mitk::SliceNavigationController::ViewDirection; RenderWindowViewDirectionController(); diff --git a/Modules/RenderWindowManager/src/mitkRenderWindowLayerController.cpp b/Modules/RenderWindowManager/src/mitkRenderWindowLayerController.cpp index 4ca3aa6af32..37cbe9cde50 100644 --- a/Modules/RenderWindowManager/src/mitkRenderWindowLayerController.cpp +++ b/Modules/RenderWindowManager/src/mitkRenderWindowLayerController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // render window manager module #include "mitkRenderWindowLayerController.h" diff --git a/Modules/RenderWindowManager/src/mitkRenderWindowLayerUtilities.cpp b/Modules/RenderWindowManager/src/mitkRenderWindowLayerUtilities.cpp index fd34b0de43c..b387f8265e3 100644 --- a/Modules/RenderWindowManager/src/mitkRenderWindowLayerUtilities.cpp +++ b/Modules/RenderWindowManager/src/mitkRenderWindowLayerUtilities.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // render window manager module #include "mitkRenderWindowLayerUtilities.h" diff --git a/Modules/RenderWindowManager/src/mitkRenderWindowViewDirectionController.cpp b/Modules/RenderWindowManager/src/mitkRenderWindowViewDirectionController.cpp index 8eed3a7b6c0..fa905dc45fa 100644 --- a/Modules/RenderWindowManager/src/mitkRenderWindowViewDirectionController.cpp +++ b/Modules/RenderWindowManager/src/mitkRenderWindowViewDirectionController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRenderWindowViewDirectionController.h" diff --git a/Modules/RenderWindowManagerUI/include/QmitkDataStorageLayerStackModel.h b/Modules/RenderWindowManagerUI/include/QmitkDataStorageLayerStackModel.h index d106d23db82..c1bc58035a3 100644 --- a/Modules/RenderWindowManagerUI/include/QmitkDataStorageLayerStackModel.h +++ b/Modules/RenderWindowManagerUI/include/QmitkDataStorageLayerStackModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGELAYERSTACKMODEL_H #define QMITKDATASTORAGELAYERSTACKMODEL_H diff --git a/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageInspector.h b/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageInspector.h index 9ad0d80376d..4dfd65d0e31 100644 --- a/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageInspector.h +++ b/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageInspector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKRENDERWINDOWDATASTORAGEINSPECTOR_H #define QMITKRENDERWINDOWDATASTORAGEINSPECTOR_H diff --git a/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageListModel.h b/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageListModel.h index 10409642498..50b705f279f 100644 --- a/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageListModel.h +++ b/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageListModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGERENDERWINDOWLISTMODEL_H #define QMITKDATASTORAGERENDERWINDOWLISTMODEL_H diff --git a/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageTreeModel.h b/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageTreeModel.h index 44a37fbf55d..d1ce14312bc 100644 --- a/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageTreeModel.h +++ b/Modules/RenderWindowManagerUI/include/QmitkRenderWindowDataStorageTreeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGERENDERWINDOWTREEMODEL_H #define QMITKDATASTORAGERENDERWINDOWTREEMODEL_H diff --git a/Modules/RenderWindowManagerUI/src/QmitkDataStorageLayerStackModel.cpp b/Modules/RenderWindowManagerUI/src/QmitkDataStorageLayerStackModel.cpp index e4f627fffcd..35f67336884 100644 --- a/Modules/RenderWindowManagerUI/src/QmitkDataStorageLayerStackModel.cpp +++ b/Modules/RenderWindowManagerUI/src/QmitkDataStorageLayerStackModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageInspector.cpp b/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageInspector.cpp index bc9d3bf31a3..29fdf72bb87 100644 --- a/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageInspector.cpp +++ b/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageInspector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // render window manager UI module #include "QmitkRenderWindowDataStorageInspector.h" diff --git a/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageListModel.cpp b/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageListModel.cpp index 7c456fa3c69..52df4f37ec9 100644 --- a/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageListModel.cpp +++ b/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageListModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // render window manager UI module #include "QmitkRenderWindowDataStorageListModel.h" diff --git a/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageTreeModel.cpp b/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageTreeModel.cpp index 2489423f70d..c453dbdc5c4 100644 --- a/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageTreeModel.cpp +++ b/Modules/RenderWindowManagerUI/src/QmitkRenderWindowDataStorageTreeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // render window manager UI module #include "QmitkRenderWindowDataStorageTreeModel.h" diff --git a/Modules/SceneSerialization/include/mitkSceneIO.h b/Modules/SceneSerialization/include/mitkSceneIO.h index 13b465e4c84..b55d21bf0a3 100644 --- a/Modules/SceneSerialization/include/mitkSceneIO.h +++ b/Modules/SceneSerialization/include/mitkSceneIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSceneIO_h_included #define mitkSceneIO_h_included diff --git a/Modules/SceneSerialization/include/mitkSceneReader.h b/Modules/SceneSerialization/include/mitkSceneReader.h index 989dde13c22..32009710364 100644 --- a/Modules/SceneSerialization/include/mitkSceneReader.h +++ b/Modules/SceneSerialization/include/mitkSceneReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/SceneSerialization/src/mitkGeometryDataSerializer.cpp b/Modules/SceneSerialization/src/mitkGeometryDataSerializer.cpp index e2da4e73fa3..fcf615bab7c 100644 --- a/Modules/SceneSerialization/src/mitkGeometryDataSerializer.cpp +++ b/Modules/SceneSerialization/src/mitkGeometryDataSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometryDataSerializer.h" #include "mitkGeometry3D.h" diff --git a/Modules/SceneSerialization/src/mitkGeometryDataSerializer.h b/Modules/SceneSerialization/src/mitkGeometryDataSerializer.h index a036d58d5db..da060b7877e 100644 --- a/Modules/SceneSerialization/src/mitkGeometryDataSerializer.h +++ b/Modules/SceneSerialization/src/mitkGeometryDataSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGeometryDataSerializer_h_included #define mitkGeometryDataSerializer_h_included diff --git a/Modules/SceneSerialization/src/mitkImageSerializer.cpp b/Modules/SceneSerialization/src/mitkImageSerializer.cpp index 9e525ff102b..82ded448820 100644 --- a/Modules/SceneSerialization/src/mitkImageSerializer.cpp +++ b/Modules/SceneSerialization/src/mitkImageSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageSerializer.h" #include "mitkIOUtil.h" diff --git a/Modules/SceneSerialization/src/mitkImageSerializer.h b/Modules/SceneSerialization/src/mitkImageSerializer.h index 6a4d1f47f60..f97af24fada 100644 --- a/Modules/SceneSerialization/src/mitkImageSerializer.h +++ b/Modules/SceneSerialization/src/mitkImageSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkImageSerializer_h_included #define mitkImageSerializer_h_included diff --git a/Modules/SceneSerialization/src/mitkPointSetSerializer.cpp b/Modules/SceneSerialization/src/mitkPointSetSerializer.cpp index d2bd073e56b..c9b95fbf85a 100644 --- a/Modules/SceneSerialization/src/mitkPointSetSerializer.cpp +++ b/Modules/SceneSerialization/src/mitkPointSetSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointSetSerializer.h" #include "mitkIOUtil.h" diff --git a/Modules/SceneSerialization/src/mitkPointSetSerializer.h b/Modules/SceneSerialization/src/mitkPointSetSerializer.h index 49126ba4117..7bdd09a5ba1 100644 --- a/Modules/SceneSerialization/src/mitkPointSetSerializer.h +++ b/Modules/SceneSerialization/src/mitkPointSetSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPointSetSerializer_h_included #define mitkPointSetSerializer_h_included diff --git a/Modules/SceneSerialization/src/mitkPropertyListDeserializer.cpp b/Modules/SceneSerialization/src/mitkPropertyListDeserializer.cpp index 14090591256..0e7f5501a0c 100644 --- a/Modules/SceneSerialization/src/mitkPropertyListDeserializer.cpp +++ b/Modules/SceneSerialization/src/mitkPropertyListDeserializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyListDeserializer.h" diff --git a/Modules/SceneSerialization/src/mitkPropertyListDeserializer.h b/Modules/SceneSerialization/src/mitkPropertyListDeserializer.h index fda4e36bd2d..e269a70a6cc 100644 --- a/Modules/SceneSerialization/src/mitkPropertyListDeserializer.h +++ b/Modules/SceneSerialization/src/mitkPropertyListDeserializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyListDeserializer_h_included #define mitkPropertyListDeserializer_h_included diff --git a/Modules/SceneSerialization/src/mitkPropertyListDeserializerV1.cpp b/Modules/SceneSerialization/src/mitkPropertyListDeserializerV1.cpp index bb04e01cf34..4eafaa51f87 100644 --- a/Modules/SceneSerialization/src/mitkPropertyListDeserializerV1.cpp +++ b/Modules/SceneSerialization/src/mitkPropertyListDeserializerV1.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyListDeserializerV1.h" #include "mitkBasePropertySerializer.h" diff --git a/Modules/SceneSerialization/src/mitkPropertyListDeserializerV1.h b/Modules/SceneSerialization/src/mitkPropertyListDeserializerV1.h index 0c2aac268a2..557bd1d42ba 100644 --- a/Modules/SceneSerialization/src/mitkPropertyListDeserializerV1.h +++ b/Modules/SceneSerialization/src/mitkPropertyListDeserializerV1.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyListDeserializerV1_h_included #define mitkPropertyListDeserializerV1_h_included diff --git a/Modules/SceneSerialization/src/mitkSceneIO.cpp b/Modules/SceneSerialization/src/mitkSceneIO.cpp index 265f9ea83ea..c6c1c739446 100644 --- a/Modules/SceneSerialization/src/mitkSceneIO.cpp +++ b/Modules/SceneSerialization/src/mitkSceneIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/SceneSerialization/src/mitkSceneReader.cpp b/Modules/SceneSerialization/src/mitkSceneReader.cpp index a310941fa23..1fb3751a86b 100644 --- a/Modules/SceneSerialization/src/mitkSceneReader.cpp +++ b/Modules/SceneSerialization/src/mitkSceneReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSceneReader.h" diff --git a/Modules/SceneSerialization/src/mitkSceneReaderV1.cpp b/Modules/SceneSerialization/src/mitkSceneReaderV1.cpp index 0d1bea4319a..27754338659 100644 --- a/Modules/SceneSerialization/src/mitkSceneReaderV1.cpp +++ b/Modules/SceneSerialization/src/mitkSceneReaderV1.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSceneReaderV1.h" #include "Poco/Path.h" diff --git a/Modules/SceneSerialization/src/mitkSceneReaderV1.h b/Modules/SceneSerialization/src/mitkSceneReaderV1.h index 4fedc37916f..b106b86d6fa 100644 --- a/Modules/SceneSerialization/src/mitkSceneReaderV1.h +++ b/Modules/SceneSerialization/src/mitkSceneReaderV1.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSceneReader.h" diff --git a/Modules/SceneSerialization/src/mitkSurfaceSerializer.cpp b/Modules/SceneSerialization/src/mitkSurfaceSerializer.cpp index 70e1895b27e..3294a3b4ca6 100644 --- a/Modules/SceneSerialization/src/mitkSurfaceSerializer.cpp +++ b/Modules/SceneSerialization/src/mitkSurfaceSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceSerializer.h" diff --git a/Modules/SceneSerialization/src/mitkSurfaceSerializer.h b/Modules/SceneSerialization/src/mitkSurfaceSerializer.h index 6f37ba47005..7a5e43529b3 100644 --- a/Modules/SceneSerialization/src/mitkSurfaceSerializer.h +++ b/Modules/SceneSerialization/src/mitkSurfaceSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSurfaceSerializer_h_included #define mitkSurfaceSerializer_h_included diff --git a/Modules/SceneSerialization/test/mitkBaseDataCompare.cpp b/Modules/SceneSerialization/test/mitkBaseDataCompare.cpp index af196bbc92d..91673633156 100644 --- a/Modules/SceneSerialization/test/mitkBaseDataCompare.cpp +++ b/Modules/SceneSerialization/test/mitkBaseDataCompare.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGeometryData.h" #include "mitkImage.h" diff --git a/Modules/SceneSerialization/test/mitkBaseDataCompare.h b/Modules/SceneSerialization/test/mitkBaseDataCompare.h index d12c93f076f..09a567e4ebe 100644 --- a/Modules/SceneSerialization/test/mitkBaseDataCompare.h +++ b/Modules/SceneSerialization/test/mitkBaseDataCompare.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBaseDataCompare_h_included #define mitkBaseDataCompare_h_included diff --git a/Modules/SceneSerialization/test/mitkDataStorageCompare.cpp b/Modules/SceneSerialization/test/mitkDataStorageCompare.cpp index 1d6549848b6..0bb249821cf 100644 --- a/Modules/SceneSerialization/test/mitkDataStorageCompare.cpp +++ b/Modules/SceneSerialization/test/mitkDataStorageCompare.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataStorageCompare.h" #include "mitkBaseDataCompare.h" diff --git a/Modules/SceneSerialization/test/mitkDataStorageCompare.h b/Modules/SceneSerialization/test/mitkDataStorageCompare.h index d243981b09f..30b856dc826 100644 --- a/Modules/SceneSerialization/test/mitkDataStorageCompare.h +++ b/Modules/SceneSerialization/test/mitkDataStorageCompare.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDataStorageCompare_h_included #define mitkDataStorageCompare_h_included diff --git a/Modules/SceneSerialization/test/mitkSceneIOCompatibilityTest.cpp b/Modules/SceneSerialization/test/mitkSceneIOCompatibilityTest.cpp index da11153bfd7..f1919b51b27 100644 --- a/Modules/SceneSerialization/test/mitkSceneIOCompatibilityTest.cpp +++ b/Modules/SceneSerialization/test/mitkSceneIOCompatibilityTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkRenderingTestHelper.h" diff --git a/Modules/SceneSerialization/test/mitkSceneIOTest.cpp b/Modules/SceneSerialization/test/mitkSceneIOTest.cpp index 684d20d7dc7..9644a181114 100644 --- a/Modules/SceneSerialization/test/mitkSceneIOTest.cpp +++ b/Modules/SceneSerialization/test/mitkSceneIOTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingConfig.h" #include "mitkTestingMacros.h" diff --git a/Modules/SceneSerialization/test/mitkSceneIOTest2.cpp b/Modules/SceneSerialization/test/mitkSceneIOTest2.cpp index ef35a6e1531..3eb1a9e2679 100644 --- a/Modules/SceneSerialization/test/mitkSceneIOTest2.cpp +++ b/Modules/SceneSerialization/test/mitkSceneIOTest2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkException.h" #include "mitkTestFixture.h" diff --git a/Modules/SceneSerialization/test/mitkSceneIOTestScenarioProvider.cpp b/Modules/SceneSerialization/test/mitkSceneIOTestScenarioProvider.cpp index 328f3b6d236..acd1515c520 100644 --- a/Modules/SceneSerialization/test/mitkSceneIOTestScenarioProvider.cpp +++ b/Modules/SceneSerialization/test/mitkSceneIOTestScenarioProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSceneIOTestScenarioProvider.h" diff --git a/Modules/SceneSerialization/test/mitkSceneIOTestScenarioProvider.h b/Modules/SceneSerialization/test/mitkSceneIOTestScenarioProvider.h index 153092c7c1a..360d241604a 100644 --- a/Modules/SceneSerialization/test/mitkSceneIOTestScenarioProvider.h +++ b/Modules/SceneSerialization/test/mitkSceneIOTestScenarioProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSceneIOTestScenarioProvider_h_included #define mitkSceneIOTestScenarioProvider_h_included diff --git a/Modules/SceneSerializationBase/include/mitkBaseDataSerializer.h b/Modules/SceneSerializationBase/include/mitkBaseDataSerializer.h index c9b09cb3011..ea1b4cda4e6 100644 --- a/Modules/SceneSerializationBase/include/mitkBaseDataSerializer.h +++ b/Modules/SceneSerializationBase/include/mitkBaseDataSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSerializeBaseData_h_included #define mitkSerializeBaseData_h_included diff --git a/Modules/SceneSerializationBase/include/mitkBasePropertySerializer.h b/Modules/SceneSerializationBase/include/mitkBasePropertySerializer.h index e0462dc4737..adb01cdaa07 100644 --- a/Modules/SceneSerializationBase/include/mitkBasePropertySerializer.h +++ b/Modules/SceneSerializationBase/include/mitkBasePropertySerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSerializeBaseProperty_h_included #define mitkSerializeBaseProperty_h_included diff --git a/Modules/SceneSerializationBase/include/mitkEnumerationPropertySerializer.h b/Modules/SceneSerializationBase/include/mitkEnumerationPropertySerializer.h index c807d92f0a8..6ac8da4ca96 100644 --- a/Modules/SceneSerializationBase/include/mitkEnumerationPropertySerializer.h +++ b/Modules/SceneSerializationBase/include/mitkEnumerationPropertySerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkEnumerationPropertySerializer_h_included #define mitkEnumerationPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/include/mitkLookupTablePropertySerializer.h b/Modules/SceneSerializationBase/include/mitkLookupTablePropertySerializer.h index 414965b0fb0..2ef0e043b7b 100644 --- a/Modules/SceneSerializationBase/include/mitkLookupTablePropertySerializer.h +++ b/Modules/SceneSerializationBase/include/mitkLookupTablePropertySerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLookupTablePropertySerializer_h_included #define mitkLookupTablePropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/include/mitkPropertyListSerializer.h b/Modules/SceneSerializationBase/include/mitkPropertyListSerializer.h index bd8efac8b59..01b2b0909ef 100644 --- a/Modules/SceneSerializationBase/include/mitkPropertyListSerializer.h +++ b/Modules/SceneSerializationBase/include/mitkPropertyListSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPropertyListSerializer_h_included #define mitkPropertyListSerializer_h_included diff --git a/Modules/SceneSerializationBase/include/mitkSerializerMacros.h b/Modules/SceneSerializationBase/include/mitkSerializerMacros.h index fdc07339b3e..e440d9da30b 100644 --- a/Modules/SceneSerializationBase/include/mitkSerializerMacros.h +++ b/Modules/SceneSerializationBase/include/mitkSerializerMacros.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/SceneSerializationBase/include/mitkStringsToNumbers.h b/Modules/SceneSerializationBase/include/mitkStringsToNumbers.h index f94a1e6a44c..e32d3f45ee6 100644 --- a/Modules/SceneSerializationBase/include/mitkStringsToNumbers.h +++ b/Modules/SceneSerializationBase/include/mitkStringsToNumbers.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVectorPropertySerializer_h #define mitkVectorPropertySerializer_h diff --git a/Modules/SceneSerializationBase/include/mitkTransferFunctionPropertySerializer.h b/Modules/SceneSerializationBase/include/mitkTransferFunctionPropertySerializer.h index de7473e94f6..d5f43fe5ad6 100644 --- a/Modules/SceneSerializationBase/include/mitkTransferFunctionPropertySerializer.h +++ b/Modules/SceneSerializationBase/include/mitkTransferFunctionPropertySerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBasePropertySerializer.h" #include "mitkTransferFunctionProperty.h" diff --git a/Modules/SceneSerializationBase/include/mitkVectorPropertySerializer.h b/Modules/SceneSerializationBase/include/mitkVectorPropertySerializer.h index 4721c0ad92d..6e395c71f7f 100644 --- a/Modules/SceneSerializationBase/include/mitkVectorPropertySerializer.h +++ b/Modules/SceneSerializationBase/include/mitkVectorPropertySerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVectorPropertySerializer_h #define mitkVectorPropertySerializer_h diff --git a/Modules/SceneSerializationBase/src/mitkAnnotationPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkAnnotationPropertySerializer.cpp index 627ead4125f..9368dae2fe6 100644 --- a/Modules/SceneSerializationBase/src/mitkAnnotationPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkAnnotationPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAnnotationPropertySerializer_h_included #define mitkAnnotationPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkBaseDataSerializer.cpp b/Modules/SceneSerializationBase/src/mitkBaseDataSerializer.cpp index 3495e059261..207286b621f 100644 --- a/Modules/SceneSerializationBase/src/mitkBaseDataSerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkBaseDataSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBaseDataSerializer.h" #include "mitkStandardFileLocations.h" diff --git a/Modules/SceneSerializationBase/src/mitkBasePropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkBasePropertySerializer.cpp index bb93bec7386..a21cf2889f9 100644 --- a/Modules/SceneSerializationBase/src/mitkBasePropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkBasePropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBasePropertySerializer.h" diff --git a/Modules/SceneSerializationBase/src/mitkBoolLookupTablePropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkBoolLookupTablePropertySerializer.cpp index dfe221c1a10..59b9edc80ec 100644 --- a/Modules/SceneSerializationBase/src/mitkBoolLookupTablePropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkBoolLookupTablePropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBoolLookupTablePropertySerializer_h_included #define mitkBoolLookupTablePropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkBoolPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkBoolPropertySerializer.cpp index b31050632ff..15da786146b 100644 --- a/Modules/SceneSerializationBase/src/mitkBoolPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkBoolPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBoolPropertySerializer_h_included #define mitkBoolPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkClippingPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkClippingPropertySerializer.cpp index ef3d09ae29a..b19fbdb76dc 100644 --- a/Modules/SceneSerializationBase/src/mitkClippingPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkClippingPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkClippingPropertySerializer_h_included #define mitkClippingPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkColorPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkColorPropertySerializer.cpp index b0f704fd666..cda935b87b7 100644 --- a/Modules/SceneSerializationBase/src/mitkColorPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkColorPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkColorPropertySerializer_h_included #define mitkColorPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkDoublePropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkDoublePropertySerializer.cpp index 483b36fe00d..b5b2255f668 100644 --- a/Modules/SceneSerializationBase/src/mitkDoublePropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkDoublePropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDoublePropertySerializer_h_included #define mitkDoublePropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkEnumerationPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkEnumerationPropertySerializer.cpp index 0175fe873b5..6ef0107dc63 100644 --- a/Modules/SceneSerializationBase/src/mitkEnumerationPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkEnumerationPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkEnumerationPropertySerializer.h" diff --git a/Modules/SceneSerializationBase/src/mitkEnumerationSubclassesSerializer.cpp b/Modules/SceneSerializationBase/src/mitkEnumerationSubclassesSerializer.cpp index 5e1a6e8dfdd..518f2d1177c 100644 --- a/Modules/SceneSerializationBase/src/mitkEnumerationSubclassesSerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkEnumerationSubclassesSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkEnumerationSubclassesSerializer_h_included #define mitkEnumerationSubclassesSerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkFloatLookupTablePropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkFloatLookupTablePropertySerializer.cpp index ea6bb8630f2..935b93e661a 100644 --- a/Modules/SceneSerializationBase/src/mitkFloatLookupTablePropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkFloatLookupTablePropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFloatLookupTablePropertySerializer_h_included #define mitkFloatLookupTablePropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkFloatPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkFloatPropertySerializer.cpp index f18e7f8cc20..b1aab7b373f 100644 --- a/Modules/SceneSerializationBase/src/mitkFloatPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkFloatPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFloatPropertySerializer_h_included #define mitkFloatPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkGroupTagPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkGroupTagPropertySerializer.cpp index b751c1d1875..bda674c3dc6 100644 --- a/Modules/SceneSerializationBase/src/mitkGroupTagPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkGroupTagPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGroupTagPropertySerializer_h_included #define mitkGroupTagPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkIntLookupTablePropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkIntLookupTablePropertySerializer.cpp index b71a66e2c3c..3b7737b5899 100644 --- a/Modules/SceneSerializationBase/src/mitkIntLookupTablePropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkIntLookupTablePropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIntLookupTablePropertySerializer_h_included #define mitkIntLookupTablePropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkIntPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkIntPropertySerializer.cpp index 92d6de18152..5792766f4bc 100644 --- a/Modules/SceneSerializationBase/src/mitkIntPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkIntPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIntPropertySerializer_h_included #define mitkIntPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkLevelWindowPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkLevelWindowPropertySerializer.cpp index 79f1c217d24..82d92743531 100644 --- a/Modules/SceneSerializationBase/src/mitkLevelWindowPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkLevelWindowPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLevelWindowPropertySerializer_h_included #define mitkLevelWindowPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkLookupTablePropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkLookupTablePropertySerializer.cpp index 71cde6d2759..e22e63ff9a0 100644 --- a/Modules/SceneSerializationBase/src/mitkLookupTablePropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkLookupTablePropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLookupTablePropertySerializer.h" #include "mitkStringsToNumbers.h" diff --git a/Modules/SceneSerializationBase/src/mitkPoint3dPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkPoint3dPropertySerializer.cpp index 37f8e416cae..e69d344d036 100644 --- a/Modules/SceneSerializationBase/src/mitkPoint3dPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkPoint3dPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPoint3dPropertySerializer_h_included #define mitkPoint3dPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkPoint3iPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkPoint3iPropertySerializer.cpp index 5f46adb171e..fc5fb86c6e8 100644 --- a/Modules/SceneSerializationBase/src/mitkPoint3iPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkPoint3iPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPoint3iPropertySerializer_h_included #define mitkPoint3iPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkPoint4dPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkPoint4dPropertySerializer.cpp index 2d44ab0a2d4..68b59144ba5 100644 --- a/Modules/SceneSerializationBase/src/mitkPoint4dPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkPoint4dPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPoint4dPropertySerializer_h_included #define mitkPoint4dPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkPropertyListSerializer.cpp b/Modules/SceneSerializationBase/src/mitkPropertyListSerializer.cpp index 259f7501cfb..e384cee2ed3 100644 --- a/Modules/SceneSerializationBase/src/mitkPropertyListSerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkPropertyListSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPropertyListSerializer.h" #include "mitkBasePropertySerializer.h" diff --git a/Modules/SceneSerializationBase/src/mitkStringLookupTablePropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkStringLookupTablePropertySerializer.cpp index 558aa1bd728..d8b293b1700 100644 --- a/Modules/SceneSerializationBase/src/mitkStringLookupTablePropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkStringLookupTablePropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkStringLookupTablePropertySerializer_h_included #define mitkStringLookupTablePropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkStringPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkStringPropertySerializer.cpp index c32b99c6ba4..91447093979 100644 --- a/Modules/SceneSerializationBase/src/mitkStringPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkStringPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkStringPropertySerializer_h_included #define mitkStringPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkTemporoSpatialStringPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkTemporoSpatialStringPropertySerializer.cpp index 77725e15336..2d25efcb221 100644 --- a/Modules/SceneSerializationBase/src/mitkTemporoSpatialStringPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkTemporoSpatialStringPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkTemporoSpatialStringPropertySerializer_h_included #define mitkTemporoSpatialStringPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkTransferFunctionPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkTransferFunctionPropertySerializer.cpp index 42d29cbae97..8b63f9e01aa 100644 --- a/Modules/SceneSerializationBase/src/mitkTransferFunctionPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkTransferFunctionPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTransferFunctionPropertySerializer.h" #include diff --git a/Modules/SceneSerializationBase/src/mitkUIntPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkUIntPropertySerializer.cpp index 2ee23a38df1..d6695bf813a 100644 --- a/Modules/SceneSerializationBase/src/mitkUIntPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkUIntPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkUIntPropertySerializer_h_included #define mitkUIntPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkUShortPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkUShortPropertySerializer.cpp index 1e4bacfc2d4..5d58407616a 100644 --- a/Modules/SceneSerializationBase/src/mitkUShortPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkUShortPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkUShortPropertySerializer_h_included #define mitkUShortPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkVector3DPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkVector3DPropertySerializer.cpp index 9c146236a3a..8861398cd38 100644 --- a/Modules/SceneSerializationBase/src/mitkVector3DPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkVector3DPropertySerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVector3DPropertySerializer_h_included #define mitkVector3DPropertySerializer_h_included diff --git a/Modules/SceneSerializationBase/src/mitkVectorPropertySerializer.cpp b/Modules/SceneSerializationBase/src/mitkVectorPropertySerializer.cpp index 30481eab207..a0896708b65 100644 --- a/Modules/SceneSerializationBase/src/mitkVectorPropertySerializer.cpp +++ b/Modules/SceneSerializationBase/src/mitkVectorPropertySerializer.cpp @@ -1,21 +1,17 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkVectorPropertySerializer.h" // important to put this into the GLOBAL namespace (because it starts with 'namespace mitk') MITK_REGISTER_SERIALIZER(DoubleVectorPropertySerializer) -MITK_REGISTER_SERIALIZER(IntVectorPropertySerializer); \ No newline at end of file +MITK_REGISTER_SERIALIZER(IntVectorPropertySerializer); diff --git a/Modules/SceneSerializationBase/test/mitkPropertySerializationTest.cpp b/Modules/SceneSerializationBase/test/mitkPropertySerializationTest.cpp index a34ebb3c252..9171a6ce5b6 100644 --- a/Modules/SceneSerializationBase/test/mitkPropertySerializationTest.cpp +++ b/Modules/SceneSerializationBase/test/mitkPropertySerializationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" diff --git a/Modules/SceneSerializationBase/test/mitkVectorPropertySerializerTest.cpp b/Modules/SceneSerializationBase/test/mitkVectorPropertySerializerTest.cpp index 3666847a1a5..b8c3556e0fe 100644 --- a/Modules/SceneSerializationBase/test/mitkVectorPropertySerializerTest.cpp +++ b/Modules/SceneSerializationBase/test/mitkVectorPropertySerializerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestFixture.h" #include "mitkTestingMacros.h" diff --git a/Modules/Segmentation/Algorithms/itkAdaptiveThresholdIterator.h b/Modules/Segmentation/Algorithms/itkAdaptiveThresholdIterator.h index 5cdd9e93e77..a8580e38c1c 100644 --- a/Modules/Segmentation/Algorithms/itkAdaptiveThresholdIterator.h +++ b/Modules/Segmentation/Algorithms/itkAdaptiveThresholdIterator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkAdaptiveThresholdIterator_h #define __itkAdaptiveThresholdIterator_h diff --git a/Modules/Segmentation/Algorithms/itkAdaptiveThresholdIterator.txx b/Modules/Segmentation/Algorithms/itkAdaptiveThresholdIterator.txx index bb37e34ffa7..7513df6272e 100644 --- a/Modules/Segmentation/Algorithms/itkAdaptiveThresholdIterator.txx +++ b/Modules/Segmentation/Algorithms/itkAdaptiveThresholdIterator.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _itkAdaptiveThresholdIterator_txx #define _itkAdaptiveThresholdIterator_txx @@ -312,7 +308,7 @@ namespace itk // first check if the key-specific queue already exists if (m_QueueMap.count(key) == 0) { - // if queue doesn´t exist, create it, push the IndexType onto it + // if queue doesn´t exist, create it, push the IndexType onto it // and insert it into the map IndexQueueType newQueue; @@ -376,7 +372,7 @@ namespace itk // then test it. if (m_ImageRegion.IsInside(tempIndex)) { - // check if voxel hasn´t already been processed + // check if voxel hasn´t already been processed if (this->m_OutputImage->GetPixel(tempIndex) == 0) { // if it is inside, push it into the queue @@ -389,7 +385,7 @@ namespace itk else // If the pixel is not inside the current threshold { int distance = this->EstimateDistance( - tempIndex); // [!] sollte nicht estimateDistance sondern calculateDistance() heißen! + tempIndex); // [!] sollte nicht estimateDistance sondern calculateDistance() heißen! if (distance != 0) { // hier wird Voxel in entsprechenden Stack und ins OutputImage geschrieben diff --git a/Modules/Segmentation/Algorithms/itkConnectedAdaptiveThresholdImageFilter.h b/Modules/Segmentation/Algorithms/itkConnectedAdaptiveThresholdImageFilter.h index 1984ee9b466..c55d08cb5f1 100644 --- a/Modules/Segmentation/Algorithms/itkConnectedAdaptiveThresholdImageFilter.h +++ b/Modules/Segmentation/Algorithms/itkConnectedAdaptiveThresholdImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __itkConnectedAdaptiveThresholdImageFilter_h #define __itkConnectedAdaptiveThresholdImageFilter_h diff --git a/Modules/Segmentation/Algorithms/itkConnectedAdaptiveThresholdImageFilter.txx b/Modules/Segmentation/Algorithms/itkConnectedAdaptiveThresholdImageFilter.txx index cb2a46ef180..c6e07c296d5 100644 --- a/Modules/Segmentation/Algorithms/itkConnectedAdaptiveThresholdImageFilter.txx +++ b/Modules/Segmentation/Algorithms/itkConnectedAdaptiveThresholdImageFilter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _itkConnectedAdaptiveThresholdImageFilter_txx #define _itkConnectedAdaptiveThresholdImageFilter_txx @@ -282,7 +278,7 @@ namespace itk itk::Index<3> seedPoint, bool discardLeafSegmentation) { - // just to make sure we´re in the right mode and the mask exsits + // just to make sure we´re in the right mode and the mask exsits if (m_FineDetectionMode && iteratorMaskForFineSegmentation) { m_OutoutImageMaskFineSegmentation = iteratorMaskForFineSegmentation; diff --git a/Modules/Segmentation/Algorithms/itkContourExtractor2DImageFilter.h b/Modules/Segmentation/Algorithms/itkContourExtractor2DImageFilter.h index ee8798edf37..d7f52aed7e9 100644 --- a/Modules/Segmentation/Algorithms/itkContourExtractor2DImageFilter.h +++ b/Modules/Segmentation/Algorithms/itkContourExtractor2DImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/Segmentation/Algorithms/itkContourExtractor2DImageFilter.txx b/Modules/Segmentation/Algorithms/itkContourExtractor2DImageFilter.txx index 1ca4de4ba89..77bc5daa67d 100644 --- a/Modules/Segmentation/Algorithms/itkContourExtractor2DImageFilter.txx +++ b/Modules/Segmentation/Algorithms/itkContourExtractor2DImageFilter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/Segmentation/Algorithms/itkImageToPathFilter.h b/Modules/Segmentation/Algorithms/itkImageToPathFilter.h index ac5bf9b3e19..a0b52fd21db 100644 --- a/Modules/Segmentation/Algorithms/itkImageToPathFilter.h +++ b/Modules/Segmentation/Algorithms/itkImageToPathFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/Segmentation/Algorithms/itkImageToPathFilter.txx b/Modules/Segmentation/Algorithms/itkImageToPathFilter.txx index e5968b887dd..b8dc3d2d280 100644 --- a/Modules/Segmentation/Algorithms/itkImageToPathFilter.txx +++ b/Modules/Segmentation/Algorithms/itkImageToPathFilter.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ /*=================================================================== diff --git a/Modules/Segmentation/Algorithms/mitkCalculateSegmentationVolume.cpp b/Modules/Segmentation/Algorithms/mitkCalculateSegmentationVolume.cpp index 7fe3898104d..a01ef2b8536 100644 --- a/Modules/Segmentation/Algorithms/mitkCalculateSegmentationVolume.cpp +++ b/Modules/Segmentation/Algorithms/mitkCalculateSegmentationVolume.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Segmentation/Algorithms/mitkCalculateSegmentationVolume.h b/Modules/Segmentation/Algorithms/mitkCalculateSegmentationVolume.h index 2a995535f55..e94866101bc 100644 --- a/Modules/Segmentation/Algorithms/mitkCalculateSegmentationVolume.h +++ b/Modules/Segmentation/Algorithms/mitkCalculateSegmentationVolume.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CALCULATE_SEGMENTATION_VOLUME_H_INCLUDET_WAD #define MITK_CALCULATE_SEGMENTATION_VOLUME_H_INCLUDET_WAD diff --git a/Modules/Segmentation/Algorithms/mitkContourModelSetToImageFilter.cpp b/Modules/Segmentation/Algorithms/mitkContourModelSetToImageFilter.cpp index 7f48a9faf49..7c6a44a5547 100644 --- a/Modules/Segmentation/Algorithms/mitkContourModelSetToImageFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkContourModelSetToImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelSetToImageFilter.h" diff --git a/Modules/Segmentation/Algorithms/mitkContourModelSetToImageFilter.h b/Modules/Segmentation/Algorithms/mitkContourModelSetToImageFilter.h index de607a42966..e60d4726624 100644 --- a/Modules/Segmentation/Algorithms/mitkContourModelSetToImageFilter.h +++ b/Modules/Segmentation/Algorithms/mitkContourModelSetToImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOURMODEL_SOURCE_H #define _MITK_CONTOURMODEL_SOURCE_H diff --git a/Modules/Segmentation/Algorithms/mitkContourSetToPointSetFilter.cpp b/Modules/Segmentation/Algorithms/mitkContourSetToPointSetFilter.cpp index 2303b4e4360..9cb90d9fe11 100644 --- a/Modules/Segmentation/Algorithms/mitkContourSetToPointSetFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkContourSetToPointSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourSetToPointSetFilter.h" diff --git a/Modules/Segmentation/Algorithms/mitkContourSetToPointSetFilter.h b/Modules/Segmentation/Algorithms/mitkContourSetToPointSetFilter.h index e19539b2d44..13252e28bec 100644 --- a/Modules/Segmentation/Algorithms/mitkContourSetToPointSetFilter.h +++ b/Modules/Segmentation/Algorithms/mitkContourSetToPointSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkContourSetToPointSetFilter_h__ #define _mitkContourSetToPointSetFilter_h__ diff --git a/Modules/Segmentation/Algorithms/mitkContourUtils.cpp b/Modules/Segmentation/Algorithms/mitkContourUtils.cpp index 9a5ed06975d..718ff2d18a3 100755 --- a/Modules/Segmentation/Algorithms/mitkContourUtils.cpp +++ b/Modules/Segmentation/Algorithms/mitkContourUtils.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourUtils.h" #include "mitkContourModelUtils.h" diff --git a/Modules/Segmentation/Algorithms/mitkContourUtils.h b/Modules/Segmentation/Algorithms/mitkContourUtils.h index 32250a0551d..f22b1e79ea1 100644 --- a/Modules/Segmentation/Algorithms/mitkContourUtils.h +++ b/Modules/Segmentation/Algorithms/mitkContourUtils.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkContourUtilshIncludett #define mitkContourUtilshIncludett diff --git a/Modules/Segmentation/Algorithms/mitkCorrectorAlgorithm.cpp b/Modules/Segmentation/Algorithms/mitkCorrectorAlgorithm.cpp index e2a14ce668c..7b5208ceb5e 100644 --- a/Modules/Segmentation/Algorithms/mitkCorrectorAlgorithm.cpp +++ b/Modules/Segmentation/Algorithms/mitkCorrectorAlgorithm.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCorrectorAlgorithm.h" #include "mitkContourUtils.h" diff --git a/Modules/Segmentation/Algorithms/mitkCorrectorAlgorithm.h b/Modules/Segmentation/Algorithms/mitkCorrectorAlgorithm.h index c41e1f5a2bd..02efb884cff 100644 --- a/Modules/Segmentation/Algorithms/mitkCorrectorAlgorithm.h +++ b/Modules/Segmentation/Algorithms/mitkCorrectorAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCorrectorAlgorithmhIncluded #define mitkCorrectorAlgorithmhIncluded @@ -109,4 +105,4 @@ namespace mitk }; } -#endif \ No newline at end of file +#endif diff --git a/Modules/Segmentation/Algorithms/mitkDiffImageApplier.cpp b/Modules/Segmentation/Algorithms/mitkDiffImageApplier.cpp index 64a3787cafa..86eebc17012 100644 --- a/Modules/Segmentation/Algorithms/mitkDiffImageApplier.cpp +++ b/Modules/Segmentation/Algorithms/mitkDiffImageApplier.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDiffImageApplier.h" diff --git a/Modules/Segmentation/Algorithms/mitkDiffImageApplier.h b/Modules/Segmentation/Algorithms/mitkDiffImageApplier.h index d8d9ec76287..65bbc7f9bf9 100644 --- a/Modules/Segmentation/Algorithms/mitkDiffImageApplier.h +++ b/Modules/Segmentation/Algorithms/mitkDiffImageApplier.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDiffImageApplier_h_Included #define mitkDiffImageApplier_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkDiffSliceOperation.cpp b/Modules/Segmentation/Algorithms/mitkDiffSliceOperation.cpp index 2982be76c0e..1b0c4598daf 100644 --- a/Modules/Segmentation/Algorithms/mitkDiffSliceOperation.cpp +++ b/Modules/Segmentation/Algorithms/mitkDiffSliceOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDiffSliceOperation.h" diff --git a/Modules/Segmentation/Algorithms/mitkDiffSliceOperation.h b/Modules/Segmentation/Algorithms/mitkDiffSliceOperation.h index e8d25737aec..1ed4d8aa0c5 100644 --- a/Modules/Segmentation/Algorithms/mitkDiffSliceOperation.h +++ b/Modules/Segmentation/Algorithms/mitkDiffSliceOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDiffSliceOperation_h_Included #define mitkDiffSliceOperation_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkDiffSliceOperationApplier.cpp b/Modules/Segmentation/Algorithms/mitkDiffSliceOperationApplier.cpp index 2623f1a9a3b..b34a65bc09f 100644 --- a/Modules/Segmentation/Algorithms/mitkDiffSliceOperationApplier.cpp +++ b/Modules/Segmentation/Algorithms/mitkDiffSliceOperationApplier.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDiffSliceOperationApplier.h" diff --git a/Modules/Segmentation/Algorithms/mitkDiffSliceOperationApplier.h b/Modules/Segmentation/Algorithms/mitkDiffSliceOperationApplier.h index f833a1f4302..e2edb7b1f86 100644 --- a/Modules/Segmentation/Algorithms/mitkDiffSliceOperationApplier.h +++ b/Modules/Segmentation/Algorithms/mitkDiffSliceOperationApplier.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDiffSliceOpertationApplier_h_Included #define mitkDiffSliceOpertationApplier_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkFeatureBasedEdgeDetectionFilter.cpp b/Modules/Segmentation/Algorithms/mitkFeatureBasedEdgeDetectionFilter.cpp index 3d7c1fd8770..ae2d461fcd4 100644 --- a/Modules/Segmentation/Algorithms/mitkFeatureBasedEdgeDetectionFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkFeatureBasedEdgeDetectionFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFeatureBasedEdgeDetectionFilter.h" diff --git a/Modules/Segmentation/Algorithms/mitkFeatureBasedEdgeDetectionFilter.h b/Modules/Segmentation/Algorithms/mitkFeatureBasedEdgeDetectionFilter.h index adb0a809031..34bdfb922bc 100644 --- a/Modules/Segmentation/Algorithms/mitkFeatureBasedEdgeDetectionFilter.h +++ b/Modules/Segmentation/Algorithms/mitkFeatureBasedEdgeDetectionFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFeatureBasedEdgeDetectionFilter_h_Included #define mitkFeatureBasedEdgeDetectionFilter_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkImageLiveWireContourModelFilter.cpp b/Modules/Segmentation/Algorithms/mitkImageLiveWireContourModelFilter.cpp index 635af167d01..26791073cca 100644 --- a/Modules/Segmentation/Algorithms/mitkImageLiveWireContourModelFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkImageLiveWireContourModelFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageLiveWireContourModelFilter.h" diff --git a/Modules/Segmentation/Algorithms/mitkImageLiveWireContourModelFilter.h b/Modules/Segmentation/Algorithms/mitkImageLiveWireContourModelFilter.h index 14542120522..4092f0369d2 100644 --- a/Modules/Segmentation/Algorithms/mitkImageLiveWireContourModelFilter.h +++ b/Modules/Segmentation/Algorithms/mitkImageLiveWireContourModelFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkImageLiveWireContourModelFilter_h__ #define _mitkImageLiveWireContourModelFilter_h__ diff --git a/Modules/Segmentation/Algorithms/mitkImageToContourFilter.cpp b/Modules/Segmentation/Algorithms/mitkImageToContourFilter.cpp index f48870f2463..962df6f98d3 100644 --- a/Modules/Segmentation/Algorithms/mitkImageToContourFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkImageToContourFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageToContourFilter.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/Segmentation/Algorithms/mitkImageToContourFilter.h b/Modules/Segmentation/Algorithms/mitkImageToContourFilter.h index debf509afd4..a2afb0378ba 100644 --- a/Modules/Segmentation/Algorithms/mitkImageToContourFilter.h +++ b/Modules/Segmentation/Algorithms/mitkImageToContourFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkImageToContourFilter_h_Included #define mitkImageToContourFilter_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkImageToLiveWireContourFilter.cpp b/Modules/Segmentation/Algorithms/mitkImageToLiveWireContourFilter.cpp index bfd4a19030f..f62050ebc77 100644 --- a/Modules/Segmentation/Algorithms/mitkImageToLiveWireContourFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkImageToLiveWireContourFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageToLiveWireContourFilter.h" diff --git a/Modules/Segmentation/Algorithms/mitkImageToLiveWireContourFilter.h b/Modules/Segmentation/Algorithms/mitkImageToLiveWireContourFilter.h index a9fca4996ff..a015c14f098 100644 --- a/Modules/Segmentation/Algorithms/mitkImageToLiveWireContourFilter.h +++ b/Modules/Segmentation/Algorithms/mitkImageToLiveWireContourFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkImageToLiveWireContourFilter_h__ #define _mitkImageToLiveWireContourFilter_h__ diff --git a/Modules/Segmentation/Algorithms/mitkManualSegmentationToSurfaceFilter.cpp b/Modules/Segmentation/Algorithms/mitkManualSegmentationToSurfaceFilter.cpp index 599bbc3c88f..3f42d39014e 100644 --- a/Modules/Segmentation/Algorithms/mitkManualSegmentationToSurfaceFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkManualSegmentationToSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/Segmentation/Algorithms/mitkManualSegmentationToSurfaceFilter.h b/Modules/Segmentation/Algorithms/mitkManualSegmentationToSurfaceFilter.h index 7915db6a108..61da918c053 100644 --- a/Modules/Segmentation/Algorithms/mitkManualSegmentationToSurfaceFilter.h +++ b/Modules/Segmentation/Algorithms/mitkManualSegmentationToSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKMANUALSEGMENTATIONTISURFACEFILTER_h__ #define _MITKMANUALSEGMENTATIONTISURFACEFILTER_h__ diff --git a/Modules/Segmentation/Algorithms/mitkOtsuSegmentationFilter.cpp b/Modules/Segmentation/Algorithms/mitkOtsuSegmentationFilter.cpp index b6fa8b8133a..bcb12bafa92 100644 --- a/Modules/Segmentation/Algorithms/mitkOtsuSegmentationFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkOtsuSegmentationFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOtsuSegmentationFilter.h" #include "itkOtsuMultipleThresholdsImageFilter.h" diff --git a/Modules/Segmentation/Algorithms/mitkOtsuSegmentationFilter.h b/Modules/Segmentation/Algorithms/mitkOtsuSegmentationFilter.h index 546c5972799..97861021ade 100644 --- a/Modules/Segmentation/Algorithms/mitkOtsuSegmentationFilter.h +++ b/Modules/Segmentation/Algorithms/mitkOtsuSegmentationFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkOtsuSegmentationFilter_h_Included #define mitkOtsuSegmentationFilter_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkOverwriteDirectedPlaneImageFilter.cpp b/Modules/Segmentation/Algorithms/mitkOverwriteDirectedPlaneImageFilter.cpp index 6cab65556f2..a732bc54140 100644 --- a/Modules/Segmentation/Algorithms/mitkOverwriteDirectedPlaneImageFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkOverwriteDirectedPlaneImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOverwriteDirectedPlaneImageFilter.h" #include "mitkApplyDiffImageOperation.h" diff --git a/Modules/Segmentation/Algorithms/mitkOverwriteDirectedPlaneImageFilter.h b/Modules/Segmentation/Algorithms/mitkOverwriteDirectedPlaneImageFilter.h index c0c31b712bf..ab8206fc040 100644 --- a/Modules/Segmentation/Algorithms/mitkOverwriteDirectedPlaneImageFilter.h +++ b/Modules/Segmentation/Algorithms/mitkOverwriteDirectedPlaneImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkOverwriteDirectedPlaneImageFilter_h_Included #define mitkOverwriteDirectedPlaneImageFilter_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkOverwriteSliceImageFilter.cpp b/Modules/Segmentation/Algorithms/mitkOverwriteSliceImageFilter.cpp index 368d8c7999a..53fb98bbb2d 100644 --- a/Modules/Segmentation/Algorithms/mitkOverwriteSliceImageFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkOverwriteSliceImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkOverwriteSliceImageFilter.h" #include "mitkApplyDiffImageOperation.h" diff --git a/Modules/Segmentation/Algorithms/mitkOverwriteSliceImageFilter.h b/Modules/Segmentation/Algorithms/mitkOverwriteSliceImageFilter.h index 06fe3d7579d..40c2de9d152 100644 --- a/Modules/Segmentation/Algorithms/mitkOverwriteSliceImageFilter.h +++ b/Modules/Segmentation/Algorithms/mitkOverwriteSliceImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkOverwriteSliceImageFilter_h_Included #define mitkOverwriteSliceImageFilter_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkSegmentationInterpolationAlgorithm.h b/Modules/Segmentation/Algorithms/mitkSegmentationInterpolationAlgorithm.h index ff08b012d94..e2d50689732 100644 --- a/Modules/Segmentation/Algorithms/mitkSegmentationInterpolationAlgorithm.h +++ b/Modules/Segmentation/Algorithms/mitkSegmentationInterpolationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSegmentationInterpolationAlgorithm_h_Included #define mitkSegmentationInterpolationAlgorithm_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkSegmentationObjectFactory.cpp b/Modules/Segmentation/Algorithms/mitkSegmentationObjectFactory.cpp index f9acd0424a6..84ef4cb83e3 100644 --- a/Modules/Segmentation/Algorithms/mitkSegmentationObjectFactory.cpp +++ b/Modules/Segmentation/Algorithms/mitkSegmentationObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSegmentationObjectFactory.h" diff --git a/Modules/Segmentation/Algorithms/mitkSegmentationObjectFactory.h b/Modules/Segmentation/Algorithms/mitkSegmentationObjectFactory.h index e1bcb33f470..7ca9e26b737 100644 --- a/Modules/Segmentation/Algorithms/mitkSegmentationObjectFactory.h +++ b/Modules/Segmentation/Algorithms/mitkSegmentationObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SEGMENTATIONOBJECTFACTORY_H_INCLUDED #define SEGMENTATIONOBJECTFACTORY_H_INCLUDED diff --git a/Modules/Segmentation/Algorithms/mitkShapeBasedInterpolationAlgorithm.cpp b/Modules/Segmentation/Algorithms/mitkShapeBasedInterpolationAlgorithm.cpp index 63e54bd6429..3bc01722ad2 100644 --- a/Modules/Segmentation/Algorithms/mitkShapeBasedInterpolationAlgorithm.cpp +++ b/Modules/Segmentation/Algorithms/mitkShapeBasedInterpolationAlgorithm.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkShapeBasedInterpolationAlgorithm.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/Segmentation/Algorithms/mitkShapeBasedInterpolationAlgorithm.h b/Modules/Segmentation/Algorithms/mitkShapeBasedInterpolationAlgorithm.h index 9433d8e1140..891b91e483c 100644 --- a/Modules/Segmentation/Algorithms/mitkShapeBasedInterpolationAlgorithm.h +++ b/Modules/Segmentation/Algorithms/mitkShapeBasedInterpolationAlgorithm.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkShapeBasedInterpolationAlgorithm_h_Included #define mitkShapeBasedInterpolationAlgorithm_h_Included diff --git a/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSmoothedSurface.cpp b/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSmoothedSurface.cpp index b70eb9a09c4..7c316dd1e5f 100644 --- a/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSmoothedSurface.cpp +++ b/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSmoothedSurface.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkShowSegmentationAsSmoothedSurface.h" #include "itkIntelligentBinaryClosingFilter.h" diff --git a/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSmoothedSurface.h b/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSmoothedSurface.h index 6ed5e86a442..6e24c040807 100644 --- a/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSmoothedSurface.h +++ b/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSmoothedSurface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_SHOW_SEGMENTATION_AS_SMOOTHED_SURFACE_H #define MITK_SHOW_SEGMENTATION_AS_SMOOTHED_SURFACE_H diff --git a/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSurface.cpp b/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSurface.cpp index 285092941ab..c578a4e198e 100644 --- a/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSurface.cpp +++ b/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSurface.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkShowSegmentationAsSurface.h" #include "mitkManualSegmentationToSurfaceFilter.h" diff --git a/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSurface.h b/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSurface.h index 55124bf4633..fe67e75e6e1 100644 --- a/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSurface.h +++ b/Modules/Segmentation/Algorithms/mitkShowSegmentationAsSurface.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_SHOW_SEGMENTATION_AS_SURFACE_H_INCLUDET_WAD #define MITK_SHOW_SEGMENTATION_AS_SURFACE_H_INCLUDET_WAD diff --git a/Modules/Segmentation/Algorithms/mitkSurfaceStampImageFilter.cpp b/Modules/Segmentation/Algorithms/mitkSurfaceStampImageFilter.cpp index 95582ac1cb8..f9f57a08fb9 100644 --- a/Modules/Segmentation/Algorithms/mitkSurfaceStampImageFilter.cpp +++ b/Modules/Segmentation/Algorithms/mitkSurfaceStampImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceStampImageFilter.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/Segmentation/Algorithms/mitkSurfaceStampImageFilter.h b/Modules/Segmentation/Algorithms/mitkSurfaceStampImageFilter.h index 59a01f01090..6df7ba72cb3 100644 --- a/Modules/Segmentation/Algorithms/mitkSurfaceStampImageFilter.h +++ b/Modules/Segmentation/Algorithms/mitkSurfaceStampImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkSurfaceStampImageFilter_h__ #define _mitkSurfaceStampImageFilter_h__ diff --git a/Modules/Segmentation/Algorithms/mitkVtkImageOverwrite.cpp b/Modules/Segmentation/Algorithms/mitkVtkImageOverwrite.cpp index a52b2da3837..b014ba9ee63 100644 --- a/Modules/Segmentation/Algorithms/mitkVtkImageOverwrite.cpp +++ b/Modules/Segmentation/Algorithms/mitkVtkImageOverwrite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= diff --git a/Modules/Segmentation/Algorithms/mitkVtkImageOverwrite.h b/Modules/Segmentation/Algorithms/mitkVtkImageOverwrite.h index 5f835b6d85c..4d6730ab743 100644 --- a/Modules/Segmentation/Algorithms/mitkVtkImageOverwrite.h +++ b/Modules/Segmentation/Algorithms/mitkVtkImageOverwrite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkVtkImageOverwrite_h_Included #define mitkVtkImageOverwrite_h_Included diff --git a/Modules/Segmentation/Controllers/mitkSegmentationInterpolationController.cpp b/Modules/Segmentation/Controllers/mitkSegmentationInterpolationController.cpp index 87040ca083f..7306f74e74e 100644 --- a/Modules/Segmentation/Controllers/mitkSegmentationInterpolationController.cpp +++ b/Modules/Segmentation/Controllers/mitkSegmentationInterpolationController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSegmentationInterpolationController.h" diff --git a/Modules/Segmentation/Controllers/mitkSegmentationInterpolationController.h b/Modules/Segmentation/Controllers/mitkSegmentationInterpolationController.h index 1dc58205f61..54ad2a9d0b4 100644 --- a/Modules/Segmentation/Controllers/mitkSegmentationInterpolationController.h +++ b/Modules/Segmentation/Controllers/mitkSegmentationInterpolationController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSegmentationInterpolationController_h_Included #define mitkSegmentationInterpolationController_h_Included diff --git a/Modules/Segmentation/Controllers/mitkSegmentationModuleActivator.cpp b/Modules/Segmentation/Controllers/mitkSegmentationModuleActivator.cpp index 3c08b820482..738d6c7b972 100644 --- a/Modules/Segmentation/Controllers/mitkSegmentationModuleActivator.cpp +++ b/Modules/Segmentation/Controllers/mitkSegmentationModuleActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Segmentation/Controllers/mitkSliceBasedInterpolationController.cpp b/Modules/Segmentation/Controllers/mitkSliceBasedInterpolationController.cpp index e318ba48409..68bfe9b4c92 100644 --- a/Modules/Segmentation/Controllers/mitkSliceBasedInterpolationController.cpp +++ b/Modules/Segmentation/Controllers/mitkSliceBasedInterpolationController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSliceBasedInterpolationController.h" diff --git a/Modules/Segmentation/Controllers/mitkSliceBasedInterpolationController.h b/Modules/Segmentation/Controllers/mitkSliceBasedInterpolationController.h index 09e27198989..f1702001345 100644 --- a/Modules/Segmentation/Controllers/mitkSliceBasedInterpolationController.h +++ b/Modules/Segmentation/Controllers/mitkSliceBasedInterpolationController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSliceBasedInterpolationController_h_Included #define mitkSliceBasedInterpolationController_h_Included diff --git a/Modules/Segmentation/Controllers/mitkToolManager.cpp b/Modules/Segmentation/Controllers/mitkToolManager.cpp index 392ecb2d323..b2f512f906a 100644 --- a/Modules/Segmentation/Controllers/mitkToolManager.cpp +++ b/Modules/Segmentation/Controllers/mitkToolManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToolManager.h" #include "mitkCoreObjectFactory.h" diff --git a/Modules/Segmentation/Controllers/mitkToolManager.h b/Modules/Segmentation/Controllers/mitkToolManager.h index 2b45ad8a055..c21b0ce99b0 100644 --- a/Modules/Segmentation/Controllers/mitkToolManager.h +++ b/Modules/Segmentation/Controllers/mitkToolManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkToolManager_h_Included #define mitkToolManager_h_Included diff --git a/Modules/Segmentation/Controllers/mitkToolManagerProvider.cpp b/Modules/Segmentation/Controllers/mitkToolManagerProvider.cpp index b218baf894b..1bc85b5dc33 100644 --- a/Modules/Segmentation/Controllers/mitkToolManagerProvider.cpp +++ b/Modules/Segmentation/Controllers/mitkToolManagerProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToolManagerProvider.h" diff --git a/Modules/Segmentation/Controllers/mitkToolManagerProvider.h b/Modules/Segmentation/Controllers/mitkToolManagerProvider.h index afe718378c1..3459559e5a3 100644 --- a/Modules/Segmentation/Controllers/mitkToolManagerProvider.h +++ b/Modules/Segmentation/Controllers/mitkToolManagerProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_TOOLMANAGERPROVIDER_H #define MITK_TOOLMANAGERPROVIDER_H diff --git a/Modules/Segmentation/DataManagement/mitkContour.cpp b/Modules/Segmentation/DataManagement/mitkContour.cpp index 47300ea0a1e..0ef9a8f3b6e 100644 --- a/Modules/Segmentation/DataManagement/mitkContour.cpp +++ b/Modules/Segmentation/DataManagement/mitkContour.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContour.h" #include diff --git a/Modules/Segmentation/DataManagement/mitkContour.h b/Modules/Segmentation/DataManagement/mitkContour.h index 391d2d2f1ae..0d5cc95377c 100644 --- a/Modules/Segmentation/DataManagement/mitkContour.h +++ b/Modules/Segmentation/DataManagement/mitkContour.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOUR_H_ #define _MITK_CONTOUR_H_ diff --git a/Modules/Segmentation/DataManagement/mitkContourSet.cpp b/Modules/Segmentation/DataManagement/mitkContourSet.cpp index c91ed8ea033..bc896120268 100644 --- a/Modules/Segmentation/DataManagement/mitkContourSet.cpp +++ b/Modules/Segmentation/DataManagement/mitkContourSet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourSet.h" #include diff --git a/Modules/Segmentation/DataManagement/mitkContourSet.h b/Modules/Segmentation/DataManagement/mitkContourSet.h index 30d330516c8..851303c4727 100644 --- a/Modules/Segmentation/DataManagement/mitkContourSet.h +++ b/Modules/Segmentation/DataManagement/mitkContourSet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_CONTOUR_SET_H_ #define _MITK_CONTOUR_SET_H_ diff --git a/Modules/Segmentation/DataManagement/mitkExtrudedContour.cpp b/Modules/Segmentation/DataManagement/mitkExtrudedContour.cpp index 565f3a275ac..6af64c81306 100644 --- a/Modules/Segmentation/DataManagement/mitkExtrudedContour.cpp +++ b/Modules/Segmentation/DataManagement/mitkExtrudedContour.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkExtrudedContour.h" #include "mitkBaseProcess.h" diff --git a/Modules/Segmentation/DataManagement/mitkExtrudedContour.h b/Modules/Segmentation/DataManagement/mitkExtrudedContour.h index 22bca82c2e2..1f401a45d9d 100644 --- a/Modules/Segmentation/DataManagement/mitkExtrudedContour.h +++ b/Modules/Segmentation/DataManagement/mitkExtrudedContour.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKEXTRUDEDCONTOUR_H_HEADER_INCLUDED #define MITKEXTRUDEDCONTOUR_H_HEADER_INCLUDED diff --git a/Modules/Segmentation/Interactions/mitkAdaptiveRegionGrowingTool.cpp b/Modules/Segmentation/Interactions/mitkAdaptiveRegionGrowingTool.cpp index 01965d3f618..306d0fcac8b 100644 --- a/Modules/Segmentation/Interactions/mitkAdaptiveRegionGrowingTool.cpp +++ b/Modules/Segmentation/Interactions/mitkAdaptiveRegionGrowingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAdaptiveRegionGrowingTool.h" #include "mitkImage.h" diff --git a/Modules/Segmentation/Interactions/mitkAdaptiveRegionGrowingTool.h b/Modules/Segmentation/Interactions/mitkAdaptiveRegionGrowingTool.h index 464eaa05295..236a33f1526 100644 --- a/Modules/Segmentation/Interactions/mitkAdaptiveRegionGrowingTool.h +++ b/Modules/Segmentation/Interactions/mitkAdaptiveRegionGrowingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAdaptiveRegionGrowingTool_h_Included #define mitkAdaptiveRegionGrowingTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkAddContourTool.cpp b/Modules/Segmentation/Interactions/mitkAddContourTool.cpp index abf94bf2e96..0526c5fec61 100644 --- a/Modules/Segmentation/Interactions/mitkAddContourTool.cpp +++ b/Modules/Segmentation/Interactions/mitkAddContourTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAddContourTool.h" diff --git a/Modules/Segmentation/Interactions/mitkAddContourTool.h b/Modules/Segmentation/Interactions/mitkAddContourTool.h index 317a49193f7..9838b9cf335 100644 --- a/Modules/Segmentation/Interactions/mitkAddContourTool.h +++ b/Modules/Segmentation/Interactions/mitkAddContourTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAddContourTool_h_Included #define mitkAddContourTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkAutoCropTool.cpp b/Modules/Segmentation/Interactions/mitkAutoCropTool.cpp index f3df52e52a9..7c3beb82868 100644 --- a/Modules/Segmentation/Interactions/mitkAutoCropTool.cpp +++ b/Modules/Segmentation/Interactions/mitkAutoCropTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAutoCropTool.h" diff --git a/Modules/Segmentation/Interactions/mitkAutoCropTool.h b/Modules/Segmentation/Interactions/mitkAutoCropTool.h index 574a6228de9..6faad252dae 100644 --- a/Modules/Segmentation/Interactions/mitkAutoCropTool.h +++ b/Modules/Segmentation/Interactions/mitkAutoCropTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAutoCropTool_h_Included #define mitkAutoCropTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkAutoSegmentationTool.cpp b/Modules/Segmentation/Interactions/mitkAutoSegmentationTool.cpp index 6bda85cb1a5..fd762377a18 100644 --- a/Modules/Segmentation/Interactions/mitkAutoSegmentationTool.cpp +++ b/Modules/Segmentation/Interactions/mitkAutoSegmentationTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAutoSegmentationTool.h" #include "mitkImage.h" diff --git a/Modules/Segmentation/Interactions/mitkAutoSegmentationTool.h b/Modules/Segmentation/Interactions/mitkAutoSegmentationTool.h index b9053b62606..334a684818c 100644 --- a/Modules/Segmentation/Interactions/mitkAutoSegmentationTool.h +++ b/Modules/Segmentation/Interactions/mitkAutoSegmentationTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkAutoSegmentationTool_h_Included #define mitkAutoSegmentationTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkBinaryThresholdTool.cpp b/Modules/Segmentation/Interactions/mitkBinaryThresholdTool.cpp index 113035e211f..5ade4cb9f42 100644 --- a/Modules/Segmentation/Interactions/mitkBinaryThresholdTool.cpp +++ b/Modules/Segmentation/Interactions/mitkBinaryThresholdTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBinaryThresholdTool.h" diff --git a/Modules/Segmentation/Interactions/mitkBinaryThresholdTool.h b/Modules/Segmentation/Interactions/mitkBinaryThresholdTool.h index 0ad6c60cbf4..7093e77e7c3 100644 --- a/Modules/Segmentation/Interactions/mitkBinaryThresholdTool.h +++ b/Modules/Segmentation/Interactions/mitkBinaryThresholdTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBinaryThresholdTool_h_Included #define mitkBinaryThresholdTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkBinaryThresholdULTool.cpp b/Modules/Segmentation/Interactions/mitkBinaryThresholdULTool.cpp index 28cddf34e69..ab917f34fe1 100644 --- a/Modules/Segmentation/Interactions/mitkBinaryThresholdULTool.cpp +++ b/Modules/Segmentation/Interactions/mitkBinaryThresholdULTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBinaryThresholdULTool.h" diff --git a/Modules/Segmentation/Interactions/mitkBinaryThresholdULTool.h b/Modules/Segmentation/Interactions/mitkBinaryThresholdULTool.h index 2341e1211b6..987601d6f94 100644 --- a/Modules/Segmentation/Interactions/mitkBinaryThresholdULTool.h +++ b/Modules/Segmentation/Interactions/mitkBinaryThresholdULTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBinaryThresholdULTool_h_Included #define mitkBinaryThresholdULTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkCalculateGrayValueStatisticsTool.cpp b/Modules/Segmentation/Interactions/mitkCalculateGrayValueStatisticsTool.cpp index 16b524063d6..18db43a60a5 100644 --- a/Modules/Segmentation/Interactions/mitkCalculateGrayValueStatisticsTool.cpp +++ b/Modules/Segmentation/Interactions/mitkCalculateGrayValueStatisticsTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCalculateGrayValueStatisticsTool.h" diff --git a/Modules/Segmentation/Interactions/mitkCalculateGrayValueStatisticsTool.h b/Modules/Segmentation/Interactions/mitkCalculateGrayValueStatisticsTool.h index 21b59422e57..a69bc5384dc 100644 --- a/Modules/Segmentation/Interactions/mitkCalculateGrayValueStatisticsTool.h +++ b/Modules/Segmentation/Interactions/mitkCalculateGrayValueStatisticsTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCalculateGrayValueStatisticsTool_h_Included #define mitkCalculateGrayValueStatisticsTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkCalculateVolumetryTool.cpp b/Modules/Segmentation/Interactions/mitkCalculateVolumetryTool.cpp index 6477c4e1831..57e1e69a671 100644 --- a/Modules/Segmentation/Interactions/mitkCalculateVolumetryTool.cpp +++ b/Modules/Segmentation/Interactions/mitkCalculateVolumetryTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCalculateVolumetryTool.h" diff --git a/Modules/Segmentation/Interactions/mitkCalculateVolumetryTool.h b/Modules/Segmentation/Interactions/mitkCalculateVolumetryTool.h index fdeb40b0b5b..bf8b2d019cf 100644 --- a/Modules/Segmentation/Interactions/mitkCalculateVolumetryTool.h +++ b/Modules/Segmentation/Interactions/mitkCalculateVolumetryTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCalculateVolumetryTool_h_Included #define mitkCalculateVolumetryTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkContourModelInteractor.cpp b/Modules/Segmentation/Interactions/mitkContourModelInteractor.cpp index 98d728842c6..92dba4c9a57 100644 --- a/Modules/Segmentation/Interactions/mitkContourModelInteractor.cpp +++ b/Modules/Segmentation/Interactions/mitkContourModelInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelInteractor.h" diff --git a/Modules/Segmentation/Interactions/mitkContourModelInteractor.h b/Modules/Segmentation/Interactions/mitkContourModelInteractor.h index 5b90a9e0d23..217aeaf1173 100644 --- a/Modules/Segmentation/Interactions/mitkContourModelInteractor.h +++ b/Modules/Segmentation/Interactions/mitkContourModelInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkContourModelInteractor_h_Included #define mitkContourModelInteractor_h_Included diff --git a/Modules/Segmentation/Interactions/mitkContourModelLiveWireInteractor.cpp b/Modules/Segmentation/Interactions/mitkContourModelLiveWireInteractor.cpp index 605b081f32d..695b2969efa 100644 --- a/Modules/Segmentation/Interactions/mitkContourModelLiveWireInteractor.cpp +++ b/Modules/Segmentation/Interactions/mitkContourModelLiveWireInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourModelLiveWireInteractor.h" diff --git a/Modules/Segmentation/Interactions/mitkContourModelLiveWireInteractor.h b/Modules/Segmentation/Interactions/mitkContourModelLiveWireInteractor.h index 8839111cf32..91a645b3e85 100644 --- a/Modules/Segmentation/Interactions/mitkContourModelLiveWireInteractor.h +++ b/Modules/Segmentation/Interactions/mitkContourModelLiveWireInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkContourModelLiveWireInteractor_h_Included #define mitkContourModelLiveWireInteractor_h_Included diff --git a/Modules/Segmentation/Interactions/mitkContourTool.cpp b/Modules/Segmentation/Interactions/mitkContourTool.cpp index 79092453f33..7c16912f7bd 100644 --- a/Modules/Segmentation/Interactions/mitkContourTool.cpp +++ b/Modules/Segmentation/Interactions/mitkContourTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourTool.h" diff --git a/Modules/Segmentation/Interactions/mitkContourTool.h b/Modules/Segmentation/Interactions/mitkContourTool.h index 1c9408eaa78..88b0317a837 100644 --- a/Modules/Segmentation/Interactions/mitkContourTool.h +++ b/Modules/Segmentation/Interactions/mitkContourTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkContourTool_h_Included #define mitkContourTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkCorrectorTool2D.cpp b/Modules/Segmentation/Interactions/mitkCorrectorTool2D.cpp index b3d88278152..8dcf41b457a 100644 --- a/Modules/Segmentation/Interactions/mitkCorrectorTool2D.cpp +++ b/Modules/Segmentation/Interactions/mitkCorrectorTool2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCorrectorTool2D.h" #include "mitkCorrectorAlgorithm.h" diff --git a/Modules/Segmentation/Interactions/mitkCorrectorTool2D.h b/Modules/Segmentation/Interactions/mitkCorrectorTool2D.h index e9de47f219c..364bd1d08ca 100644 --- a/Modules/Segmentation/Interactions/mitkCorrectorTool2D.h +++ b/Modules/Segmentation/Interactions/mitkCorrectorTool2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCorrectorTool2D_h_Included #define mitkCorrectorTool2D_h_Included diff --git a/Modules/Segmentation/Interactions/mitkCreateSurfaceTool.cpp b/Modules/Segmentation/Interactions/mitkCreateSurfaceTool.cpp index 6e3e19d7c05..4fa399745d4 100644 --- a/Modules/Segmentation/Interactions/mitkCreateSurfaceTool.cpp +++ b/Modules/Segmentation/Interactions/mitkCreateSurfaceTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCreateSurfaceTool.h" diff --git a/Modules/Segmentation/Interactions/mitkCreateSurfaceTool.h b/Modules/Segmentation/Interactions/mitkCreateSurfaceTool.h index 993dc50549d..bae9ac632dc 100644 --- a/Modules/Segmentation/Interactions/mitkCreateSurfaceTool.h +++ b/Modules/Segmentation/Interactions/mitkCreateSurfaceTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCreateSurfaceTool_h_Included #define mitkCreateSurfaceTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkDrawPaintbrushTool.cpp b/Modules/Segmentation/Interactions/mitkDrawPaintbrushTool.cpp index 12c3a0724f3..9f15b3765d6 100644 --- a/Modules/Segmentation/Interactions/mitkDrawPaintbrushTool.cpp +++ b/Modules/Segmentation/Interactions/mitkDrawPaintbrushTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDrawPaintbrushTool.h" diff --git a/Modules/Segmentation/Interactions/mitkDrawPaintbrushTool.h b/Modules/Segmentation/Interactions/mitkDrawPaintbrushTool.h index 2f9cbb3b73e..053e4ad070e 100644 --- a/Modules/Segmentation/Interactions/mitkDrawPaintbrushTool.h +++ b/Modules/Segmentation/Interactions/mitkDrawPaintbrushTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPaintContourTool_h_Included #define mitkPaintContourTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkErasePaintbrushTool.cpp b/Modules/Segmentation/Interactions/mitkErasePaintbrushTool.cpp index 7af68611839..88a3589bccc 100644 --- a/Modules/Segmentation/Interactions/mitkErasePaintbrushTool.cpp +++ b/Modules/Segmentation/Interactions/mitkErasePaintbrushTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkErasePaintbrushTool.h" diff --git a/Modules/Segmentation/Interactions/mitkErasePaintbrushTool.h b/Modules/Segmentation/Interactions/mitkErasePaintbrushTool.h index 06542922139..7d7221ace54 100644 --- a/Modules/Segmentation/Interactions/mitkErasePaintbrushTool.h +++ b/Modules/Segmentation/Interactions/mitkErasePaintbrushTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkErasePaintbrushTool_h_Included #define mitkErasePaintbrushTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkEraseRegionTool.cpp b/Modules/Segmentation/Interactions/mitkEraseRegionTool.cpp index 35e8f81472e..e1d480645df 100644 --- a/Modules/Segmentation/Interactions/mitkEraseRegionTool.cpp +++ b/Modules/Segmentation/Interactions/mitkEraseRegionTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkEraseRegionTool.h" diff --git a/Modules/Segmentation/Interactions/mitkEraseRegionTool.h b/Modules/Segmentation/Interactions/mitkEraseRegionTool.h index 31aba0e9677..09608f2a94f 100644 --- a/Modules/Segmentation/Interactions/mitkEraseRegionTool.h +++ b/Modules/Segmentation/Interactions/mitkEraseRegionTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkEraseRegionTool_h_Included #define mitkEraseRegionTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkFastMarchingTool.cpp b/Modules/Segmentation/Interactions/mitkFastMarchingTool.cpp index 0ca7e803983..9396da2a9fe 100644 --- a/Modules/Segmentation/Interactions/mitkFastMarchingTool.cpp +++ b/Modules/Segmentation/Interactions/mitkFastMarchingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFastMarchingTool.h" #include "mitkToolManager.h" diff --git a/Modules/Segmentation/Interactions/mitkFastMarchingTool.h b/Modules/Segmentation/Interactions/mitkFastMarchingTool.h index 71a1a9c0431..8e0435315ae 100644 --- a/Modules/Segmentation/Interactions/mitkFastMarchingTool.h +++ b/Modules/Segmentation/Interactions/mitkFastMarchingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFastMarchingTool_h_Included #define mitkFastMarchingTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkFastMarchingTool3D.cpp b/Modules/Segmentation/Interactions/mitkFastMarchingTool3D.cpp index a01ad6399a1..4e5191b32fe 100644 --- a/Modules/Segmentation/Interactions/mitkFastMarchingTool3D.cpp +++ b/Modules/Segmentation/Interactions/mitkFastMarchingTool3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFastMarchingTool3D.h" #include "mitkToolManager.h" diff --git a/Modules/Segmentation/Interactions/mitkFastMarchingTool3D.h b/Modules/Segmentation/Interactions/mitkFastMarchingTool3D.h index daee2da787d..196ff267120 100644 --- a/Modules/Segmentation/Interactions/mitkFastMarchingTool3D.h +++ b/Modules/Segmentation/Interactions/mitkFastMarchingTool3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFastMarchingTool3D_h_Included #define mitkFastMarchingTool3D_h_Included diff --git a/Modules/Segmentation/Interactions/mitkFeedbackContourTool.cpp b/Modules/Segmentation/Interactions/mitkFeedbackContourTool.cpp index 874a1e294f7..4cea2511844 100644 --- a/Modules/Segmentation/Interactions/mitkFeedbackContourTool.cpp +++ b/Modules/Segmentation/Interactions/mitkFeedbackContourTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFeedbackContourTool.h" #include "mitkToolManager.h" diff --git a/Modules/Segmentation/Interactions/mitkFeedbackContourTool.h b/Modules/Segmentation/Interactions/mitkFeedbackContourTool.h index 9f8fa161ea6..f7525aeac67 100644 --- a/Modules/Segmentation/Interactions/mitkFeedbackContourTool.h +++ b/Modules/Segmentation/Interactions/mitkFeedbackContourTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFeedbackContourTool_h_Included #define mitkFeedbackContourTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkFillRegionTool.cpp b/Modules/Segmentation/Interactions/mitkFillRegionTool.cpp index 594b670955f..1ef851a209f 100644 --- a/Modules/Segmentation/Interactions/mitkFillRegionTool.cpp +++ b/Modules/Segmentation/Interactions/mitkFillRegionTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFillRegionTool.h" diff --git a/Modules/Segmentation/Interactions/mitkFillRegionTool.h b/Modules/Segmentation/Interactions/mitkFillRegionTool.h index fb53d482ec1..d05d869c46d 100644 --- a/Modules/Segmentation/Interactions/mitkFillRegionTool.h +++ b/Modules/Segmentation/Interactions/mitkFillRegionTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkFillRegionTool_h_Included #define mitkFillRegionTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkLiveWireTool2D.cpp b/Modules/Segmentation/Interactions/mitkLiveWireTool2D.cpp index 8db32bf0e9e..a787010bb73 100644 --- a/Modules/Segmentation/Interactions/mitkLiveWireTool2D.cpp +++ b/Modules/Segmentation/Interactions/mitkLiveWireTool2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Segmentation/Interactions/mitkLiveWireTool2D.h b/Modules/Segmentation/Interactions/mitkLiveWireTool2D.h index bfb6de644db..8ff6b861d0c 100644 --- a/Modules/Segmentation/Interactions/mitkLiveWireTool2D.h +++ b/Modules/Segmentation/Interactions/mitkLiveWireTool2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkLiveWireTool2D_h #define mitkLiveWireTool2D_h diff --git a/Modules/Segmentation/Interactions/mitkOtsuTool3D.cpp b/Modules/Segmentation/Interactions/mitkOtsuTool3D.cpp index 9f3698941f7..b38f9af9a03 100644 --- a/Modules/Segmentation/Interactions/mitkOtsuTool3D.cpp +++ b/Modules/Segmentation/Interactions/mitkOtsuTool3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkOtsuTool3D.h" diff --git a/Modules/Segmentation/Interactions/mitkOtsuTool3D.h b/Modules/Segmentation/Interactions/mitkOtsuTool3D.h index 47b17028450..6b019dea1d7 100644 --- a/Modules/Segmentation/Interactions/mitkOtsuTool3D.h +++ b/Modules/Segmentation/Interactions/mitkOtsuTool3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKOTSUTOOL3D_H #define MITKOTSUTOOL3D_H diff --git a/Modules/Segmentation/Interactions/mitkPaintbrushTool.cpp b/Modules/Segmentation/Interactions/mitkPaintbrushTool.cpp index 269c33e0413..87ca39325eb 100644 --- a/Modules/Segmentation/Interactions/mitkPaintbrushTool.cpp +++ b/Modules/Segmentation/Interactions/mitkPaintbrushTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPaintbrushTool.h" diff --git a/Modules/Segmentation/Interactions/mitkPaintbrushTool.h b/Modules/Segmentation/Interactions/mitkPaintbrushTool.h index 187acb8f108..b63fdfc0a58 100644 --- a/Modules/Segmentation/Interactions/mitkPaintbrushTool.h +++ b/Modules/Segmentation/Interactions/mitkPaintbrushTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPaintbrushTool_h_Included #define mitkPaintbrushTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkPickingTool.cpp b/Modules/Segmentation/Interactions/mitkPickingTool.cpp index e93186f1374..2d4b4261959 100644 --- a/Modules/Segmentation/Interactions/mitkPickingTool.cpp +++ b/Modules/Segmentation/Interactions/mitkPickingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPickingTool.h" diff --git a/Modules/Segmentation/Interactions/mitkPickingTool.h b/Modules/Segmentation/Interactions/mitkPickingTool.h index f67145b8fa4..d511d64bd0e 100644 --- a/Modules/Segmentation/Interactions/mitkPickingTool.h +++ b/Modules/Segmentation/Interactions/mitkPickingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPickingTool_h_Included #define mitkPickingTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkPixelManipulationTool.cpp b/Modules/Segmentation/Interactions/mitkPixelManipulationTool.cpp index d683489c9a0..5a080fe0569 100644 --- a/Modules/Segmentation/Interactions/mitkPixelManipulationTool.cpp +++ b/Modules/Segmentation/Interactions/mitkPixelManipulationTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPixelManipulationTool.h" #include "mitkBoundingObjectToSegmentationFilter.h" diff --git a/Modules/Segmentation/Interactions/mitkPixelManipulationTool.h b/Modules/Segmentation/Interactions/mitkPixelManipulationTool.h index 72bcc4de02c..9ac92f6a86b 100644 --- a/Modules/Segmentation/Interactions/mitkPixelManipulationTool.h +++ b/Modules/Segmentation/Interactions/mitkPixelManipulationTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPIXELMANIPULATIONTOOL_H #define MITKPIXELMANIPULATIONTOOL_H diff --git a/Modules/Segmentation/Interactions/mitkRegionGrowingTool.cpp b/Modules/Segmentation/Interactions/mitkRegionGrowingTool.cpp index 0d16d734492..1c57d02b703 100644 --- a/Modules/Segmentation/Interactions/mitkRegionGrowingTool.cpp +++ b/Modules/Segmentation/Interactions/mitkRegionGrowingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRegionGrowingTool.h" #include "mitkApplicationCursor.h" diff --git a/Modules/Segmentation/Interactions/mitkRegionGrowingTool.h b/Modules/Segmentation/Interactions/mitkRegionGrowingTool.h index e01580aa86c..fceab54a87d 100644 --- a/Modules/Segmentation/Interactions/mitkRegionGrowingTool.h +++ b/Modules/Segmentation/Interactions/mitkRegionGrowingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkRegionGrowingTool_h_Included #define mitkRegionGrowingTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkSegTool2D.cpp b/Modules/Segmentation/Interactions/mitkSegTool2D.cpp index e425c1f8691..f2cbd8bfe5f 100644 --- a/Modules/Segmentation/Interactions/mitkSegTool2D.cpp +++ b/Modules/Segmentation/Interactions/mitkSegTool2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSegTool2D.h" #include "mitkToolManager.h" diff --git a/Modules/Segmentation/Interactions/mitkSegTool2D.h b/Modules/Segmentation/Interactions/mitkSegTool2D.h index 63892e13248..b4d4c5d2e67 100644 --- a/Modules/Segmentation/Interactions/mitkSegTool2D.h +++ b/Modules/Segmentation/Interactions/mitkSegTool2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSegTool2D_h_Included #define mitkSegTool2D_h_Included diff --git a/Modules/Segmentation/Interactions/mitkSegmentationInteractor.cpp b/Modules/Segmentation/Interactions/mitkSegmentationInteractor.cpp index a1b7a7735e6..bdb64974057 100644 --- a/Modules/Segmentation/Interactions/mitkSegmentationInteractor.cpp +++ b/Modules/Segmentation/Interactions/mitkSegmentationInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "mitkSegmentationInteractor.h" #include "mitkInteractionPositionEvent.h" diff --git a/Modules/Segmentation/Interactions/mitkSegmentationInteractor.h b/Modules/Segmentation/Interactions/mitkSegmentationInteractor.h index 220aeeae11e..4aaab75ec09 100644 --- a/Modules/Segmentation/Interactions/mitkSegmentationInteractor.h +++ b/Modules/Segmentation/Interactions/mitkSegmentationInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifndef mitkSegmentationInteractor_h #define mitkSegmentationInteractor_h diff --git a/Modules/Segmentation/Interactions/mitkSegmentationsProcessingTool.cpp b/Modules/Segmentation/Interactions/mitkSegmentationsProcessingTool.cpp index 63bb0ee00a7..4e6848a45c4 100644 --- a/Modules/Segmentation/Interactions/mitkSegmentationsProcessingTool.cpp +++ b/Modules/Segmentation/Interactions/mitkSegmentationsProcessingTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSegmentationsProcessingTool.h" #include "mitkProgressBar.h" diff --git a/Modules/Segmentation/Interactions/mitkSegmentationsProcessingTool.h b/Modules/Segmentation/Interactions/mitkSegmentationsProcessingTool.h index 88901bce5db..bb38352c264 100644 --- a/Modules/Segmentation/Interactions/mitkSegmentationsProcessingTool.h +++ b/Modules/Segmentation/Interactions/mitkSegmentationsProcessingTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSegmentationsProcessingTool_h_Included #define mitkSegmentationsProcessingTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkSetRegionTool.cpp b/Modules/Segmentation/Interactions/mitkSetRegionTool.cpp index 02cd1480f60..4029a52fa93 100644 --- a/Modules/Segmentation/Interactions/mitkSetRegionTool.cpp +++ b/Modules/Segmentation/Interactions/mitkSetRegionTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSetRegionTool.h" diff --git a/Modules/Segmentation/Interactions/mitkSetRegionTool.h b/Modules/Segmentation/Interactions/mitkSetRegionTool.h index 6d4480ed66e..42376155c08 100644 --- a/Modules/Segmentation/Interactions/mitkSetRegionTool.h +++ b/Modules/Segmentation/Interactions/mitkSetRegionTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSetRegionTool_h_Included #define mitkSetRegionTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkSubtractContourTool.cpp b/Modules/Segmentation/Interactions/mitkSubtractContourTool.cpp index 5d05a4afd6f..17a3fb3cd7b 100644 --- a/Modules/Segmentation/Interactions/mitkSubtractContourTool.cpp +++ b/Modules/Segmentation/Interactions/mitkSubtractContourTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSubtractContourTool.h" diff --git a/Modules/Segmentation/Interactions/mitkSubtractContourTool.h b/Modules/Segmentation/Interactions/mitkSubtractContourTool.h index 847bf4f3503..7f65737eca3 100644 --- a/Modules/Segmentation/Interactions/mitkSubtractContourTool.h +++ b/Modules/Segmentation/Interactions/mitkSubtractContourTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSubtractContourTool_h_Included #define mitkSubtractContourTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkTool.cpp b/Modules/Segmentation/Interactions/mitkTool.cpp index ea50bb81b28..6b17128971d 100644 --- a/Modules/Segmentation/Interactions/mitkTool.cpp +++ b/Modules/Segmentation/Interactions/mitkTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTool.h" diff --git a/Modules/Segmentation/Interactions/mitkTool.h b/Modules/Segmentation/Interactions/mitkTool.h index 6ed5a118492..9313eb1c7e5 100644 --- a/Modules/Segmentation/Interactions/mitkTool.h +++ b/Modules/Segmentation/Interactions/mitkTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkTool_h_Included #define mitkTool_h_Included diff --git a/Modules/Segmentation/Interactions/mitkToolCommand.cpp b/Modules/Segmentation/Interactions/mitkToolCommand.cpp index ed5860f8c2f..5768bd2930c 100644 --- a/Modules/Segmentation/Interactions/mitkToolCommand.cpp +++ b/Modules/Segmentation/Interactions/mitkToolCommand.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToolCommand.h" #include "mitkProgressBar.h" diff --git a/Modules/Segmentation/Interactions/mitkToolCommand.h b/Modules/Segmentation/Interactions/mitkToolCommand.h index 8f958f50538..78627fb247e 100644 --- a/Modules/Segmentation/Interactions/mitkToolCommand.h +++ b/Modules/Segmentation/Interactions/mitkToolCommand.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkToolCommand_H #define _mitkToolCommand_H diff --git a/Modules/Segmentation/Interactions/mitkToolEvents.h b/Modules/Segmentation/Interactions/mitkToolEvents.h index ce4e8901643..9f615ea63b1 100644 --- a/Modules/Segmentation/Interactions/mitkToolEvents.h +++ b/Modules/Segmentation/Interactions/mitkToolEvents.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_TOOL_EVENTS_H #define MITK_TOOL_EVENTS_H diff --git a/Modules/Segmentation/Interactions/mitkToolFactoryMacro.h b/Modules/Segmentation/Interactions/mitkToolFactoryMacro.h index 4e64439bdd1..deb7abcb5e0 100644 --- a/Modules/Segmentation/Interactions/mitkToolFactoryMacro.h +++ b/Modules/Segmentation/Interactions/mitkToolFactoryMacro.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define MITK_TOOL_MACRO(EXPORT_SPEC, CLASS_NAME, DESCRIPTION) \ class EXPORT_SPEC CLASS_NAME##Factory : public ::itk::ObjectFactoryBase \ diff --git a/Modules/Segmentation/Interactions/mitkWatershedTool.cpp b/Modules/Segmentation/Interactions/mitkWatershedTool.cpp index 9ecae110afe..db48041deec 100644 --- a/Modules/Segmentation/Interactions/mitkWatershedTool.cpp +++ b/Modules/Segmentation/Interactions/mitkWatershedTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkWatershedTool.h" diff --git a/Modules/Segmentation/Interactions/mitkWatershedTool.h b/Modules/Segmentation/Interactions/mitkWatershedTool.h index 0a67b0b39a9..81e3dcd969f 100644 --- a/Modules/Segmentation/Interactions/mitkWatershedTool.h +++ b/Modules/Segmentation/Interactions/mitkWatershedTool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkWatershedTool_h_Included #define mitkWatershedTool_h_Included diff --git a/Modules/Segmentation/Rendering/mitkContourMapper2D.cpp b/Modules/Segmentation/Rendering/mitkContourMapper2D.cpp index dad9e3f02b9..166a20faa92 100644 --- a/Modules/Segmentation/Rendering/mitkContourMapper2D.cpp +++ b/Modules/Segmentation/Rendering/mitkContourMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourMapper2D.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Segmentation/Rendering/mitkContourMapper2D.h b/Modules/Segmentation/Rendering/mitkContourMapper2D.h index b314291a73b..28787e4a29a 100644 --- a/Modules/Segmentation/Rendering/mitkContourMapper2D.h +++ b/Modules/Segmentation/Rendering/mitkContourMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CONTOUR_MAPPER_2D_H_ #define MITK_CONTOUR_MAPPER_2D_H_ diff --git a/Modules/Segmentation/Rendering/mitkContourSetMapper2D.cpp b/Modules/Segmentation/Rendering/mitkContourSetMapper2D.cpp index 2df847fdd0d..5743b6be7b0 100644 --- a/Modules/Segmentation/Rendering/mitkContourSetMapper2D.cpp +++ b/Modules/Segmentation/Rendering/mitkContourSetMapper2D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourSetMapper2D.h" #include "mitkBaseRenderer.h" diff --git a/Modules/Segmentation/Rendering/mitkContourSetMapper2D.h b/Modules/Segmentation/Rendering/mitkContourSetMapper2D.h index 372bcba446f..9683a716eaa 100644 --- a/Modules/Segmentation/Rendering/mitkContourSetMapper2D.h +++ b/Modules/Segmentation/Rendering/mitkContourSetMapper2D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CONTOUR_SET_MAPPER_2D_H_ #define MITK_CONTOUR_SET_MAPPER_2D_H_ diff --git a/Modules/Segmentation/Rendering/mitkContourSetVtkMapper3D.cpp b/Modules/Segmentation/Rendering/mitkContourSetVtkMapper3D.cpp index 1c4549f4226..c1022373ea2 100644 --- a/Modules/Segmentation/Rendering/mitkContourSetVtkMapper3D.cpp +++ b/Modules/Segmentation/Rendering/mitkContourSetVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourSetVtkMapper3D.h" #include "mitkColorProperty.h" diff --git a/Modules/Segmentation/Rendering/mitkContourSetVtkMapper3D.h b/Modules/Segmentation/Rendering/mitkContourSetVtkMapper3D.h index 1300ad2ddd1..2c75fde5d2f 100644 --- a/Modules/Segmentation/Rendering/mitkContourSetVtkMapper3D.h +++ b/Modules/Segmentation/Rendering/mitkContourSetVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CONTOUR_SET_VTK_MAPPER_3D_H #define MITK_CONTOUR_SET_VTK_MAPPER_3D_H diff --git a/Modules/Segmentation/Rendering/mitkContourVtkMapper3D.cpp b/Modules/Segmentation/Rendering/mitkContourVtkMapper3D.cpp index 4a5e5f56be7..bd5a8846cee 100644 --- a/Modules/Segmentation/Rendering/mitkContourVtkMapper3D.cpp +++ b/Modules/Segmentation/Rendering/mitkContourVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkContourVtkMapper3D.h" #include "mitkColorProperty.h" diff --git a/Modules/Segmentation/Rendering/mitkContourVtkMapper3D.h b/Modules/Segmentation/Rendering/mitkContourVtkMapper3D.h index e1c46a665ce..9d69dc987b8 100644 --- a/Modules/Segmentation/Rendering/mitkContourVtkMapper3D.h +++ b/Modules/Segmentation/Rendering/mitkContourVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_CONTOUR_VTK_MAPPER_3D_H #define MITK_CONTOUR_VTK_MAPPER_3D_H diff --git a/Modules/Segmentation/SegmentationUtilities/BooleanOperations/mitkBooleanOperation.cpp b/Modules/Segmentation/SegmentationUtilities/BooleanOperations/mitkBooleanOperation.cpp index d696d45dc93..880d00ac5ec 100644 --- a/Modules/Segmentation/SegmentationUtilities/BooleanOperations/mitkBooleanOperation.cpp +++ b/Modules/Segmentation/SegmentationUtilities/BooleanOperations/mitkBooleanOperation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBooleanOperation.h" #include diff --git a/Modules/Segmentation/SegmentationUtilities/BooleanOperations/mitkBooleanOperation.h b/Modules/Segmentation/SegmentationUtilities/BooleanOperations/mitkBooleanOperation.h index 267cec0b203..5fc6858c523 100644 --- a/Modules/Segmentation/SegmentationUtilities/BooleanOperations/mitkBooleanOperation.h +++ b/Modules/Segmentation/SegmentationUtilities/BooleanOperations/mitkBooleanOperation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkBooleanOperation_h #define mitkBooleanOperation_h diff --git a/Modules/Segmentation/SegmentationUtilities/MorphologicalOperations/mitkMorphologicalOperations.cpp b/Modules/Segmentation/SegmentationUtilities/MorphologicalOperations/mitkMorphologicalOperations.cpp index fd3b295c644..7f011e2a9ed 100644 --- a/Modules/Segmentation/SegmentationUtilities/MorphologicalOperations/mitkMorphologicalOperations.cpp +++ b/Modules/Segmentation/SegmentationUtilities/MorphologicalOperations/mitkMorphologicalOperations.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMorphologicalOperations.h" #include @@ -415,4 +411,4 @@ TStructuringElement mitk::MorphologicalOperations::CreateStructuringElement(Str strElem.SetRadius(size); strElem.CreateStructuringElement(); return strElem; -} \ No newline at end of file +} diff --git a/Modules/Segmentation/SegmentationUtilities/MorphologicalOperations/mitkMorphologicalOperations.h b/Modules/Segmentation/SegmentationUtilities/MorphologicalOperations/mitkMorphologicalOperations.h index a615a738206..d5c7ebe3d60 100644 --- a/Modules/Segmentation/SegmentationUtilities/MorphologicalOperations/mitkMorphologicalOperations.h +++ b/Modules/Segmentation/SegmentationUtilities/MorphologicalOperations/mitkMorphologicalOperations.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkMorphologicalOperations_h #define mitkMorphologicalOperations_h diff --git a/Modules/Segmentation/Testing/mitkCompareImageSliceTestHelper.h b/Modules/Segmentation/Testing/mitkCompareImageSliceTestHelper.h index 78021d9a375..8810256118a 100644 --- a/Modules/Segmentation/Testing/mitkCompareImageSliceTestHelper.h +++ b/Modules/Segmentation/Testing/mitkCompareImageSliceTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCompareImageSliceTestHelperhincluded #define mitkCompareImageSliceTestHelperhincluded diff --git a/Modules/Segmentation/Testing/mitkContourMapper2DTest.cpp b/Modules/Segmentation/Testing/mitkContourMapper2DTest.cpp index e06c23cbd3b..e225e478cba 100644 --- a/Modules/Segmentation/Testing/mitkContourMapper2DTest.cpp +++ b/Modules/Segmentation/Testing/mitkContourMapper2DTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommon.h" #include "mitkContour.h" diff --git a/Modules/Segmentation/Testing/mitkContourModelSetToImageFilterTest.cpp b/Modules/Segmentation/Testing/mitkContourModelSetToImageFilterTest.cpp index e9092f40e1b..c76e14e2148 100644 --- a/Modules/Segmentation/Testing/mitkContourModelSetToImageFilterTest.cpp +++ b/Modules/Segmentation/Testing/mitkContourModelSetToImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Segmentation/Testing/mitkContourTest.cpp b/Modules/Segmentation/Testing/mitkContourTest.cpp index ada0a7ffa3e..d178877a08c 100644 --- a/Modules/Segmentation/Testing/mitkContourTest.cpp +++ b/Modules/Segmentation/Testing/mitkContourTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCommon.h" #include "mitkContour.h" diff --git a/Modules/Segmentation/Testing/mitkDataNodeSegmentationTest.cpp b/Modules/Segmentation/Testing/mitkDataNodeSegmentationTest.cpp index 33c2440aaa8..73c203c6b21 100644 --- a/Modules/Segmentation/Testing/mitkDataNodeSegmentationTest.cpp +++ b/Modules/Segmentation/Testing/mitkDataNodeSegmentationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataNode.h" diff --git a/Modules/Segmentation/Testing/mitkFeatureBasedEdgeDetectionFilterTest.cpp b/Modules/Segmentation/Testing/mitkFeatureBasedEdgeDetectionFilterTest.cpp index 9b3de1e55d5..ff8e4865ff4 100644 --- a/Modules/Segmentation/Testing/mitkFeatureBasedEdgeDetectionFilterTest.cpp +++ b/Modules/Segmentation/Testing/mitkFeatureBasedEdgeDetectionFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Segmentation/Testing/mitkImageToContourFilterTest.cpp b/Modules/Segmentation/Testing/mitkImageToContourFilterTest.cpp index 73ca01f75ae..7ff58e43ed0 100644 --- a/Modules/Segmentation/Testing/mitkImageToContourFilterTest.cpp +++ b/Modules/Segmentation/Testing/mitkImageToContourFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Segmentation/Testing/mitkManualSegmentationToSurfaceFilterTest.cpp b/Modules/Segmentation/Testing/mitkManualSegmentationToSurfaceFilterTest.cpp index f3817fd6edb..75488374d51 100644 --- a/Modules/Segmentation/Testing/mitkManualSegmentationToSurfaceFilterTest.cpp +++ b/Modules/Segmentation/Testing/mitkManualSegmentationToSurfaceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Segmentation/Testing/mitkOverwriteSliceFilterObliquePlaneTest.cpp b/Modules/Segmentation/Testing/mitkOverwriteSliceFilterObliquePlaneTest.cpp index 07198afd5b1..4ca94842ef2 100644 --- a/Modules/Segmentation/Testing/mitkOverwriteSliceFilterObliquePlaneTest.cpp +++ b/Modules/Segmentation/Testing/mitkOverwriteSliceFilterObliquePlaneTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Segmentation/Testing/mitkOverwriteSliceFilterTest.cpp b/Modules/Segmentation/Testing/mitkOverwriteSliceFilterTest.cpp index fe1c4c21b30..12c7666fa16 100644 --- a/Modules/Segmentation/Testing/mitkOverwriteSliceFilterTest.cpp +++ b/Modules/Segmentation/Testing/mitkOverwriteSliceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/Segmentation/Testing/mitkOverwriteSliceImageFilterTest.cpp b/Modules/Segmentation/Testing/mitkOverwriteSliceImageFilterTest.cpp index f7078e7959d..604d647f6fd 100644 --- a/Modules/Segmentation/Testing/mitkOverwriteSliceImageFilterTest.cpp +++ b/Modules/Segmentation/Testing/mitkOverwriteSliceImageFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCompareImageSliceTestHelper.h" #include "mitkCoreObjectFactory.h" diff --git a/Modules/Segmentation/Testing/mitkSegmentationInterpolationTest.cpp b/Modules/Segmentation/Testing/mitkSegmentationInterpolationTest.cpp index 0dcde93a429..e16d8c63924 100644 --- a/Modules/Segmentation/Testing/mitkSegmentationInterpolationTest.cpp +++ b/Modules/Segmentation/Testing/mitkSegmentationInterpolationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Testing #include diff --git a/Modules/Segmentation/Testing/mitkToolInteractionTest.cpp b/Modules/Segmentation/Testing/mitkToolInteractionTest.cpp index 9d67b01eb04..50aaef5c35b 100644 --- a/Modules/Segmentation/Testing/mitkToolInteractionTest.cpp +++ b/Modules/Segmentation/Testing/mitkToolInteractionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/Segmentation/Testing/mitkToolManagerProviderTest.cpp b/Modules/Segmentation/Testing/mitkToolManagerProviderTest.cpp index 2c438369255..e737f374102 100644 --- a/Modules/Segmentation/Testing/mitkToolManagerProviderTest.cpp +++ b/Modules/Segmentation/Testing/mitkToolManagerProviderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkLightObject.h" #include "mitkTestingMacros.h" #include "mitkToolManagerProvider.h" diff --git a/Modules/Segmentation/Testing/mitkToolManagerTest.cpp b/Modules/Segmentation/Testing/mitkToolManagerTest.cpp index 3207ca96e02..16c0facacc0 100644 --- a/Modules/Segmentation/Testing/mitkToolManagerTest.cpp +++ b/Modules/Segmentation/Testing/mitkToolManagerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCoreObjectFactory.h" #include "mitkStandaloneDataStorage.h" #include "mitkTestingMacros.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkAdaptiveRegionGrowingToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkAdaptiveRegionGrowingToolGUI.cpp index d8867ee81c9..eb990a143cd 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkAdaptiveRegionGrowingToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkAdaptiveRegionGrowingToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAdaptiveRegionGrowingToolGUI.h" #include diff --git a/Modules/SegmentationUI/Qmitk/QmitkAdaptiveRegionGrowingToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkAdaptiveRegionGrowingToolGUI.h index 6fdbfc16f2b..e61cf29538e 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkAdaptiveRegionGrowingToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkAdaptiveRegionGrowingToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_QmitkAdaptiveRegionGrowingToolGUI_H #define QMITK_QmitkAdaptiveRegionGrowingToolGUI_H diff --git a/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdToolGUI.cpp index 463c37aa9a7..b950c20c1c4 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkBinaryThresholdToolGUI.h" #include "QmitkConfirmSegmentationDialog.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdToolGUI.h index 77de0527ec8..ef6cffb0213 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkBinaryThresholdToolGUI_h_Included #define QmitkBinaryThresholdToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdULToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdULToolGUI.cpp index cdc5e4361b0..603fb305dba 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdULToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdULToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkBinaryThresholdULToolGUI.h" #include "QmitkConfirmSegmentationDialog.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdULToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdULToolGUI.h index 2fcffac0a82..3630f85d5e1 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdULToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkBinaryThresholdULToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkBinaryThresholdULToolGUI_h_Included #define QmitkBinaryThresholdULToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkCalculateGrayValueStatisticsToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkCalculateGrayValueStatisticsToolGUI.cpp index e7939ca10f2..81803dae4e0 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkCalculateGrayValueStatisticsToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkCalculateGrayValueStatisticsToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCalculateGrayValueStatisticsToolGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkCalculateGrayValueStatisticsToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkCalculateGrayValueStatisticsToolGUI.h index 9ba15007761..f5b77a6d400 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkCalculateGrayValueStatisticsToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkCalculateGrayValueStatisticsToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCalculateGrayValueStatisticsToolGUI_h_Included #define QmitkCalculateGrayValueStatisticsToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkConfirmSegmentationDialog.cpp b/Modules/SegmentationUI/Qmitk/QmitkConfirmSegmentationDialog.cpp index 62227b71648..325fa250659 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkConfirmSegmentationDialog.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkConfirmSegmentationDialog.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "QmitkConfirmSegmentationDialog.h" #include "ui_QmitkConfirmSegmentationDialog.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkConfirmSegmentationDialog.h b/Modules/SegmentationUI/Qmitk/QmitkConfirmSegmentationDialog.h index 7c8ffe4f3c4..eff9920ff22 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkConfirmSegmentationDialog.h +++ b/Modules/SegmentationUI/Qmitk/QmitkConfirmSegmentationDialog.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef QMITKCONFIRMSEGMENTATIONDIALOG_H #define QMITKCONFIRMSEGMENTATIONDIALOG_H diff --git a/Modules/SegmentationUI/Qmitk/QmitkCopyToClipBoardDialog.cpp b/Modules/SegmentationUI/Qmitk/QmitkCopyToClipBoardDialog.cpp index 145b4ce741b..6b02886012c 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkCopyToClipBoardDialog.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkCopyToClipBoardDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCopyToClipBoardDialog.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkCopyToClipBoardDialog.h b/Modules/SegmentationUI/Qmitk/QmitkCopyToClipBoardDialog.h index 46e29f0a54e..8c5965ab4ef 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkCopyToClipBoardDialog.h +++ b/Modules/SegmentationUI/Qmitk/QmitkCopyToClipBoardDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCopyToClipBoardDialog_h_Included #define QmitkCopyToClipBoardDialog_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkDrawPaintbrushToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkDrawPaintbrushToolGUI.cpp index ac696c6f2d9..a12477bad38 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkDrawPaintbrushToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkDrawPaintbrushToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDrawPaintbrushToolGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkDrawPaintbrushToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkDrawPaintbrushToolGUI.h index cade54d6454..76a8ce7e0bb 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkDrawPaintbrushToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkDrawPaintbrushToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDrawPaintbrushToolGUI_h_Included #define QmitkDrawPaintbrushToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkErasePaintbrushToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkErasePaintbrushToolGUI.cpp index 4092e603c83..04e5baeb5e0 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkErasePaintbrushToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkErasePaintbrushToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkErasePaintbrushToolGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkErasePaintbrushToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkErasePaintbrushToolGUI.h index 7129f2332b0..1a8362d19fa 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkErasePaintbrushToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkErasePaintbrushToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkErasePaintbrushToolGUI_h_Included #define QmitkErasePaintbrushToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkFastMarchingTool3DGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkFastMarchingTool3DGUI.cpp index 9be4b8151f1..a10b0b98488 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkFastMarchingTool3DGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkFastMarchingTool3DGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFastMarchingTool3DGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkFastMarchingTool3DGUI.h b/Modules/SegmentationUI/Qmitk/QmitkFastMarchingTool3DGUI.h index e277be1b805..e14f6699594 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkFastMarchingTool3DGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkFastMarchingTool3DGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkFastMarchingTool3DGUI_h_Included #define QmitkFastMarchingTool3DGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkFastMarchingToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkFastMarchingToolGUI.cpp index 01acfd5e38f..505525f203b 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkFastMarchingToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkFastMarchingToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFastMarchingToolGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkFastMarchingToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkFastMarchingToolGUI.h index 178a0d5745d..c7998e7cf35 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkFastMarchingToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkFastMarchingToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkFastMarchingToolGUI_h_Included #define QmitkFastMarchingToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkLabelSetWidget.cpp b/Modules/SegmentationUI/Qmitk/QmitkLabelSetWidget.cpp index 44a1985057e..d2795c0567a 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkLabelSetWidget.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkLabelSetWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkLabelSetWidget.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkLabelSetWidget.h b/Modules/SegmentationUI/Qmitk/QmitkLabelSetWidget.h index 3a818da6214..a122cef7840 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkLabelSetWidget.h +++ b/Modules/SegmentationUI/Qmitk/QmitkLabelSetWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkLabelSetWidget_h #define QmitkLabelSetWidget_h diff --git a/Modules/SegmentationUI/Qmitk/QmitkLiveWireTool2DGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkLiveWireTool2DGUI.cpp index b52ff4fbdf8..f90802a78c3 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkLiveWireTool2DGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkLiveWireTool2DGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkLiveWireTool2DGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkLiveWireTool2DGUI.h b/Modules/SegmentationUI/Qmitk/QmitkLiveWireTool2DGUI.h index b64ddcea88c..c9342b4485c 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkLiveWireTool2DGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkLiveWireTool2DGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkLiveWireTool2DGUI_h_Included #define QmitkLiveWireTool2DGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkMaskStampWidget.cpp b/Modules/SegmentationUI/Qmitk/QmitkMaskStampWidget.cpp index 95e7178e8eb..3fb32b8ce61 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkMaskStampWidget.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkMaskStampWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMaskStampWidget.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkMaskStampWidget.h b/Modules/SegmentationUI/Qmitk/QmitkMaskStampWidget.h index da7a46a4364..456a6f1cc41 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkMaskStampWidget.h +++ b/Modules/SegmentationUI/Qmitk/QmitkMaskStampWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMaskStampWidget_h_Included #define QmitkMaskStampWidget_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkNewSegmentationDialog.cpp b/Modules/SegmentationUI/Qmitk/QmitkNewSegmentationDialog.cpp index 1b53eb1111d..56143a92ab1 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkNewSegmentationDialog.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkNewSegmentationDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNewSegmentationDialog.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkNewSegmentationDialog.h b/Modules/SegmentationUI/Qmitk/QmitkNewSegmentationDialog.h index a9fd8bb49b8..e8559ebd77f 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkNewSegmentationDialog.h +++ b/Modules/SegmentationUI/Qmitk/QmitkNewSegmentationDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNewSegmentationDialog_h_Included #define QmitkNewSegmentationDialog_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkOtsuTool3DGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkOtsuTool3DGUI.cpp index 70c6624cea7..2d9b8f80323 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkOtsuTool3DGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkOtsuTool3DGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOtsuTool3DGUI.h" #include "QmitkConfirmSegmentationDialog.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkOtsuTool3DGUI.h b/Modules/SegmentationUI/Qmitk/QmitkOtsuTool3DGUI.h index 33ae866d00b..7967a2aa9c9 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkOtsuTool3DGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkOtsuTool3DGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkOtsuTool3DGUI_h_Included #define QmitkOtsuTool3DGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkPaintbrushToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkPaintbrushToolGUI.cpp index 8aa546ebbde..084197aa7b7 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkPaintbrushToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkPaintbrushToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPaintbrushToolGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkPaintbrushToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkPaintbrushToolGUI.h index 93f8824a30a..4069caa6db7 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkPaintbrushToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkPaintbrushToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPaintbrushToolGUI_h_Included #define QmitkPaintbrushToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkPickingToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkPickingToolGUI.cpp index df36999762e..be695b9ae5b 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkPickingToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkPickingToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPickingToolGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkPickingToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkPickingToolGUI.h index 8a3be14cd3e..499fec0e534 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkPickingToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkPickingToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPickingToolGUI_h_Included #define QmitkPickingToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkPixelManipulationToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkPixelManipulationToolGUI.cpp index 6d6a2a2e69c..7d2a831a204 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkPixelManipulationToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkPixelManipulationToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPixelManipulationToolGUI.h" #include diff --git a/Modules/SegmentationUI/Qmitk/QmitkPixelManipulationToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkPixelManipulationToolGUI.h index 31e58373f33..fc3fba72366 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkPixelManipulationToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkPixelManipulationToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPIXELMANIPULATIONTOOLGUI_H #define QMITKPIXELMANIPULATIONTOOLGUI_H diff --git a/Modules/SegmentationUI/Qmitk/QmitkSearchLabelDialog.cpp b/Modules/SegmentationUI/Qmitk/QmitkSearchLabelDialog.cpp index 2b8c3bfe9a3..0b940203143 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSearchLabelDialog.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkSearchLabelDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSearchLabelDialog.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkSearchLabelDialog.h b/Modules/SegmentationUI/Qmitk/QmitkSearchLabelDialog.h index 3a3c4a58ae4..670a319b961 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSearchLabelDialog.h +++ b/Modules/SegmentationUI/Qmitk/QmitkSearchLabelDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSearchLabelDialog_h_Included #define QmitkSearchLabelDialog_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkSegmentationOrganNamesHandling.cpp b/Modules/SegmentationUI/Qmitk/QmitkSegmentationOrganNamesHandling.cpp index a7031b83160..c027481f2be 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSegmentationOrganNamesHandling.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkSegmentationOrganNamesHandling.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/SegmentationUI/Qmitk/QmitkSliceBasedInterpolatorWidget.cpp b/Modules/SegmentationUI/Qmitk/QmitkSliceBasedInterpolatorWidget.cpp index 14d8d2f1502..79ef1f33dfb 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSliceBasedInterpolatorWidget.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkSliceBasedInterpolatorWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSliceBasedInterpolatorWidget.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkSliceBasedInterpolatorWidget.h b/Modules/SegmentationUI/Qmitk/QmitkSliceBasedInterpolatorWidget.h index 0a88076233e..e0716789e10 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSliceBasedInterpolatorWidget.h +++ b/Modules/SegmentationUI/Qmitk/QmitkSliceBasedInterpolatorWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSliceBasedInterpolatorWidget_h_Included #define QmitkSliceBasedInterpolatorWidget_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkSlicesInterpolator.cpp b/Modules/SegmentationUI/Qmitk/QmitkSlicesInterpolator.cpp index cbc7025dbb7..5fe6ddd84a6 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSlicesInterpolator.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkSlicesInterpolator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSlicesInterpolator.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkSlicesInterpolator.h b/Modules/SegmentationUI/Qmitk/QmitkSlicesInterpolator.h index efd31de00ec..9e66e70157f 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSlicesInterpolator.h +++ b/Modules/SegmentationUI/Qmitk/QmitkSlicesInterpolator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSlicesInterpolator_h_Included #define QmitkSlicesInterpolator_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkSurfaceBasedInterpolatorWidget.cpp b/Modules/SegmentationUI/Qmitk/QmitkSurfaceBasedInterpolatorWidget.cpp index 38ac3d9728a..06f18bf060b 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSurfaceBasedInterpolatorWidget.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkSurfaceBasedInterpolatorWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSurfaceBasedInterpolatorWidget.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkSurfaceBasedInterpolatorWidget.h b/Modules/SegmentationUI/Qmitk/QmitkSurfaceBasedInterpolatorWidget.h index b2d0aa68b36..6561c4c3b49 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSurfaceBasedInterpolatorWidget.h +++ b/Modules/SegmentationUI/Qmitk/QmitkSurfaceBasedInterpolatorWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSurfaceBasedInterpolatorWidgetWidget_h_Included #define QmitkSurfaceBasedInterpolatorWidgetWidget_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkSurfaceStampWidget.cpp b/Modules/SegmentationUI/Qmitk/QmitkSurfaceStampWidget.cpp index 20afe1c5ee5..2643c3b0885 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSurfaceStampWidget.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkSurfaceStampWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSurfaceStampWidget.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkSurfaceStampWidget.h b/Modules/SegmentationUI/Qmitk/QmitkSurfaceStampWidget.h index ae3416ad8aa..6320838ba26 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkSurfaceStampWidget.h +++ b/Modules/SegmentationUI/Qmitk/QmitkSurfaceStampWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSurfaceStampWidget_h_Included #define QmitkSurfaceStampWidget_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkToolGUI.cpp index f08b98cc07f..4cf5e9e968e 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToolGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkToolGUI.h index f0ec2a871e3..54bc13fd4d7 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToolGUI_h_Included #define QmitkToolGUI_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolGUIArea.cpp b/Modules/SegmentationUI/Qmitk/QmitkToolGUIArea.cpp index 15592cf1ab4..fded9c4d813 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolGUIArea.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkToolGUIArea.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToolGUIArea.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolGUIArea.h b/Modules/SegmentationUI/Qmitk/QmitkToolGUIArea.h index e57d759dcc7..5740a2fb63f 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolGUIArea.h +++ b/Modules/SegmentationUI/Qmitk/QmitkToolGUIArea.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToolGUIArea_h_Included #define QmitkToolGUIArea_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolReferenceDataSelectionBox.cpp b/Modules/SegmentationUI/Qmitk/QmitkToolReferenceDataSelectionBox.cpp index 05ea80cd115..3629360baa7 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolReferenceDataSelectionBox.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkToolReferenceDataSelectionBox.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToolReferenceDataSelectionBox.h" #include "QmitkDataStorageComboBox.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolReferenceDataSelectionBox.h b/Modules/SegmentationUI/Qmitk/QmitkToolReferenceDataSelectionBox.h index fa72a54b6e1..b2901eb6b0e 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolReferenceDataSelectionBox.h +++ b/Modules/SegmentationUI/Qmitk/QmitkToolReferenceDataSelectionBox.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToolReferenceDataSelectionBox_h_Included #define QmitkToolReferenceDataSelectionBox_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolRoiDataSelectionBox.cpp b/Modules/SegmentationUI/Qmitk/QmitkToolRoiDataSelectionBox.cpp index dc5b7b2ebd7..2e1d7c9d35e 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolRoiDataSelectionBox.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkToolRoiDataSelectionBox.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToolRoiDataSelectionBox.h" #include "mitkToolManagerProvider.h" #include diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolRoiDataSelectionBox.h b/Modules/SegmentationUI/Qmitk/QmitkToolRoiDataSelectionBox.h index 559d0951a63..48f6d68a91a 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolRoiDataSelectionBox.h +++ b/Modules/SegmentationUI/Qmitk/QmitkToolRoiDataSelectionBox.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_TOOLROIDATASELECTIONBOX_H #define QMITK_TOOLROIDATASELECTIONBOX_H diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolSelectionBox.cpp b/Modules/SegmentationUI/Qmitk/QmitkToolSelectionBox.cpp index 03b4f498aa6..52557fb76f8 100755 --- a/Modules/SegmentationUI/Qmitk/QmitkToolSelectionBox.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkToolSelectionBox.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define MBILOG_ENABLE_DEBUG 1 diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolSelectionBox.h b/Modules/SegmentationUI/Qmitk/QmitkToolSelectionBox.h index ed97f942e3b..ea8970ba74d 100755 --- a/Modules/SegmentationUI/Qmitk/QmitkToolSelectionBox.h +++ b/Modules/SegmentationUI/Qmitk/QmitkToolSelectionBox.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToolSelectionBox_h_Included #define QmitkToolSelectionBox_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolWorkingDataSelectionBox.cpp b/Modules/SegmentationUI/Qmitk/QmitkToolWorkingDataSelectionBox.cpp index b0169abd057..f41de81443e 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolWorkingDataSelectionBox.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkToolWorkingDataSelectionBox.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToolWorkingDataSelectionBox.h" #include "mitkToolManagerProvider.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkToolWorkingDataSelectionBox.h b/Modules/SegmentationUI/Qmitk/QmitkToolWorkingDataSelectionBox.h index 67f2175ebcd..0ab821f534e 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkToolWorkingDataSelectionBox.h +++ b/Modules/SegmentationUI/Qmitk/QmitkToolWorkingDataSelectionBox.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToolWorkingDataSelectionListBox_h_Included #define QmitkToolWorkingDataSelectionListBox_h_Included diff --git a/Modules/SegmentationUI/Qmitk/QmitkWatershedToolGUI.cpp b/Modules/SegmentationUI/Qmitk/QmitkWatershedToolGUI.cpp index 465604e0619..a6f7763f5c1 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkWatershedToolGUI.cpp +++ b/Modules/SegmentationUI/Qmitk/QmitkWatershedToolGUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkWatershedToolGUI.h" diff --git a/Modules/SegmentationUI/Qmitk/QmitkWatershedToolGUI.h b/Modules/SegmentationUI/Qmitk/QmitkWatershedToolGUI.h index 477cf29e39d..ebeee72bf98 100644 --- a/Modules/SegmentationUI/Qmitk/QmitkWatershedToolGUI.h +++ b/Modules/SegmentationUI/Qmitk/QmitkWatershedToolGUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkWatershedToolGUI_h_Included #define QmitkWatershedToolGUI_h_Included diff --git a/Modules/SemanticRelations/Test/mitkSemanticRelationsTest.cpp b/Modules/SemanticRelations/Test/mitkSemanticRelationsTest.cpp index c38f4dcde73..3759173fbe6 100644 --- a/Modules/SemanticRelations/Test/mitkSemanticRelationsTest.cpp +++ b/Modules/SemanticRelations/Test/mitkSemanticRelationsTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk semantic relations #include "mitkSemanticRelationException.h" @@ -806,7 +802,7 @@ class mitkSemanticRelationsTestSuite : public mitk::TestFixture auto allLesions = mitk::RelationStorage::GetAllLesionsOfCase(caseID); CPPUNIT_ASSERT_MESSAGE("One lesions should be stored", allLesions.size() == 1); } - + }; MITK_TEST_SUITE_REGISTRATION(mitkSemanticRelations) diff --git a/Modules/SemanticRelations/Test/mitkSemanticRelationsTestHelper.cpp b/Modules/SemanticRelations/Test/mitkSemanticRelationsTestHelper.cpp index ad47a94f29c..e81fac00dfe 100644 --- a/Modules/SemanticRelations/Test/mitkSemanticRelationsTestHelper.cpp +++ b/Modules/SemanticRelations/Test/mitkSemanticRelationsTestHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSemanticRelationsTestHelper.h" diff --git a/Modules/SemanticRelations/Test/mitkSemanticRelationsTestHelper.h b/Modules/SemanticRelations/Test/mitkSemanticRelationsTestHelper.h index 628b087f643..0305c4550bf 100644 --- a/Modules/SemanticRelations/Test/mitkSemanticRelationsTestHelper.h +++ b/Modules/SemanticRelations/Test/mitkSemanticRelationsTestHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk core #include diff --git a/Modules/SemanticRelations/include/mitkControlPointManager.h b/Modules/SemanticRelations/include/mitkControlPointManager.h index d51ac37f9fc..601ca9c945c 100644 --- a/Modules/SemanticRelations/include/mitkControlPointManager.h +++ b/Modules/SemanticRelations/include/mitkControlPointManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCONTROLPOINTMANAGER_H #define MITKCONTROLPOINTMANAGER_H diff --git a/Modules/SemanticRelations/include/mitkDICOMHelper.h b/Modules/SemanticRelations/include/mitkDICOMHelper.h index 9f99908c0c8..dad48158206 100644 --- a/Modules/SemanticRelations/include/mitkDICOMHelper.h +++ b/Modules/SemanticRelations/include/mitkDICOMHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDICOMHELPER_H #define MITKDICOMHELPER_H diff --git a/Modules/SemanticRelations/include/mitkISemanticRelationsObservable.h b/Modules/SemanticRelations/include/mitkISemanticRelationsObservable.h index a9c78e0f07f..f194857b831 100644 --- a/Modules/SemanticRelations/include/mitkISemanticRelationsObservable.h +++ b/Modules/SemanticRelations/include/mitkISemanticRelationsObservable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKISEMANTICRELATIONSOBSERVABLE_H #define MITKISEMANTICRELATIONSOBSERVABLE_H diff --git a/Modules/SemanticRelations/include/mitkISemanticRelationsObserver.h b/Modules/SemanticRelations/include/mitkISemanticRelationsObserver.h index d7df63e1f50..c05bb279fe9 100644 --- a/Modules/SemanticRelations/include/mitkISemanticRelationsObserver.h +++ b/Modules/SemanticRelations/include/mitkISemanticRelationsObserver.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKISEMANTICRELATIONSOBSERVER_H #define MITKISEMANTICRELATIONSOBSERVER_H diff --git a/Modules/SemanticRelations/include/mitkLesionData.h b/Modules/SemanticRelations/include/mitkLesionData.h index a2818d34224..e0769aa4dda 100644 --- a/Modules/SemanticRelations/include/mitkLesionData.h +++ b/Modules/SemanticRelations/include/mitkLesionData.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLESIONDATA_H #define MITKLESIONDATA_H diff --git a/Modules/SemanticRelations/include/mitkLesionManager.h b/Modules/SemanticRelations/include/mitkLesionManager.h index 49182efdd3a..709e590e2fe 100644 --- a/Modules/SemanticRelations/include/mitkLesionManager.h +++ b/Modules/SemanticRelations/include/mitkLesionManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKLESIONMANAGER_H #define MITKLESIONMANAGER_H diff --git a/Modules/SemanticRelations/include/mitkNodePredicates.h b/Modules/SemanticRelations/include/mitkNodePredicates.h index 201e9e3838a..c1e5d62967b 100644 --- a/Modules/SemanticRelations/include/mitkNodePredicates.h +++ b/Modules/SemanticRelations/include/mitkNodePredicates.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNODEPREDICATES_H #define MITKNODEPREDICATES_H diff --git a/Modules/SemanticRelations/include/mitkRelationStorage.h b/Modules/SemanticRelations/include/mitkRelationStorage.h index 0bfc45cbd3a..b418fa67b82 100644 --- a/Modules/SemanticRelations/include/mitkRelationStorage.h +++ b/Modules/SemanticRelations/include/mitkRelationStorage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRELATIONSTORAGE_H #define MITKRELATIONSTORAGE_H diff --git a/Modules/SemanticRelations/include/mitkSemanticRelationException.h b/Modules/SemanticRelations/include/mitkSemanticRelationException.h index 8ea55b2d3eb..8b5ab542d14 100644 --- a/Modules/SemanticRelations/include/mitkSemanticRelationException.h +++ b/Modules/SemanticRelations/include/mitkSemanticRelationException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSEMANTICRELATIONEXCEPTION_H #define MITKSEMANTICRELATIONEXCEPTION_H diff --git a/Modules/SemanticRelations/include/mitkSemanticRelationsDataStorageAccess.h b/Modules/SemanticRelations/include/mitkSemanticRelationsDataStorageAccess.h index e02de8ba665..2e05221e5a8 100644 --- a/Modules/SemanticRelations/include/mitkSemanticRelationsDataStorageAccess.h +++ b/Modules/SemanticRelations/include/mitkSemanticRelationsDataStorageAccess.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSEMANTICRELATIONSDATASTORAGEACCESS_H #define MITKSEMANTICRELATIONSDATASTORAGEACCESS_H @@ -180,7 +176,7 @@ namespace mitk private: WeakPointer m_DataStorage; - + }; } // namespace mitk diff --git a/Modules/SemanticRelations/include/mitkSemanticRelationsInference.h b/Modules/SemanticRelations/include/mitkSemanticRelationsInference.h index 404edad8851..d83c5d247b4 100644 --- a/Modules/SemanticRelations/include/mitkSemanticRelationsInference.h +++ b/Modules/SemanticRelations/include/mitkSemanticRelationsInference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSEMANTICRELATIONSINFERENCE_H #define MITKSEMANTICRELATIONSINFERENCE_H diff --git a/Modules/SemanticRelations/include/mitkSemanticRelationsIntegration.h b/Modules/SemanticRelations/include/mitkSemanticRelationsIntegration.h index dead35f5d90..7d798c3d1ea 100644 --- a/Modules/SemanticRelations/include/mitkSemanticRelationsIntegration.h +++ b/Modules/SemanticRelations/include/mitkSemanticRelationsIntegration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSEMANTICRELATIONSINTEGRATION_H #define MITKSEMANTICRELATIONSINTEGRATION_H diff --git a/Modules/SemanticRelations/include/mitkSemanticTypes.h b/Modules/SemanticRelations/include/mitkSemanticTypes.h index 2731adb52ef..97ac1782b51 100644 --- a/Modules/SemanticRelations/include/mitkSemanticTypes.h +++ b/Modules/SemanticRelations/include/mitkSemanticTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSEMANTICTYPES_H #define MITKSEMANTICTYPES_H diff --git a/Modules/SemanticRelations/include/mitkUIDGeneratorBoost.h b/Modules/SemanticRelations/include/mitkUIDGeneratorBoost.h index 90347efcf32..720ce42670b 100644 --- a/Modules/SemanticRelations/include/mitkUIDGeneratorBoost.h +++ b/Modules/SemanticRelations/include/mitkUIDGeneratorBoost.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUIDGENERATORBOOST_H #define MITKUIDGENERATORBOOST_H diff --git a/Modules/SemanticRelations/src/mitkControlPointManager.cpp b/Modules/SemanticRelations/src/mitkControlPointManager.cpp index 01c041f8712..2f31f63a27e 100644 --- a/Modules/SemanticRelations/src/mitkControlPointManager.cpp +++ b/Modules/SemanticRelations/src/mitkControlPointManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations module #include "mitkControlPointManager.h" diff --git a/Modules/SemanticRelations/src/mitkDICOMHelper.cpp b/Modules/SemanticRelations/src/mitkDICOMHelper.cpp index 21e2f1fc21a..726dd9159c2 100644 --- a/Modules/SemanticRelations/src/mitkDICOMHelper.cpp +++ b/Modules/SemanticRelations/src/mitkDICOMHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations module #include "mitkDICOMHelper.h" diff --git a/Modules/SemanticRelations/src/mitkLesionData.cpp b/Modules/SemanticRelations/src/mitkLesionData.cpp index d2c8ced6e4e..103bfc96757 100644 --- a/Modules/SemanticRelations/src/mitkLesionData.cpp +++ b/Modules/SemanticRelations/src/mitkLesionData.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations module #include "mitkLesionData.h" diff --git a/Modules/SemanticRelations/src/mitkLesionManager.cpp b/Modules/SemanticRelations/src/mitkLesionManager.cpp index f2565c1e1cf..725dbfaf6c4 100644 --- a/Modules/SemanticRelations/src/mitkLesionManager.cpp +++ b/Modules/SemanticRelations/src/mitkLesionManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations module #include "mitkLesionManager.h" diff --git a/Modules/SemanticRelations/src/mitkNodePredicates.cpp b/Modules/SemanticRelations/src/mitkNodePredicates.cpp index d0c4b52a1a1..7d92b9e9f60 100644 --- a/Modules/SemanticRelations/src/mitkNodePredicates.cpp +++ b/Modules/SemanticRelations/src/mitkNodePredicates.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodePredicates.h" diff --git a/Modules/SemanticRelations/src/mitkRelationStorage.cpp b/Modules/SemanticRelations/src/mitkRelationStorage.cpp index 32156b5760b..e8c49818aa6 100644 --- a/Modules/SemanticRelations/src/mitkRelationStorage.cpp +++ b/Modules/SemanticRelations/src/mitkRelationStorage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkRelationStorage.h" @@ -1478,7 +1474,7 @@ void mitk::RelationStorage::AddInformationTypeToImage(const SemanticTypes::CaseI { informationTypesVectorPropertyValue = informationTypesVectorProperty->GetValue(); } - + const auto existingInformationType = std::find(informationTypesVectorPropertyValue.begin(), informationTypesVectorPropertyValue.end(), informationType); if (existingInformationType == informationTypesVectorPropertyValue.end()) { diff --git a/Modules/SemanticRelations/src/mitkSemanticRelationsDataStorageAccess.cpp b/Modules/SemanticRelations/src/mitkSemanticRelationsDataStorageAccess.cpp index 57e2919158f..c2712ece4f8 100644 --- a/Modules/SemanticRelations/src/mitkSemanticRelationsDataStorageAccess.cpp +++ b/Modules/SemanticRelations/src/mitkSemanticRelationsDataStorageAccess.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSemanticRelationsDataStorageAccess.h" diff --git a/Modules/SemanticRelations/src/mitkSemanticRelationsInference.cpp b/Modules/SemanticRelations/src/mitkSemanticRelationsInference.cpp index a974ed45716..ac1cc937a8a 100644 --- a/Modules/SemanticRelations/src/mitkSemanticRelationsInference.cpp +++ b/Modules/SemanticRelations/src/mitkSemanticRelationsInference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSemanticRelationsInference.h" diff --git a/Modules/SemanticRelations/src/mitkSemanticRelationsIntegration.cpp b/Modules/SemanticRelations/src/mitkSemanticRelationsIntegration.cpp index 71735300303..935bc10202b 100644 --- a/Modules/SemanticRelations/src/mitkSemanticRelationsIntegration.cpp +++ b/Modules/SemanticRelations/src/mitkSemanticRelationsIntegration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSemanticRelationsIntegration.h" diff --git a/Modules/SemanticRelations/src/mitkUIDGeneratorBoost.cpp b/Modules/SemanticRelations/src/mitkUIDGeneratorBoost.cpp index a7913deaa5a..394113e4996 100644 --- a/Modules/SemanticRelations/src/mitkUIDGeneratorBoost.cpp +++ b/Modules/SemanticRelations/src/mitkUIDGeneratorBoost.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relation module #include "mitkUIDGeneratorBoost.h" diff --git a/Modules/SemanticRelationsUI/include/QmitkAbstractSemanticRelationsStorageInspector.h b/Modules/SemanticRelationsUI/include/QmitkAbstractSemanticRelationsStorageInspector.h index 0fe52a106bf..52654c2aee9 100644 --- a/Modules/SemanticRelationsUI/include/QmitkAbstractSemanticRelationsStorageInspector.h +++ b/Modules/SemanticRelationsUI/include/QmitkAbstractSemanticRelationsStorageInspector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTSEMANTICRELATIONSSTORAGEINSPECTOR_H #define QMITKABSTRACTSEMANTICRELATIONSSTORAGEINSPECTOR_H diff --git a/Modules/SemanticRelationsUI/include/QmitkAbstractSemanticRelationsStorageModel.h b/Modules/SemanticRelationsUI/include/QmitkAbstractSemanticRelationsStorageModel.h index ca12cb489ab..d53218c1bf0 100644 --- a/Modules/SemanticRelationsUI/include/QmitkAbstractSemanticRelationsStorageModel.h +++ b/Modules/SemanticRelationsUI/include/QmitkAbstractSemanticRelationsStorageModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTSEMANTICRELATIONSSTORAGEMODEL_H #define QMITKABSTRACTSEMANTICRELATIONSSTORAGEMODEL_H diff --git a/Modules/SemanticRelationsUI/include/QmitkControlPointDialog.h b/Modules/SemanticRelationsUI/include/QmitkControlPointDialog.h index 10ff4208b51..2cb6de61fa9 100644 --- a/Modules/SemanticRelationsUI/include/QmitkControlPointDialog.h +++ b/Modules/SemanticRelationsUI/include/QmitkControlPointDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCONTROLPOINTDIALOG_H #define QMITKCONTROLPOINTDIALOG_H diff --git a/Modules/SemanticRelationsUI/include/QmitkLesionTextDialog.h b/Modules/SemanticRelationsUI/include/QmitkLesionTextDialog.h index b6a14a44291..9a71bcdc7ec 100644 --- a/Modules/SemanticRelationsUI/include/QmitkLesionTextDialog.h +++ b/Modules/SemanticRelationsUI/include/QmitkLesionTextDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLESIONTEXTDIALOG_H #define QMITKLESIONTEXTDIALOG_H diff --git a/Modules/SemanticRelationsUI/include/QmitkLesionTreeItem.h b/Modules/SemanticRelationsUI/include/QmitkLesionTreeItem.h index 306454f0f75..efbc11c9308 100644 --- a/Modules/SemanticRelationsUI/include/QmitkLesionTreeItem.h +++ b/Modules/SemanticRelationsUI/include/QmitkLesionTreeItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLESIONTREEITEM_H #define QMITKLESIONTREEITEM_H diff --git a/Modules/SemanticRelationsUI/include/QmitkLesionTreeModel.h b/Modules/SemanticRelationsUI/include/QmitkLesionTreeModel.h index 423aa5a896e..6162ccf62e5 100644 --- a/Modules/SemanticRelationsUI/include/QmitkLesionTreeModel.h +++ b/Modules/SemanticRelationsUI/include/QmitkLesionTreeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLESIONTREEMODEL_H #define QMITKLESIONTREEMODEL_H @@ -40,8 +36,8 @@ See LICENSE.txt or http://www.mitk.org for details. */ class MITKSEMANTICRELATIONSUI_EXPORT QmitkLesionTreeModel : public QmitkAbstractSemanticRelationsStorageModel { - Q_OBJECT - + Q_OBJECT + public: /** @@ -68,7 +64,7 @@ class MITKSEMANTICRELATIONSUI_EXPORT QmitkLesionTreeModel : public QmitkAbstract const mitk::DataNode* GetLastSegmentation() const; protected: - + // the following functions have to be overridden but are not implemented in this model void NodePredicateChanged() override { } void NodeAdded(const mitk::DataNode*) override; diff --git a/Modules/SemanticRelationsUI/include/QmitkPatientInfoWidget.h b/Modules/SemanticRelationsUI/include/QmitkPatientInfoWidget.h index 039e4b8326d..9a9cf6f0ae5 100644 --- a/Modules/SemanticRelationsUI/include/QmitkPatientInfoWidget.h +++ b/Modules/SemanticRelationsUI/include/QmitkPatientInfoWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPATIENTINFOWIDGET_H #define QMITKPATIENTINFOWIDGET_H diff --git a/Modules/SemanticRelationsUI/include/QmitkPatientTableHeaderView.h b/Modules/SemanticRelationsUI/include/QmitkPatientTableHeaderView.h index a0cdfc7e97e..5dcff041199 100644 --- a/Modules/SemanticRelationsUI/include/QmitkPatientTableHeaderView.h +++ b/Modules/SemanticRelationsUI/include/QmitkPatientTableHeaderView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPATIENTTABLEHEADERVIEW_H #define QMITKPATIENTTABLEHEADERVIEW_H @@ -26,7 +22,7 @@ See LICENSE.txt or http://www.mitk.org for details. #include /* -* @brief +* @brief */ class MITKSEMANTICRELATIONSUI_EXPORT QmitkPatientTableHeaderView : public QHeaderView { diff --git a/Modules/SemanticRelationsUI/include/QmitkPatientTableInspector.h b/Modules/SemanticRelationsUI/include/QmitkPatientTableInspector.h index 798cade2853..7ac7de66533 100644 --- a/Modules/SemanticRelationsUI/include/QmitkPatientTableInspector.h +++ b/Modules/SemanticRelationsUI/include/QmitkPatientTableInspector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPATIENTTABLEINSPECTOR_H #define QMITKPATIENTTABLEINSPECTOR_H diff --git a/Modules/SemanticRelationsUI/include/QmitkPatientTableModel.h b/Modules/SemanticRelationsUI/include/QmitkPatientTableModel.h index 0ecc0e3e71e..b47fbb5aa76 100644 --- a/Modules/SemanticRelationsUI/include/QmitkPatientTableModel.h +++ b/Modules/SemanticRelationsUI/include/QmitkPatientTableModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPATIENTTABLEMODEL_H #define QMITKPATIENTTABLEMODEL_H @@ -42,8 +38,8 @@ See LICENSE.txt or http://www.mitk.org for details. */ class QmitkPatientTableModel : public QmitkAbstractSemanticRelationsStorageModel { - Q_OBJECT - + Q_OBJECT + public: QmitkPatientTableModel(QObject* parent = nullptr); diff --git a/Modules/SemanticRelationsUI/include/QmitkSemanticRelationsUIHelper.h b/Modules/SemanticRelationsUI/include/QmitkSemanticRelationsUIHelper.h index 4c804178f0e..9a3de1d3c75 100644 --- a/Modules/SemanticRelationsUI/include/QmitkSemanticRelationsUIHelper.h +++ b/Modules/SemanticRelationsUI/include/QmitkSemanticRelationsUIHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSEMANTICRELATIONSUIHELPER_H #define QMITKSEMANTICRELATIONSUIHELPER_H diff --git a/Modules/SemanticRelationsUI/include/QmitkStatisticsCalculator.h b/Modules/SemanticRelationsUI/include/QmitkStatisticsCalculator.h index 780fd9beef7..66c18b99eff 100644 --- a/Modules/SemanticRelationsUI/include/QmitkStatisticsCalculator.h +++ b/Modules/SemanticRelationsUI/include/QmitkStatisticsCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSTATISTICSCALCULATOR_H #define QMITKSTATISTICSCALCULATOR_H diff --git a/Modules/SemanticRelationsUI/include/QmitkStatisticsTreeModel.h b/Modules/SemanticRelationsUI/include/QmitkStatisticsTreeModel.h index a13f5142947..358bfa8f0ad 100644 --- a/Modules/SemanticRelationsUI/include/QmitkStatisticsTreeModel.h +++ b/Modules/SemanticRelationsUI/include/QmitkStatisticsTreeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSTATISTICSTREEMODEL_H #define QMITKSTATISTICSTREEMODEL_H diff --git a/Modules/SemanticRelationsUI/include/QmitkTableItemThumbnailDelegate.h b/Modules/SemanticRelationsUI/include/QmitkTableItemThumbnailDelegate.h index c65150847f3..2f9f1f27797 100644 --- a/Modules/SemanticRelationsUI/include/QmitkTableItemThumbnailDelegate.h +++ b/Modules/SemanticRelationsUI/include/QmitkTableItemThumbnailDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTABLEITEMTHUMBNAILDELEGATE_H #define QMITKTABLEITEMTHUMBNAILDELEGATE_H @@ -20,12 +16,12 @@ See LICENSE.txt or http://www.mitk.org for details. #include /* -* @brief The QmitkTableItemThumbnailDelegate is a subclass of the QmitkAbstractSemanticRelationsStorageModel +* @brief The QmitkTableItemThumbnailDelegate is a subclass of the QmitkAbstractSemanticRelationsStorageModel */ class QmitkTableItemThumbnailDelegate : public QStyledItemDelegate { - Q_OBJECT - + Q_OBJECT + public: QmitkTableItemThumbnailDelegate(QObject* parent = nullptr); diff --git a/Modules/SemanticRelationsUI/include/mitkModuleActivator.h b/Modules/SemanticRelationsUI/include/mitkModuleActivator.h index 2fe949967c9..fb065966c41 100644 --- a/Modules/SemanticRelationsUI/include/mitkModuleActivator.h +++ b/Modules/SemanticRelationsUI/include/mitkModuleActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMODULEACTIVATOR_H #define MITKMODULEACTIVATOR_H diff --git a/Modules/SemanticRelationsUI/src/QmitkAbstractSemanticRelationsStorageInspector.cpp b/Modules/SemanticRelationsUI/src/QmitkAbstractSemanticRelationsStorageInspector.cpp index 2f6013c5892..0bd50689da4 100644 --- a/Modules/SemanticRelationsUI/src/QmitkAbstractSemanticRelationsStorageInspector.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkAbstractSemanticRelationsStorageInspector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkAbstractSemanticRelationsStorageInspector.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkAbstractSemanticRelationsStorageModel.cpp b/Modules/SemanticRelationsUI/src/QmitkAbstractSemanticRelationsStorageModel.cpp index ce6b86e4464..b0f0254cd63 100644 --- a/Modules/SemanticRelationsUI/src/QmitkAbstractSemanticRelationsStorageModel.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkAbstractSemanticRelationsStorageModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkAbstractSemanticRelationsStorageModel.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkControlPointDialog.cpp b/Modules/SemanticRelationsUI/src/QmitkControlPointDialog.cpp index 0e4a199258d..4dfd6870d80 100644 --- a/Modules/SemanticRelationsUI/src/QmitkControlPointDialog.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkControlPointDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkControlPointDialog.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkLesionTextDialog.cpp b/Modules/SemanticRelationsUI/src/QmitkLesionTextDialog.cpp index 220b06898d9..0eb9a7aefdb 100644 --- a/Modules/SemanticRelationsUI/src/QmitkLesionTextDialog.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkLesionTextDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkLesionTextDialog.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkLesionTreeItem.cpp b/Modules/SemanticRelationsUI/src/QmitkLesionTreeItem.cpp index 291a7d31f91..1546baeb320 100644 --- a/Modules/SemanticRelationsUI/src/QmitkLesionTreeItem.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkLesionTreeItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkLesionTreeItem.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkLesionTreeModel.cpp b/Modules/SemanticRelationsUI/src/QmitkLesionTreeModel.cpp index 44adbf74ab4..c4f1dbb5515 100644 --- a/Modules/SemanticRelationsUI/src/QmitkLesionTreeModel.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkLesionTreeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkLesionTreeModel.h" @@ -211,7 +207,7 @@ void QmitkLesionTreeModel::SetData() m_ControlPoints = mitk::RelationStorage::GetAllControlPointsOfCase(m_CaseID); // sort the vector of control points for the timeline std::sort(m_ControlPoints.begin(), m_ControlPoints.end()); - + SetLesionData(); SetSelectedDataNodesPresence(); } diff --git a/Modules/SemanticRelationsUI/src/QmitkPatientInfoWidget.cpp b/Modules/SemanticRelationsUI/src/QmitkPatientInfoWidget.cpp index 0f1c9e6099c..a0e769cd51b 100644 --- a/Modules/SemanticRelationsUI/src/QmitkPatientInfoWidget.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkPatientInfoWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPatientInfoWidget.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkPatientTableHeaderView.cpp b/Modules/SemanticRelationsUI/src/QmitkPatientTableHeaderView.cpp index e35970cd00c..4c053d9b93f 100644 --- a/Modules/SemanticRelationsUI/src/QmitkPatientTableHeaderView.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkPatientTableHeaderView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkPatientTableHeaderView.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkPatientTableInspector.cpp b/Modules/SemanticRelationsUI/src/QmitkPatientTableInspector.cpp index 9f8f4d3ca86..6edf5ae5df7 100644 --- a/Modules/SemanticRelationsUI/src/QmitkPatientTableInspector.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkPatientTableInspector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkPatientTableInspector.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkPatientTableModel.cpp b/Modules/SemanticRelationsUI/src/QmitkPatientTableModel.cpp index 2f21156a348..c60140b1c63 100644 --- a/Modules/SemanticRelationsUI/src/QmitkPatientTableModel.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkPatientTableModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkPatientTableModel.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkSemanticRelationsUIHelper.cpp b/Modules/SemanticRelationsUI/src/QmitkSemanticRelationsUIHelper.cpp index 31ba46b7d2a..647de9d1ea0 100644 --- a/Modules/SemanticRelationsUI/src/QmitkSemanticRelationsUIHelper.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkSemanticRelationsUIHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations ui module #include diff --git a/Modules/SemanticRelationsUI/src/QmitkStatisticsCalculator.cpp b/Modules/SemanticRelationsUI/src/QmitkStatisticsCalculator.cpp index ea1892430ec..2b0baa06e09 100644 --- a/Modules/SemanticRelationsUI/src/QmitkStatisticsCalculator.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkStatisticsCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkStatisticsCalculator.h" diff --git a/Modules/SemanticRelationsUI/src/QmitkStatisticsTreeModel.cpp b/Modules/SemanticRelationsUI/src/QmitkStatisticsTreeModel.cpp index 951d225e559..fba6ca57f65 100644 --- a/Modules/SemanticRelationsUI/src/QmitkStatisticsTreeModel.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkStatisticsTreeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkStatisticsTreeModel.h" @@ -216,7 +212,7 @@ void QmitkStatisticsTreeModel::SetData() m_ControlPoints = mitk::RelationStorage::GetAllControlPointsOfCase(m_CaseID); // sort the vector of control points for the timeline std::sort(m_ControlPoints.begin(), m_ControlPoints.end()); - + // get all information types points of current case m_InformationTypes = mitk::RelationStorage::GetAllInformationTypesOfCase(m_CaseID); diff --git a/Modules/SemanticRelationsUI/src/QmitkTableItemThumbnailDelegate.cpp b/Modules/SemanticRelationsUI/src/QmitkTableItemThumbnailDelegate.cpp index 02091ed14d6..14dcc8f776e 100644 --- a/Modules/SemanticRelationsUI/src/QmitkTableItemThumbnailDelegate.cpp +++ b/Modules/SemanticRelationsUI/src/QmitkTableItemThumbnailDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations UI module #include "QmitkTableItemThumbnailDelegate.h" diff --git a/Modules/SemanticRelationsUI/src/mitkModuleActivator.cpp b/Modules/SemanticRelationsUI/src/mitkModuleActivator.cpp index 38148b4e787..dfd9482aab9 100644 --- a/Modules/SemanticRelationsUI/src/mitkModuleActivator.cpp +++ b/Modules/SemanticRelationsUI/src/mitkModuleActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkModuleActivator.h" diff --git a/Modules/SurfaceInterpolation/Testing/mitkComputeContourSetNormalsFilterTest.cpp b/Modules/SurfaceInterpolation/Testing/mitkComputeContourSetNormalsFilterTest.cpp index 4d851cff1d7..059cf09f874 100644 --- a/Modules/SurfaceInterpolation/Testing/mitkComputeContourSetNormalsFilterTest.cpp +++ b/Modules/SurfaceInterpolation/Testing/mitkComputeContourSetNormalsFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/SurfaceInterpolation/Testing/mitkCreateDistanceImageFromSurfaceFilterTest.cpp b/Modules/SurfaceInterpolation/Testing/mitkCreateDistanceImageFromSurfaceFilterTest.cpp index 8ebdca88f2b..e158c5f96a7 100644 --- a/Modules/SurfaceInterpolation/Testing/mitkCreateDistanceImageFromSurfaceFilterTest.cpp +++ b/Modules/SurfaceInterpolation/Testing/mitkCreateDistanceImageFromSurfaceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/SurfaceInterpolation/Testing/mitkImageToPointCloudFilterTest.cpp b/Modules/SurfaceInterpolation/Testing/mitkImageToPointCloudFilterTest.cpp index 4b3c3ced4e7..d8b13f8ecfa 100644 --- a/Modules/SurfaceInterpolation/Testing/mitkImageToPointCloudFilterTest.cpp +++ b/Modules/SurfaceInterpolation/Testing/mitkImageToPointCloudFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/SurfaceInterpolation/Testing/mitkPointCloudScoringFilterTest.cpp b/Modules/SurfaceInterpolation/Testing/mitkPointCloudScoringFilterTest.cpp index fabdf80075a..da1040dde7a 100644 --- a/Modules/SurfaceInterpolation/Testing/mitkPointCloudScoringFilterTest.cpp +++ b/Modules/SurfaceInterpolation/Testing/mitkPointCloudScoringFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTestingMacros.h" #include diff --git a/Modules/SurfaceInterpolation/Testing/mitkReduceContourSetFilterTest.cpp b/Modules/SurfaceInterpolation/Testing/mitkReduceContourSetFilterTest.cpp index a0f650ff203..3625c79c6a0 100644 --- a/Modules/SurfaceInterpolation/Testing/mitkReduceContourSetFilterTest.cpp +++ b/Modules/SurfaceInterpolation/Testing/mitkReduceContourSetFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/SurfaceInterpolation/Testing/mitkSurfaceInterpolationControllerTest.cpp b/Modules/SurfaceInterpolation/Testing/mitkSurfaceInterpolationControllerTest.cpp index 7e912f8f308..882985542c8 100644 --- a/Modules/SurfaceInterpolation/Testing/mitkSurfaceInterpolationControllerTest.cpp +++ b/Modules/SurfaceInterpolation/Testing/mitkSurfaceInterpolationControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/SurfaceInterpolation/mitkComputeContourSetNormalsFilter.cpp b/Modules/SurfaceInterpolation/mitkComputeContourSetNormalsFilter.cpp index efefbcd261e..5793bd362f7 100644 --- a/Modules/SurfaceInterpolation/mitkComputeContourSetNormalsFilter.cpp +++ b/Modules/SurfaceInterpolation/mitkComputeContourSetNormalsFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkComputeContourSetNormalsFilter.h" diff --git a/Modules/SurfaceInterpolation/mitkComputeContourSetNormalsFilter.h b/Modules/SurfaceInterpolation/mitkComputeContourSetNormalsFilter.h index 89723dc0271..d738806bb4c 100644 --- a/Modules/SurfaceInterpolation/mitkComputeContourSetNormalsFilter.h +++ b/Modules/SurfaceInterpolation/mitkComputeContourSetNormalsFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkComputeContourSetNormalsFilter_h_Included #define mitkComputeContourSetNormalsFilter_h_Included diff --git a/Modules/SurfaceInterpolation/mitkCreateDistanceImageFromSurfaceFilter.cpp b/Modules/SurfaceInterpolation/mitkCreateDistanceImageFromSurfaceFilter.cpp index b7bb5d067c4..76bd92b724e 100644 --- a/Modules/SurfaceInterpolation/mitkCreateDistanceImageFromSurfaceFilter.cpp +++ b/Modules/SurfaceInterpolation/mitkCreateDistanceImageFromSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCreateDistanceImageFromSurfaceFilter.h" #include "mitkImageCast.h" diff --git a/Modules/SurfaceInterpolation/mitkCreateDistanceImageFromSurfaceFilter.h b/Modules/SurfaceInterpolation/mitkCreateDistanceImageFromSurfaceFilter.h index ad6c29562d7..559f742de24 100644 --- a/Modules/SurfaceInterpolation/mitkCreateDistanceImageFromSurfaceFilter.h +++ b/Modules/SurfaceInterpolation/mitkCreateDistanceImageFromSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCreateDistanceImageFromSurfaceFilter_h_Included #define mitkCreateDistanceImageFromSurfaceFilter_h_Included diff --git a/Modules/SurfaceInterpolation/mitkImageToPointCloudFilter.cpp b/Modules/SurfaceInterpolation/mitkImageToPointCloudFilter.cpp index 49a0fb4845f..8304b6d8201 100644 --- a/Modules/SurfaceInterpolation/mitkImageToPointCloudFilter.cpp +++ b/Modules/SurfaceInterpolation/mitkImageToPointCloudFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageToPointCloudFilter.h" diff --git a/Modules/SurfaceInterpolation/mitkImageToPointCloudFilter.h b/Modules/SurfaceInterpolation/mitkImageToPointCloudFilter.h index efb1061d3e3..767d7050975 100644 --- a/Modules/SurfaceInterpolation/mitkImageToPointCloudFilter.h +++ b/Modules/SurfaceInterpolation/mitkImageToPointCloudFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkImageToPointCloudFilter_h_Included #define mitkImageToPointCloudFilter_h_Included diff --git a/Modules/SurfaceInterpolation/mitkPlaneProposer.cpp b/Modules/SurfaceInterpolation/mitkPlaneProposer.cpp index e04b7c34842..9a48aca7fbc 100644 --- a/Modules/SurfaceInterpolation/mitkPlaneProposer.cpp +++ b/Modules/SurfaceInterpolation/mitkPlaneProposer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlaneProposer.h" diff --git a/Modules/SurfaceInterpolation/mitkPlaneProposer.h b/Modules/SurfaceInterpolation/mitkPlaneProposer.h index 88b5a5e7534..4cc52b12ee4 100644 --- a/Modules/SurfaceInterpolation/mitkPlaneProposer.h +++ b/Modules/SurfaceInterpolation/mitkPlaneProposer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLANEPROPOSER_H #define MITKPLANEPROPOSER_H diff --git a/Modules/SurfaceInterpolation/mitkPointCloudScoringFilter.cpp b/Modules/SurfaceInterpolation/mitkPointCloudScoringFilter.cpp index 4485c46a883..3da5b53c42c 100644 --- a/Modules/SurfaceInterpolation/mitkPointCloudScoringFilter.cpp +++ b/Modules/SurfaceInterpolation/mitkPointCloudScoringFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPointCloudScoringFilter.h" diff --git a/Modules/SurfaceInterpolation/mitkPointCloudScoringFilter.h b/Modules/SurfaceInterpolation/mitkPointCloudScoringFilter.h index 7b1cdaf3a86..428c56d5c22 100644 --- a/Modules/SurfaceInterpolation/mitkPointCloudScoringFilter.h +++ b/Modules/SurfaceInterpolation/mitkPointCloudScoringFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkPointCloudScoringFilter_h_Included #define mitkPointCloudScoringFilter_h_Included diff --git a/Modules/SurfaceInterpolation/mitkReduceContourSetFilter.cpp b/Modules/SurfaceInterpolation/mitkReduceContourSetFilter.cpp index 011c4138baf..d8b3ccf9f33 100644 --- a/Modules/SurfaceInterpolation/mitkReduceContourSetFilter.cpp +++ b/Modules/SurfaceInterpolation/mitkReduceContourSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkReduceContourSetFilter.h" diff --git a/Modules/SurfaceInterpolation/mitkReduceContourSetFilter.h b/Modules/SurfaceInterpolation/mitkReduceContourSetFilter.h index 00baabb66d3..07d56331532 100644 --- a/Modules/SurfaceInterpolation/mitkReduceContourSetFilter.h +++ b/Modules/SurfaceInterpolation/mitkReduceContourSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkReduceContourSetFilter_h_Included #define mitkReduceContourSetFilter_h_Included diff --git a/Modules/SurfaceInterpolation/mitkSurfaceBasedInterpolationController.cpp b/Modules/SurfaceInterpolation/mitkSurfaceBasedInterpolationController.cpp index 76fd27334c4..2c511af95f9 100644 --- a/Modules/SurfaceInterpolation/mitkSurfaceBasedInterpolationController.cpp +++ b/Modules/SurfaceInterpolation/mitkSurfaceBasedInterpolationController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceBasedInterpolationController.h" diff --git a/Modules/SurfaceInterpolation/mitkSurfaceBasedInterpolationController.h b/Modules/SurfaceInterpolation/mitkSurfaceBasedInterpolationController.h index 5faa2528413..8fe9dc9e603 100644 --- a/Modules/SurfaceInterpolation/mitkSurfaceBasedInterpolationController.h +++ b/Modules/SurfaceInterpolation/mitkSurfaceBasedInterpolationController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSurfaceBasedInterpolationController_h_Included #define mitkSurfaceBasedInterpolationController_h_Included diff --git a/Modules/SurfaceInterpolation/mitkSurfaceInterpolationController.cpp b/Modules/SurfaceInterpolation/mitkSurfaceInterpolationController.cpp index c4448d8ea3d..ced9997dbfa 100644 --- a/Modules/SurfaceInterpolation/mitkSurfaceInterpolationController.cpp +++ b/Modules/SurfaceInterpolation/mitkSurfaceInterpolationController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkSurfaceInterpolationController.h" #include "mitkImageAccessByItk.h" diff --git a/Modules/SurfaceInterpolation/mitkSurfaceInterpolationController.h b/Modules/SurfaceInterpolation/mitkSurfaceInterpolationController.h index 4c5d2b2a09f..7467baf865f 100644 --- a/Modules/SurfaceInterpolation/mitkSurfaceInterpolationController.h +++ b/Modules/SurfaceInterpolation/mitkSurfaceInterpolationController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkSurfaceInterpolationController_h_Included #define mitkSurfaceInterpolationController_h_Included diff --git a/Modules/ToFHardware/Kinect/Testing/mitkKinectControllerTest.cpp b/Modules/ToFHardware/Kinect/Testing/mitkKinectControllerTest.cpp index 40ca4531ba0..bc177c38d16 100644 --- a/Modules/ToFHardware/Kinect/Testing/mitkKinectControllerTest.cpp +++ b/Modules/ToFHardware/Kinect/Testing/mitkKinectControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Kinect/Testing/mitkKinectDeviceTest.cpp b/Modules/ToFHardware/Kinect/Testing/mitkKinectDeviceTest.cpp index dea7815aded..ee80d7d788a 100644 --- a/Modules/ToFHardware/Kinect/Testing/mitkKinectDeviceTest.cpp +++ b/Modules/ToFHardware/Kinect/Testing/mitkKinectDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Kinect/mitkKinectActivator.cpp b/Modules/ToFHardware/Kinect/mitkKinectActivator.cpp index 0eab1589872..84f4d3260ea 100644 --- a/Modules/ToFHardware/Kinect/mitkKinectActivator.cpp +++ b/Modules/ToFHardware/Kinect/mitkKinectActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkKinectActivator_h #define __mitkKinectActivator_h diff --git a/Modules/ToFHardware/Kinect/mitkKinectController.cpp b/Modules/ToFHardware/Kinect/mitkKinectController.cpp index 1c9e325427c..5bd71def704 100644 --- a/Modules/ToFHardware/Kinect/mitkKinectController.cpp +++ b/Modules/ToFHardware/Kinect/mitkKinectController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkKinectController.h" #include diff --git a/Modules/ToFHardware/Kinect/mitkKinectController.h b/Modules/ToFHardware/Kinect/mitkKinectController.h index a6c6c48a48e..d20320eaa5b 100644 --- a/Modules/ToFHardware/Kinect/mitkKinectController.h +++ b/Modules/ToFHardware/Kinect/mitkKinectController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkKinectController_h #define __mitkKinectController_h diff --git a/Modules/ToFHardware/Kinect/mitkKinectDevice.cpp b/Modules/ToFHardware/Kinect/mitkKinectDevice.cpp index bc259a1855e..8b1ac51249a 100644 --- a/Modules/ToFHardware/Kinect/mitkKinectDevice.cpp +++ b/Modules/ToFHardware/Kinect/mitkKinectDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkKinectDevice.h" #include diff --git a/Modules/ToFHardware/Kinect/mitkKinectDevice.h b/Modules/ToFHardware/Kinect/mitkKinectDevice.h index 8eba3953cbf..5e223eed8af 100644 --- a/Modules/ToFHardware/Kinect/mitkKinectDevice.h +++ b/Modules/ToFHardware/Kinect/mitkKinectDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkKinectDevice_h #define __mitkKinectDevice_h diff --git a/Modules/ToFHardware/Kinect/mitkKinectDeviceFactory.cpp b/Modules/ToFHardware/Kinect/mitkKinectDeviceFactory.cpp index 8db02cb5084..2d4ea197411 100644 --- a/Modules/ToFHardware/Kinect/mitkKinectDeviceFactory.cpp +++ b/Modules/ToFHardware/Kinect/mitkKinectDeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkKinectDeviceFactory.h" diff --git a/Modules/ToFHardware/Kinect/mitkKinectDeviceFactory.h b/Modules/ToFHardware/Kinect/mitkKinectDeviceFactory.h index edd684383ab..8d095218c5c 100644 --- a/Modules/ToFHardware/Kinect/mitkKinectDeviceFactory.h +++ b/Modules/ToFHardware/Kinect/mitkKinectDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkKinectDeviceFactory_h #define __mitkKinectDeviceFactory_h diff --git a/Modules/ToFHardware/KinectV2/Testing/mitkKinect2ControllerTest.cpp b/Modules/ToFHardware/KinectV2/Testing/mitkKinect2ControllerTest.cpp index c48f29299b4..e00a535be32 100644 --- a/Modules/ToFHardware/KinectV2/Testing/mitkKinect2ControllerTest.cpp +++ b/Modules/ToFHardware/KinectV2/Testing/mitkKinect2ControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/KinectV2/mitkKinectV2Activator.cpp b/Modules/ToFHardware/KinectV2/mitkKinectV2Activator.cpp index 7fadac10938..79e1a543580 100644 --- a/Modules/ToFHardware/KinectV2/mitkKinectV2Activator.cpp +++ b/Modules/ToFHardware/KinectV2/mitkKinectV2Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkKinectV2Activator_h #define __mitkKinectV2Activator_h diff --git a/Modules/ToFHardware/KinectV2/mitkKinectV2Controller.cpp b/Modules/ToFHardware/KinectV2/mitkKinectV2Controller.cpp index 9b0554082b7..ea316ec9150 100644 --- a/Modules/ToFHardware/KinectV2/mitkKinectV2Controller.cpp +++ b/Modules/ToFHardware/KinectV2/mitkKinectV2Controller.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkKinectV2Controller.h" //Kinect V2 SDK diff --git a/Modules/ToFHardware/KinectV2/mitkKinectV2Controller.h b/Modules/ToFHardware/KinectV2/mitkKinectV2Controller.h index d01dfef12de..a6288573adf 100644 --- a/Modules/ToFHardware/KinectV2/mitkKinectV2Controller.h +++ b/Modules/ToFHardware/KinectV2/mitkKinectV2Controller.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkKinectV2Controller_h #define __mitkKinectV2Controller_h diff --git a/Modules/ToFHardware/KinectV2/mitkKinectV2Device.cpp b/Modules/ToFHardware/KinectV2/mitkKinectV2Device.cpp index c2fcb0c689a..99bebc8daab 100644 --- a/Modules/ToFHardware/KinectV2/mitkKinectV2Device.cpp +++ b/Modules/ToFHardware/KinectV2/mitkKinectV2Device.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkKinectV2Device.h" diff --git a/Modules/ToFHardware/KinectV2/mitkKinectV2Device.h b/Modules/ToFHardware/KinectV2/mitkKinectV2Device.h index 1cd03a0a69c..893edbfd3b6 100644 --- a/Modules/ToFHardware/KinectV2/mitkKinectV2Device.h +++ b/Modules/ToFHardware/KinectV2/mitkKinectV2Device.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkKinectV2Device_h #define __mitkKinectV2Device_h diff --git a/Modules/ToFHardware/KinectV2/mitkKinectV2DeviceFactory.cpp b/Modules/ToFHardware/KinectV2/mitkKinectV2DeviceFactory.cpp index c2ebb63a556..382be2d781b 100644 --- a/Modules/ToFHardware/KinectV2/mitkKinectV2DeviceFactory.cpp +++ b/Modules/ToFHardware/KinectV2/mitkKinectV2DeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkKinectV2DeviceFactory.h" diff --git a/Modules/ToFHardware/KinectV2/mitkKinectV2DeviceFactory.h b/Modules/ToFHardware/KinectV2/mitkKinectV2DeviceFactory.h index 9611248723a..95bcb3514d8 100644 --- a/Modules/ToFHardware/KinectV2/mitkKinectV2DeviceFactory.h +++ b/Modules/ToFHardware/KinectV2/mitkKinectV2DeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkKinectV2DeviceFactory_h #define __mitkKinectV2DeviceFactory_h diff --git a/Modules/ToFHardware/MesaSR4000/mitkToDCameraMESASR4000ModuleActivator.cpp b/Modules/ToFHardware/MesaSR4000/mitkToDCameraMESASR4000ModuleActivator.cpp index 79ef12f86c4..3708e4f7009 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToDCameraMESASR4000ModuleActivator.cpp +++ b/Modules/ToFHardware/MesaSR4000/mitkToDCameraMESASR4000ModuleActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkMESASR4000Activator_h #define __mitkMESASR4000Activator_h diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESAController.cpp b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESAController.cpp index e70fe3c957c..06f7fcd318a 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESAController.cpp +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESAController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraMESAController.h" #include #include diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESAController.h b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESAController.h index 35ccca24281..2ea541d6265 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESAController.h +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESAController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraMESAController_h #define __mitkToFCameraMESAController_h diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESADevice.cpp b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESADevice.cpp index e2cc6230b15..e7c68d86426 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESADevice.cpp +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESADevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraMESADevice.h" #include "mitkRealTimeClock.h" diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESADevice.h b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESADevice.h index 5ef5cdca584..0bcff480503 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESADevice.h +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESADevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraMESADevice_h #define __mitkToFCameraMESADevice_h diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Controller.cpp b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Controller.cpp index 1dea2ffd1e8..1c1abd5c44f 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Controller.cpp +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Controller.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraMESASR4000Controller.h" #include "mitkToFConfig.h" #include diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Controller.h b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Controller.h index d091c6c0c93..84cf8836cfa 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Controller.h +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Controller.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraMESASR4000Controller_h #define __mitkToFCameraMESASR4000Controller_h diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Device.cpp b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Device.cpp index 0c08091b719..150ef0ddb85 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Device.cpp +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Device.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraMESASR4000Device.h" #include "mitkToFCameraMESASR4000Controller.h" #include "mitkRealTimeClock.h" diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Device.h b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Device.h index 747cc59410c..4eb57a90fc9 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Device.h +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000Device.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraMESASR4000Device_h #define __mitkToFCameraMESASR4000Device_h diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000DeviceFactory.cpp b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000DeviceFactory.cpp index f84a0cb7420..dc4b667f920 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000DeviceFactory.cpp +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000DeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraMESASR4000DeviceFactory.h" diff --git a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000DeviceFactory.h b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000DeviceFactory.h index bae15b45476..22dede3c2f4 100644 --- a/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000DeviceFactory.h +++ b/Modules/ToFHardware/MesaSR4000/mitkToFCameraMESASR4000DeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraMESASR4000DeviceFactory_h #define __mitkToFCameraMESASR4000DeviceFactory_h diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamBoardControllerTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamBoardControllerTest.cpp index a74e67c3847..cdef919c0fc 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamBoardControllerTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamBoardControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamBoardDeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamBoardDeviceTest.cpp index a4583a70e47..030134b7c42 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamBoardDeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamBoardDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamCubeControllerTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamCubeControllerTest.cpp index f28f54bad6a..fe1ae63c3a9 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamCubeControllerTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamCubeControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamCubeDeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamCubeDeviceTest.cpp index a3b92fe053d..000e2dbbc0b 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamCubeDeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDCamCubeDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDControllerTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDControllerTest.cpp index f97061a8932..13817d07283 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDControllerTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDDeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDDeviceTest.cpp index a5033dd6321..a70ae5c1805 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDDeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDMITKPlayerControllerTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDMITKPlayerControllerTest.cpp index 0f6a8ff5342..0a86e43654e 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDMITKPlayerControllerTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDMITKPlayerControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDMITKPlayerDeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDMITKPlayerDeviceTest.cpp index fa6cd8fdb7e..c5fd2504c90 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDMITKPlayerDeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDMITKPlayerDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDO3ControllerTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDO3ControllerTest.cpp index 870931328b6..cbdb2f094cf 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDO3ControllerTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDO3ControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDO3DeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDO3DeviceTest.cpp index 1daa35385ca..cc17e9a700c 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDO3DeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDO3DeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDPlayerControllerTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDPlayerControllerTest.cpp index fdb5132e7e2..67bd86edcde 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDPlayerControllerTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDPlayerControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFConfig.h" #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDPlayerDeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDPlayerDeviceTest.cpp index 25977cfb481..75180f7650c 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDPlayerDeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDPlayerDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataCamBoardDeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataCamBoardDeviceTest.cpp index 8d846737474..6ecdd1832e5 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataCamBoardDeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataCamBoardDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataCamCubeDeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataCamCubeDeviceTest.cpp index c5fb71ab34a..a27f561bafc 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataCamCubeDeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataCamCubeDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataDeviceTest.cpp b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataDeviceTest.cpp index 2e4ded7324c..b6789ce2439 100644 --- a/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataDeviceTest.cpp +++ b/Modules/ToFHardware/PMD/Testing/mitkToFCameraPMDRawDataDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/PMD/mitkPMDModuleActivator.cpp b/Modules/ToFHardware/PMD/mitkPMDModuleActivator.cpp index 6ccf9eb310b..1bdef5a9a1f 100644 --- a/Modules/ToFHardware/PMD/mitkPMDModuleActivator.cpp +++ b/Modules/ToFHardware/PMD/mitkPMDModuleActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDModuleActivator_h #define __mitkToFCameraPMDModuleActivator_h diff --git a/Modules/ToFHardware/PMD/mitkThreadedToFRawDataReconstruction.cpp b/Modules/ToFHardware/PMD/mitkThreadedToFRawDataReconstruction.cpp index cb9de7fd474..1f38935e309 100644 --- a/Modules/ToFHardware/PMD/mitkThreadedToFRawDataReconstruction.cpp +++ b/Modules/ToFHardware/PMD/mitkThreadedToFRawDataReconstruction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include "mitkThreadedToFRawDataReconstruction.h" #include "mitkITKImageImport.h" diff --git a/Modules/ToFHardware/PMD/mitkThreadedToFRawDataReconstruction.h b/Modules/ToFHardware/PMD/mitkThreadedToFRawDataReconstruction.h index 1258f369d1f..a0aa1d6cf65 100644 --- a/Modules/ToFHardware/PMD/mitkThreadedToFRawDataReconstruction.h +++ b/Modules/ToFHardware/PMD/mitkThreadedToFRawDataReconstruction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkThreadedToFRawDataReconstruction_h #define __mitkThreadedToFRawDataReconstruction_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardController.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardController.cpp index f741df10539..f9dbed866d8 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardController.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDCamBoardController.h" #include "mitkToFConfig.h" #include diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardController.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardController.h index e023c15efdb..69d5eb2d777 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardController.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDCamBoardController_h #define __mitkToFCameraPMDCamBoardController_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDevice.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDevice.cpp index 9c28501f666..23b80c415bf 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDevice.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDCamBoardDevice.h" #include "mitkToFCameraPMDCamBoardController.h" #include "mitkRealTimeClock.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDevice.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDevice.h index 87bc748e257..f162feed418 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDevice.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDCamBoardDevice_h #define __mitkToFCameraPMDCamBoardDevice_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDeviceFactory.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDeviceFactory.cpp index 991e3e73069..3f728bc8381 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDeviceFactory.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDCamBoardDeviceFactory.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDeviceFactory.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDeviceFactory.h index 66fcdb2c903..df467c3524d 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDeviceFactory.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamBoardDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDCamBoardDeviceFactory_h #define __mitkToFCameraPMDCamBoardDeviceFactory_h @@ -47,7 +43,7 @@ class MITKPMD_EXPORT ToFCameraPMDCamBoardDeviceFactory : public itk::LightObject { } /*! - \brief Defining the Factorie´s Name, here for the ToFPMDCamBoard. + \brief Defining the Factorie´s Name, here for the ToFPMDCamBoard. */ std::string GetFactoryName() { diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeController.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeController.cpp index f9d8f2d91ca..43d346b7a60 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeController.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDCamCubeController.h" #include "mitkToFConfig.h" #include "mitkToFPMDConfig.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeController.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeController.h index 6d6687701c8..1167a8930b8 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeController.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDCamCubeController_h #define __mitkToFCameraPMDCamCubeController_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDevice.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDevice.cpp index 47ce3db3f3e..a44faa73935 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDevice.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDCamCubeDevice.h" #include "mitkRealTimeClock.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDevice.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDevice.h index 45608aa251d..674431b86ae 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDevice.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDCamCubeDevice_h #define __mitkToFCameraPMDCamCubeDevice_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDeviceFactory.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDeviceFactory.cpp index 179004429c5..8b93addea0c 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDeviceFactory.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDCamCubeDeviceFactory.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDeviceFactory.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDeviceFactory.h index 396dfcb9605..c0a477c0fa7 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDeviceFactory.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDCamCubeDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDCamCubeDeviceFactory_h #define __mitkToFCameraPMDCamCubeDeviceFactory_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDController.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDController.cpp index facc6438c69..bdd5413cedf 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDController.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDController.h" #include #include diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDController.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDController.h index 02989d0d129..4f2c782d682 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDController.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDController_h #define __mitkToFCameraPMDController_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDDevice.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDDevice.cpp index 596a8ce0996..95501c41ee6 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDDevice.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDDevice.h" #include "mitkRealTimeClock.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDDevice.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDDevice.h index cf31083eeca..a91a7326e58 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDDevice.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDDevice_h #define __mitkToFCameraPMDDevice_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Controller.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Controller.cpp index 8d97edffb84..b220293103f 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Controller.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Controller.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDO3Controller.h" #include #include "mitkToFConfig.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Controller.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Controller.h index 8deae6767ba..aa66e5a3d5c 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Controller.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Controller.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDO3Controller_h #define __mitkToFCameraPMDO3Controller_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Device.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Device.cpp index 91b3039a1f1..25dd6232820 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Device.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Device.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDO3Device.h" #include "mitkToFCameraPMDO3Controller.h" #include "mitkRealTimeClock.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Device.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Device.h index 1dd66274105..f456ff5038e 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Device.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3Device.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDO3Device_h #define __mitkToFCameraPMDO3Device_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3DeviceFactory.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3DeviceFactory.cpp index aed83b396e8..3eb82506e74 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3DeviceFactory.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3DeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDO3DeviceFactory.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3DeviceFactory.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3DeviceFactory.h index 6b570d6fcf4..cbd7fdc034b 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDO3DeviceFactory.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDO3DeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDO3DeviceFactory_h #define __mitkToFCameraPMDO3DeviceFactory_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerController.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerController.cpp index aea475cd95c..f9320a798c6 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerController.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDPlayerController.h" #include #include diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerController.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerController.h index 93a31e6dff5..69d1e79da94 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerController.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDPlayerController_h #define __mitkToFCameraPMDPlayerController_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDevice.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDevice.cpp index 33aa3bb8ab5..5e49feb5651 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDevice.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDPlayerDevice.h" #include "mitkToFCameraPMDPlayerController.h" #include "itkMultiThreader.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDevice.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDevice.h index a6f7ac4d925..6a0583fef96 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDevice.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDPlayerDevice_h #define __mitkToFCameraPMDPlayerDevice_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDeviceFactory.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDeviceFactory.cpp index 09a5bb0cfa2..3fbbe5770d1 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDeviceFactory.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDPlayerDeviceFactory.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDeviceFactory.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDeviceFactory.h index b9a910a78a4..816cc0cda94 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDeviceFactory.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDPlayerDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDPlayerDeviceFactory_h #define __mitkToFCameraPMDPlayerDeviceFactory_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDevice.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDevice.cpp index 7e573eb7b60..aeb0bd6e4e9 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDevice.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDRawDataCamBoardDevice.h" #include "mitkToFCameraPMDCamBoardController.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDevice.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDevice.h index ca85cf6977f..abbb73f6826 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDevice.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDRawDataCamBoardDevice_h #define __mitkToFCameraPMDRawDataCamBoardDevice_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDeviceFactory.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDeviceFactory.cpp index 4091cb5c6d4..8cc9164b01c 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDeviceFactory.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDRawDataCamBoardDeviceFactory.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDeviceFactory.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDeviceFactory.h index 1473a23dd02..6e1a97f5861 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDeviceFactory.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamBoardDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDRawDataCamBoardDeviceFactory_h #define __mitkToFCameraPMDRawDataCamBoardDeviceFactory_h @@ -49,7 +45,7 @@ class MITKPMD_EXPORT ToFCameraPMDRawDataCamBoardDeviceFactory : public itk::Ligh } /*! - \brief Defining the Factorie´s Name, here for the RawDataCamBoardDeviceFactory. + \brief Defining the Factorie´s Name, here for the RawDataCamBoardDeviceFactory. */ std::string GetFactoryName() { diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDevice.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDevice.cpp index be7da17d1d4..25689c8ced2 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDevice.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDRawDataCamCubeDevice.h" #include "mitkToFCameraPMDCamCubeController.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDevice.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDevice.h index b2fe8a3f836..30378ef46e4 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDevice.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDRawDataCamCubeDevice_h #define __mitkToFCameraPMDRawDataCamCubeDevice_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDeviceFactory.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDeviceFactory.cpp index 8602123d347..d082861625d 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDeviceFactory.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDRawDataCamCubeDeviceFactory.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDeviceFactory.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDeviceFactory.h index 00f668a598a..a7d4e796ad8 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDeviceFactory.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataCamCubeDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDRawDataCamCubeDeviceFactory_h #define __mitkToFCameraPMDRawDataCamCubeDeviceFactory_h diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataDevice.cpp b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataDevice.cpp index aadc82e372e..86ae507dc65 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataDevice.cpp +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraPMDRawDataDevice.h" #include "mitkRealTimeClock.h" diff --git a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataDevice.h b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataDevice.h index 2c21d423b69..b5f2c7dc563 100644 --- a/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataDevice.h +++ b/Modules/ToFHardware/PMD/mitkToFCameraPMDRawDataDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraPMDRawDataDevice_h #define __mitkToFCameraPMDRawDataDevice_h diff --git a/Modules/ToFHardware/Testing/mitkAbstractToFDeviceFactoryTest.cpp b/Modules/ToFHardware/Testing/mitkAbstractToFDeviceFactoryTest.cpp index 213fabf9e88..a4c2ee282a1 100644 --- a/Modules/ToFHardware/Testing/mitkAbstractToFDeviceFactoryTest.cpp +++ b/Modules/ToFHardware/Testing/mitkAbstractToFDeviceFactoryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkPlayerLoadAndRenderDepthDataTest.cpp b/Modules/ToFHardware/Testing/mitkPlayerLoadAndRenderDepthDataTest.cpp index 527503c5751..00110c517cc 100644 --- a/Modules/ToFHardware/Testing/mitkPlayerLoadAndRenderDepthDataTest.cpp +++ b/Modules/ToFHardware/Testing/mitkPlayerLoadAndRenderDepthDataTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //MITK #include "mitkTestingMacros.h" @@ -106,4 +102,4 @@ int mitkPlayerLoadAndRenderDepthDataTest(int argc, char* argv[]) } MITK_TEST_END(); -} \ No newline at end of file +} diff --git a/Modules/ToFHardware/Testing/mitkPlayerLoadAndRenderRGBDataTest.cpp b/Modules/ToFHardware/Testing/mitkPlayerLoadAndRenderRGBDataTest.cpp index 69757d567ab..a82aa040e45 100644 --- a/Modules/ToFHardware/Testing/mitkPlayerLoadAndRenderRGBDataTest.cpp +++ b/Modules/ToFHardware/Testing/mitkPlayerLoadAndRenderRGBDataTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //MITK #include "mitkTestingMacros.h" diff --git a/Modules/ToFHardware/Testing/mitkThreadedToFRawDataReconstructionTest.cpp b/Modules/ToFHardware/Testing/mitkThreadedToFRawDataReconstructionTest.cpp index 90289223aeb..305943fa573 100644 --- a/Modules/ToFHardware/Testing/mitkThreadedToFRawDataReconstructionTest.cpp +++ b/Modules/ToFHardware/Testing/mitkThreadedToFRawDataReconstructionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkThreadedToFRawDataReconstruction.h" diff --git a/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerControllerTest.cpp b/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerControllerTest.cpp index 2930c7feea5..e5f521c1964 100644 --- a/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerControllerTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerControllerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerDeviceFactoryTest.cpp b/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerDeviceFactoryTest.cpp index 17124c13577..89f678e79ae 100644 --- a/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerDeviceFactoryTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerDeviceFactoryTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerDeviceTest.cpp b/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerDeviceTest.cpp index 808b75258ef..9d7dcbb15cd 100644 --- a/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerDeviceTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFCameraMITKPlayerDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkToFImageCsvWriterTest.cpp b/Modules/ToFHardware/Testing/mitkToFImageCsvWriterTest.cpp index 5237d05ca18..8eb1662f785 100644 --- a/Modules/ToFHardware/Testing/mitkToFImageCsvWriterTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFImageCsvWriterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkToFImageGrabberTest.cpp b/Modules/ToFHardware/Testing/mitkToFImageGrabberTest.cpp index 9b190af3a01..177d50a7a29 100644 --- a/Modules/ToFHardware/Testing/mitkToFImageGrabberTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFImageGrabberTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkToFImageRecorderFilterTest.cpp b/Modules/ToFHardware/Testing/mitkToFImageRecorderFilterTest.cpp index 1815dd27360..1b61990333f 100644 --- a/Modules/ToFHardware/Testing/mitkToFImageRecorderFilterTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFImageRecorderFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ToFHardware/Testing/mitkToFImageRecorderTest.cpp b/Modules/ToFHardware/Testing/mitkToFImageRecorderTest.cpp index bb8480a8bc7..aee449e21f7 100644 --- a/Modules/ToFHardware/Testing/mitkToFImageRecorderTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFImageRecorderTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkToFImageWriterTest.cpp b/Modules/ToFHardware/Testing/mitkToFImageWriterTest.cpp index d869012ccfb..85aeebe0b0a 100644 --- a/Modules/ToFHardware/Testing/mitkToFImageWriterTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFImageWriterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkToFNrrdImageWriterTest.cpp b/Modules/ToFHardware/Testing/mitkToFNrrdImageWriterTest.cpp index be86c4ff1b3..7c0e6cd1120 100644 --- a/Modules/ToFHardware/Testing/mitkToFNrrdImageWriterTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFNrrdImageWriterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/Testing/mitkToFOpenCVImageGrabberTest.cpp b/Modules/ToFHardware/Testing/mitkToFOpenCVImageGrabberTest.cpp index ab31e520b82..fec7edbeea6 100644 --- a/Modules/ToFHardware/Testing/mitkToFOpenCVImageGrabberTest.cpp +++ b/Modules/ToFHardware/Testing/mitkToFOpenCVImageGrabberTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/mitkAbstractToFDeviceFactory.cpp b/Modules/ToFHardware/mitkAbstractToFDeviceFactory.cpp index 8a1de8ce7a2..383feb2ae08 100644 --- a/Modules/ToFHardware/mitkAbstractToFDeviceFactory.cpp +++ b/Modules/ToFHardware/mitkAbstractToFDeviceFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAbstractToFDeviceFactory.h" #include #include diff --git a/Modules/ToFHardware/mitkAbstractToFDeviceFactory.h b/Modules/ToFHardware/mitkAbstractToFDeviceFactory.h index c24a70ce422..c4432a3340b 100644 --- a/Modules/ToFHardware/mitkAbstractToFDeviceFactory.h +++ b/Modules/ToFHardware/mitkAbstractToFDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkAbstractToFDeviceFactory_h #define __mitkAbstractToFDeviceFactory_h diff --git a/Modules/ToFHardware/mitkIToFDeviceFactory.cpp b/Modules/ToFHardware/mitkIToFDeviceFactory.cpp index 649f0e4fc60..63845635aa9 100644 --- a/Modules/ToFHardware/mitkIToFDeviceFactory.cpp +++ b/Modules/ToFHardware/mitkIToFDeviceFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIToFDeviceFactory.h" diff --git a/Modules/ToFHardware/mitkIToFDeviceFactory.h b/Modules/ToFHardware/mitkIToFDeviceFactory.h index f0e0dbf7aa4..092829eace5 100644 --- a/Modules/ToFHardware/mitkIToFDeviceFactory.h +++ b/Modules/ToFHardware/mitkIToFDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkIToFDeviceFactory_h #define __mitkIToFDeviceFactory_h diff --git a/Modules/ToFHardware/mitkToFCameraDevice.cpp b/Modules/ToFHardware/mitkToFCameraDevice.cpp index bf5d979cbaf..780f44b8f03 100644 --- a/Modules/ToFHardware/mitkToFCameraDevice.cpp +++ b/Modules/ToFHardware/mitkToFCameraDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraDevice.h" #include diff --git a/Modules/ToFHardware/mitkToFCameraDevice.h b/Modules/ToFHardware/mitkToFCameraDevice.h index dc7646a7f98..80e74ed18e0 100644 --- a/Modules/ToFHardware/mitkToFCameraDevice.h +++ b/Modules/ToFHardware/mitkToFCameraDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraDevice_h #define __mitkToFCameraDevice_h diff --git a/Modules/ToFHardware/mitkToFCameraMITKPlayerController.cpp b/Modules/ToFHardware/mitkToFCameraMITKPlayerController.cpp index cb8e9303829..c09e18eaa6d 100644 --- a/Modules/ToFHardware/mitkToFCameraMITKPlayerController.cpp +++ b/Modules/ToFHardware/mitkToFCameraMITKPlayerController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/mitkToFCameraMITKPlayerController.h b/Modules/ToFHardware/mitkToFCameraMITKPlayerController.h index 9daeed0b3b8..7936bbb7ea4 100644 --- a/Modules/ToFHardware/mitkToFCameraMITKPlayerController.h +++ b/Modules/ToFHardware/mitkToFCameraMITKPlayerController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraMITKPlayerController_h #define __mitkToFCameraMITKPlayerController_h diff --git a/Modules/ToFHardware/mitkToFCameraMITKPlayerDevice.cpp b/Modules/ToFHardware/mitkToFCameraMITKPlayerDevice.cpp index 8237c94062e..1ea0743577d 100644 --- a/Modules/ToFHardware/mitkToFCameraMITKPlayerDevice.cpp +++ b/Modules/ToFHardware/mitkToFCameraMITKPlayerDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraMITKPlayerDevice.h" #include "mitkToFCameraMITKPlayerController.h" #include "mitkRealTimeClock.h" diff --git a/Modules/ToFHardware/mitkToFCameraMITKPlayerDevice.h b/Modules/ToFHardware/mitkToFCameraMITKPlayerDevice.h index d386e329b97..cb44e589860 100644 --- a/Modules/ToFHardware/mitkToFCameraMITKPlayerDevice.h +++ b/Modules/ToFHardware/mitkToFCameraMITKPlayerDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraMITKPlayerDevice_h #define __mitkToFCameraMITKPlayerDevice_h diff --git a/Modules/ToFHardware/mitkToFCameraMITKPlayerDeviceFactory.cpp b/Modules/ToFHardware/mitkToFCameraMITKPlayerDeviceFactory.cpp index 806165a2998..2a46f7817c7 100644 --- a/Modules/ToFHardware/mitkToFCameraMITKPlayerDeviceFactory.cpp +++ b/Modules/ToFHardware/mitkToFCameraMITKPlayerDeviceFactory.cpp @@ -1,16 +1,12 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFCameraMITKPlayerDeviceFactory.h" diff --git a/Modules/ToFHardware/mitkToFCameraMITKPlayerDeviceFactory.h b/Modules/ToFHardware/mitkToFCameraMITKPlayerDeviceFactory.h index 5890f09bd15..cf4e0bf6c0c 100644 --- a/Modules/ToFHardware/mitkToFCameraMITKPlayerDeviceFactory.h +++ b/Modules/ToFHardware/mitkToFCameraMITKPlayerDeviceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCameraMITKPlayerDeviceFactory_h #define __mitkToFCameraMITKPlayerDeviceFactory_h diff --git a/Modules/ToFHardware/mitkToFDebugHelper.h b/Modules/ToFHardware/mitkToFDebugHelper.h index ae9f4ea4308..164bbca00a3 100644 --- a/Modules/ToFHardware/mitkToFDebugHelper.h +++ b/Modules/ToFHardware/mitkToFDebugHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include //#include namespace mitk diff --git a/Modules/ToFHardware/mitkToFImageCsvWriter.h b/Modules/ToFHardware/mitkToFImageCsvWriter.h index 017e6b840cc..19d97b9df70 100644 --- a/Modules/ToFHardware/mitkToFImageCsvWriter.h +++ b/Modules/ToFHardware/mitkToFImageCsvWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFImageCsvWriter_h #define __mitkToFImageCsvWriter_h diff --git a/Modules/ToFHardware/mitkToFImageGrabber.cpp b/Modules/ToFHardware/mitkToFImageGrabber.cpp index 19d9b7a3adf..364d8b2f474 100644 --- a/Modules/ToFHardware/mitkToFImageGrabber.cpp +++ b/Modules/ToFHardware/mitkToFImageGrabber.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFImageGrabber.h" #include #include diff --git a/Modules/ToFHardware/mitkToFImageGrabber.h b/Modules/ToFHardware/mitkToFImageGrabber.h index 90fc813cb61..c14d79f6b7e 100644 --- a/Modules/ToFHardware/mitkToFImageGrabber.h +++ b/Modules/ToFHardware/mitkToFImageGrabber.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFImageGrabber_h #define __mitkToFImageGrabber_h diff --git a/Modules/ToFHardware/mitkToFImageRecorder.cpp b/Modules/ToFHardware/mitkToFImageRecorder.cpp index 07afe37c0e0..f037ea17423 100644 --- a/Modules/ToFHardware/mitkToFImageRecorder.cpp +++ b/Modules/ToFHardware/mitkToFImageRecorder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFImageRecorder.h" #include #include diff --git a/Modules/ToFHardware/mitkToFImageRecorder.h b/Modules/ToFHardware/mitkToFImageRecorder.h index e349cf974a1..cb86cb46dee 100644 --- a/Modules/ToFHardware/mitkToFImageRecorder.h +++ b/Modules/ToFHardware/mitkToFImageRecorder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkToFImageRecorder_h #define mitkToFImageRecorder_h diff --git a/Modules/ToFHardware/mitkToFImageRecorderFilter.cpp b/Modules/ToFHardware/mitkToFImageRecorderFilter.cpp index 704e29d0ed5..3cabdbab4c3 100644 --- a/Modules/ToFHardware/mitkToFImageRecorderFilter.cpp +++ b/Modules/ToFHardware/mitkToFImageRecorderFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/mitkToFImageRecorderFilter.h b/Modules/ToFHardware/mitkToFImageRecorderFilter.h index bcd9d3670b3..df266a240b5 100644 --- a/Modules/ToFHardware/mitkToFImageRecorderFilter.h +++ b/Modules/ToFHardware/mitkToFImageRecorderFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFImageRecorderFilter_h #define __mitkToFImageRecorderFilter_h diff --git a/Modules/ToFHardware/mitkToFImageSource.cpp b/Modules/ToFHardware/mitkToFImageSource.cpp index 5ce94d481a6..dae03d4cf00 100644 --- a/Modules/ToFHardware/mitkToFImageSource.cpp +++ b/Modules/ToFHardware/mitkToFImageSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFImageSource.h" #include "itkCommand.h" diff --git a/Modules/ToFHardware/mitkToFImageSource.h b/Modules/ToFHardware/mitkToFImageSource.h index ae6926ed021..cafb38ea43e 100644 --- a/Modules/ToFHardware/mitkToFImageSource.h +++ b/Modules/ToFHardware/mitkToFImageSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFImageSource_h #define __mitkToFImageSource_h diff --git a/Modules/ToFHardware/mitkToFImageWriter.cpp b/Modules/ToFHardware/mitkToFImageWriter.cpp index c52ff3d4d4d..e940edb593e 100644 --- a/Modules/ToFHardware/mitkToFImageWriter.cpp +++ b/Modules/ToFHardware/mitkToFImageWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFHardware/mitkToFImageWriter.h b/Modules/ToFHardware/mitkToFImageWriter.h index b7d8283d91a..2cc1bda4f98 100644 --- a/Modules/ToFHardware/mitkToFImageWriter.h +++ b/Modules/ToFHardware/mitkToFImageWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFImageWriter_h #define __mitkToFImageWriter_h diff --git a/Modules/ToFHardware/mitkToFNrrdImageWriter.cpp b/Modules/ToFHardware/mitkToFNrrdImageWriter.cpp index 49ce6780800..77174ebeda8 100644 --- a/Modules/ToFHardware/mitkToFNrrdImageWriter.cpp +++ b/Modules/ToFHardware/mitkToFNrrdImageWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk includes #include diff --git a/Modules/ToFHardware/mitkToFNrrdImageWriter.h b/Modules/ToFHardware/mitkToFNrrdImageWriter.h index 1c3287fe3a7..d033f814d06 100644 --- a/Modules/ToFHardware/mitkToFNrrdImageWriter.h +++ b/Modules/ToFHardware/mitkToFNrrdImageWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFNrrdImageWriter_h #define __mitkToFNrrdImageWriter_h diff --git a/Modules/ToFHardware/mitkToFOpenCVImageGrabber.cpp b/Modules/ToFHardware/mitkToFOpenCVImageGrabber.cpp index 16a61d0ad78..fd8b4e0cb71 100644 --- a/Modules/ToFHardware/mitkToFOpenCVImageGrabber.cpp +++ b/Modules/ToFHardware/mitkToFOpenCVImageGrabber.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFOpenCVImageGrabber.h" // mitk includes diff --git a/Modules/ToFHardware/mitkToFOpenCVImageGrabber.h b/Modules/ToFHardware/mitkToFOpenCVImageGrabber.h index b888011ae26..2f7a2a0086a 100644 --- a/Modules/ToFHardware/mitkToFOpenCVImageGrabber.h +++ b/Modules/ToFHardware/mitkToFOpenCVImageGrabber.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFOpenCVImageGrabber_h #define __mitkToFOpenCVImageGrabber_h diff --git a/Modules/ToFProcessing/Testing/mitkKinectReconstructionTest.cpp b/Modules/ToFProcessing/Testing/mitkKinectReconstructionTest.cpp index 29a5da1d297..01df445c239 100644 --- a/Modules/ToFProcessing/Testing/mitkKinectReconstructionTest.cpp +++ b/Modules/ToFProcessing/Testing/mitkKinectReconstructionTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFProcessing/Testing/mitkToFCompositeFilterTest.cpp b/Modules/ToFProcessing/Testing/mitkToFCompositeFilterTest.cpp index 2ed6a3b319c..33dc23dcb77 100644 --- a/Modules/ToFProcessing/Testing/mitkToFCompositeFilterTest.cpp +++ b/Modules/ToFProcessing/Testing/mitkToFCompositeFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFProcessing/Testing/mitkToFDistanceImageToPointSetFilterTest.cpp b/Modules/ToFProcessing/Testing/mitkToFDistanceImageToPointSetFilterTest.cpp index 951b3001e34..793ea054fdd 100644 --- a/Modules/ToFProcessing/Testing/mitkToFDistanceImageToPointSetFilterTest.cpp +++ b/Modules/ToFProcessing/Testing/mitkToFDistanceImageToPointSetFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFProcessing/Testing/mitkToFDistanceImageToSurfaceFilterTest.cpp b/Modules/ToFProcessing/Testing/mitkToFDistanceImageToSurfaceFilterTest.cpp index 2ebd87abe31..282ab456100 100644 --- a/Modules/ToFProcessing/Testing/mitkToFDistanceImageToSurfaceFilterTest.cpp +++ b/Modules/ToFProcessing/Testing/mitkToFDistanceImageToSurfaceFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFProcessing/Testing/mitkToFImageDownsamplingFilterTest.cpp b/Modules/ToFProcessing/Testing/mitkToFImageDownsamplingFilterTest.cpp index 817d240441b..2b2cc6c7546 100644 --- a/Modules/ToFProcessing/Testing/mitkToFImageDownsamplingFilterTest.cpp +++ b/Modules/ToFProcessing/Testing/mitkToFImageDownsamplingFilterTest.cpp @@ -1,19 +1,15 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //mitk includes #include diff --git a/Modules/ToFProcessing/Testing/mitkToFProcessingCommonTest.cpp b/Modules/ToFProcessing/Testing/mitkToFProcessingCommonTest.cpp index 7a4a4324087..92801d6e703 100644 --- a/Modules/ToFProcessing/Testing/mitkToFProcessingCommonTest.cpp +++ b/Modules/ToFProcessing/Testing/mitkToFProcessingCommonTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFProcessing/mitkToFCompositeFilter.cpp b/Modules/ToFProcessing/mitkToFCompositeFilter.cpp index 94a632b9379..638ba1c82e4 100644 --- a/Modules/ToFProcessing/mitkToFCompositeFilter.cpp +++ b/Modules/ToFProcessing/mitkToFCompositeFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFProcessing/mitkToFCompositeFilter.h b/Modules/ToFProcessing/mitkToFCompositeFilter.h index cbdc1686cb5..f97af7b4bf6 100644 --- a/Modules/ToFProcessing/mitkToFCompositeFilter.h +++ b/Modules/ToFProcessing/mitkToFCompositeFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFCompositeFilter_h #define __mitkToFCompositeFilter_h diff --git a/Modules/ToFProcessing/mitkToFDistanceImageToPointSetFilter.cpp b/Modules/ToFProcessing/mitkToFDistanceImageToPointSetFilter.cpp index d244fb31f5f..51ef316949f 100644 --- a/Modules/ToFProcessing/mitkToFDistanceImageToPointSetFilter.cpp +++ b/Modules/ToFProcessing/mitkToFDistanceImageToPointSetFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFDistanceImageToPointSetFilter.h" diff --git a/Modules/ToFProcessing/mitkToFDistanceImageToPointSetFilter.h b/Modules/ToFProcessing/mitkToFDistanceImageToPointSetFilter.h index 39e99ca3649..d0853440920 100644 --- a/Modules/ToFProcessing/mitkToFDistanceImageToPointSetFilter.h +++ b/Modules/ToFProcessing/mitkToFDistanceImageToPointSetFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFDistanceImageToPointSetFilter_h #define __mitkToFDistanceImageToPointSetFilter_h diff --git a/Modules/ToFProcessing/mitkToFDistanceImageToSurfaceFilter.cpp b/Modules/ToFProcessing/mitkToFDistanceImageToSurfaceFilter.cpp index a33811b607e..d7d4eec9d6b 100644 --- a/Modules/ToFProcessing/mitkToFDistanceImageToSurfaceFilter.cpp +++ b/Modules/ToFProcessing/mitkToFDistanceImageToSurfaceFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/ToFProcessing/mitkToFDistanceImageToSurfaceFilter.h b/Modules/ToFProcessing/mitkToFDistanceImageToSurfaceFilter.h index 74ef246548a..2c8784fad78 100644 --- a/Modules/ToFProcessing/mitkToFDistanceImageToSurfaceFilter.h +++ b/Modules/ToFProcessing/mitkToFDistanceImageToSurfaceFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFDistanceImageToSurfaceFilter_h #define __mitkToFDistanceImageToSurfaceFilter_h diff --git a/Modules/ToFProcessing/mitkToFImageDownsamplingFilter.cpp b/Modules/ToFProcessing/mitkToFImageDownsamplingFilter.cpp index 13f11ee31dc..c0747514de0 100644 --- a/Modules/ToFProcessing/mitkToFImageDownsamplingFilter.cpp +++ b/Modules/ToFProcessing/mitkToFImageDownsamplingFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFImageDownsamplingFilter.h" #include diff --git a/Modules/ToFProcessing/mitkToFImageDownsamplingFilter.h b/Modules/ToFProcessing/mitkToFImageDownsamplingFilter.h index 16ab4ed03b7..f10ee736492 100644 --- a/Modules/ToFProcessing/mitkToFImageDownsamplingFilter.h +++ b/Modules/ToFProcessing/mitkToFImageDownsamplingFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkToFImageDownsamplingFilter_h #define __mitkToFImageDownsamplingFilter_h diff --git a/Modules/ToFProcessing/mitkToFProcessingCommon.cpp b/Modules/ToFProcessing/mitkToFProcessingCommon.cpp index 5257072323e..0691e55474e 100644 --- a/Modules/ToFProcessing/mitkToFProcessingCommon.cpp +++ b/Modules/ToFProcessing/mitkToFProcessingCommon.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFProcessingCommon.h" namespace mitk diff --git a/Modules/ToFProcessing/mitkToFProcessingCommon.h b/Modules/ToFProcessing/mitkToFProcessingCommon.h index d919b30966b..8944ce73c34 100644 --- a/Modules/ToFProcessing/mitkToFProcessingCommon.h +++ b/Modules/ToFProcessing/mitkToFProcessingCommon.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKTOFPROCESSINGCOMMON_H #define MITKTOFPROCESSINGCOMMON_H diff --git a/Modules/ToFProcessing/mitkToFTestingCommon.cpp b/Modules/ToFProcessing/mitkToFTestingCommon.cpp index ad9fecd6bf3..9a3896c205a 100644 --- a/Modules/ToFProcessing/mitkToFTestingCommon.cpp +++ b/Modules/ToFProcessing/mitkToFTestingCommon.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkToFTestingCommon.h" diff --git a/Modules/ToFProcessing/mitkToFTestingCommon.h b/Modules/ToFProcessing/mitkToFTestingCommon.h index 0fb7d255882..3bf5cfac2ec 100644 --- a/Modules/ToFProcessing/mitkToFTestingCommon.h +++ b/Modules/ToFProcessing/mitkToFTestingCommon.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkToFTestingCOMMON_H #define mitkToFTestingCOMMON_H diff --git a/Modules/ToFUI/Qmitk/QmitkKinectParameterWidget.cpp b/Modules/ToFUI/Qmitk/QmitkKinectParameterWidget.cpp index 312498dd84b..3891527e2e7 100644 --- a/Modules/ToFUI/Qmitk/QmitkKinectParameterWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkKinectParameterWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ToFUI/Qmitk/QmitkKinectParameterWidget.h b/Modules/ToFUI/Qmitk/QmitkKinectParameterWidget.h index 8a949428c20..01ad6f8511a 100644 --- a/Modules/ToFUI/Qmitk/QmitkKinectParameterWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkKinectParameterWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKKINECTPARAMETERWIDGET_H_INCLUDED #define _QMITKKINECTPARAMETERWIDGET_H_INCLUDED diff --git a/Modules/ToFUI/Qmitk/QmitkStructureSensorParameterWidget.cpp b/Modules/ToFUI/Qmitk/QmitkStructureSensorParameterWidget.cpp index 1f337285f61..d27268cc8fd 100644 --- a/Modules/ToFUI/Qmitk/QmitkStructureSensorParameterWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkStructureSensorParameterWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ToFUI/Qmitk/QmitkStructureSensorParameterWidget.h b/Modules/ToFUI/Qmitk/QmitkStructureSensorParameterWidget.h index 06b40fed30b..45cf2399a92 100644 --- a/Modules/ToFUI/Qmitk/QmitkStructureSensorParameterWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkStructureSensorParameterWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkStructureSensorParameterWidget_h #define QmitkStructureSensorParameterWidget_h diff --git a/Modules/ToFUI/Qmitk/QmitkToFCompositeFilterWidget.cpp b/Modules/ToFUI/Qmitk/QmitkToFCompositeFilterWidget.cpp index 2077361fa9e..317e3170bb0 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFCompositeFilterWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkToFCompositeFilterWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/ToFUI/Qmitk/QmitkToFCompositeFilterWidget.h b/Modules/ToFUI/Qmitk/QmitkToFCompositeFilterWidget.h index dfc7a5939aa..919b7334a07 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFCompositeFilterWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkToFCompositeFilterWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKTOFCOMPOSITEFILTERWIDGET_H_INCLUDED #define _QMITKTOFCOMPOSITEFILTERWIDGET_H_INCLUDED diff --git a/Modules/ToFUI/Qmitk/QmitkToFConnectionWidget.cpp b/Modules/ToFUI/Qmitk/QmitkToFConnectionWidget.cpp index 464ac0d9303..4566a20c8f4 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFConnectionWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkToFConnectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define _USE_MATH_DEFINES #include diff --git a/Modules/ToFUI/Qmitk/QmitkToFConnectionWidget.h b/Modules/ToFUI/Qmitk/QmitkToFConnectionWidget.h index 3bce20c0716..69a55361d5c 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFConnectionWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkToFConnectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKTOFCONNECTIONWIDGET_H_INCLUDED #define _QMITKTOFCONNECTIONWIDGET_H_INCLUDED diff --git a/Modules/ToFUI/Qmitk/QmitkToFMESAParameterWidget.cpp b/Modules/ToFUI/Qmitk/QmitkToFMESAParameterWidget.cpp index cdfd4449bfc..f1db23cc782 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFMESAParameterWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkToFMESAParameterWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define _USE_MATH_DEFINES #include diff --git a/Modules/ToFUI/Qmitk/QmitkToFMESAParameterWidget.h b/Modules/ToFUI/Qmitk/QmitkToFMESAParameterWidget.h index d0253cc8daf..aa9dbecce11 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFMESAParameterWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkToFMESAParameterWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKTOFMESAPARAMETERWIDGET_H_INCLUDED #define _QMITKTOFMESAPARAMETERWIDGET_H_INCLUDED diff --git a/Modules/ToFUI/Qmitk/QmitkToFPMDParameterWidget.cpp b/Modules/ToFUI/Qmitk/QmitkToFPMDParameterWidget.cpp index 0a869f7cca8..07ddd979e71 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFPMDParameterWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkToFPMDParameterWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define _USE_MATH_DEFINES #include diff --git a/Modules/ToFUI/Qmitk/QmitkToFPMDParameterWidget.h b/Modules/ToFUI/Qmitk/QmitkToFPMDParameterWidget.h index 60b5e32d224..1da0adcbae2 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFPMDParameterWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkToFPMDParameterWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKTOFPMDPARAMETERWIDGET_H_INCLUDED #define _QMITKTOFPMDPARAMETERWIDGET_H_INCLUDED diff --git a/Modules/ToFUI/Qmitk/QmitkToFPointSetWidget.cpp b/Modules/ToFUI/Qmitk/QmitkToFPointSetWidget.cpp index ad033b8a4f6..c9bcdf43d7a 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFPointSetWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkToFPointSetWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToFPointSetWidget.h" diff --git a/Modules/ToFUI/Qmitk/QmitkToFPointSetWidget.h b/Modules/ToFUI/Qmitk/QmitkToFPointSetWidget.h index 1dd799368f9..13e4203e74d 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFPointSetWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkToFPointSetWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkToFPointSetWidget_H_INCLUDED #define _QmitkToFPointSetWidget_H_INCLUDED diff --git a/Modules/ToFUI/Qmitk/QmitkToFRecorderWidget.cpp b/Modules/ToFUI/Qmitk/QmitkToFRecorderWidget.cpp index a1f7c82ac59..db6e4ff9a2f 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFRecorderWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkToFRecorderWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define _USE_MATH_DEFINES #include "QmitkToFRecorderWidget.h" diff --git a/Modules/ToFUI/Qmitk/QmitkToFRecorderWidget.h b/Modules/ToFUI/Qmitk/QmitkToFRecorderWidget.h index 44fdb1f9e2e..d3668edb514 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFRecorderWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkToFRecorderWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKTOFRECORDERWIDGET_H_INCLUDED #define _QMITKTOFRECORDERWIDGET_H_INCLUDED diff --git a/Modules/ToFUI/Qmitk/QmitkToFSurfaceGenerationWidget.cpp b/Modules/ToFUI/Qmitk/QmitkToFSurfaceGenerationWidget.cpp index 1ac6e50a3ca..35de081d335 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFSurfaceGenerationWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkToFSurfaceGenerationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToFSurfaceGenerationWidget.h" diff --git a/Modules/ToFUI/Qmitk/QmitkToFSurfaceGenerationWidget.h b/Modules/ToFUI/Qmitk/QmitkToFSurfaceGenerationWidget.h index a9949024810..40b94fe1ad2 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFSurfaceGenerationWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkToFSurfaceGenerationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKTOFSURFACEGENERATIONWIDGET_H_INCLUDED #define _QMITKTOFSURFACEGENERATIONWIDGET_H_INCLUDED diff --git a/Modules/ToFUI/Qmitk/QmitkToFVisualisationSettingsWidget.cpp b/Modules/ToFUI/Qmitk/QmitkToFVisualisationSettingsWidget.cpp index 818c3e10c3b..f3a5a104fd1 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFVisualisationSettingsWidget.cpp +++ b/Modules/ToFUI/Qmitk/QmitkToFVisualisationSettingsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkToFVisualisationSettingsWidget.h" diff --git a/Modules/ToFUI/Qmitk/QmitkToFVisualisationSettingsWidget.h b/Modules/ToFUI/Qmitk/QmitkToFVisualisationSettingsWidget.h index fd54bd474ad..4cadd03e9af 100644 --- a/Modules/ToFUI/Qmitk/QmitkToFVisualisationSettingsWidget.h +++ b/Modules/ToFUI/Qmitk/QmitkToFVisualisationSettingsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKTOFVISUALISATIONSETTINGSWIDGET_H_INCLUDED #define _QMITKTOFVISUALISATIONSETTINGSWIDGET_H_INCLUDED diff --git a/Modules/TubeGraph/include/mitkCircularProfileTubeElement.h b/Modules/TubeGraph/include/mitkCircularProfileTubeElement.h index e105982bc26..2afeb6c2f4b 100644 --- a/Modules/TubeGraph/include/mitkCircularProfileTubeElement.h +++ b/Modules/TubeGraph/include/mitkCircularProfileTubeElement.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _MITK_CircularProfileTubeElement_H #define _MITK_CircularProfileTubeElement_H diff --git a/Modules/TubeGraph/include/mitkTubeElement.h b/Modules/TubeGraph/include/mitkTubeElement.h index 46eeed3e2bf..3a30adfa7f5 100644 --- a/Modules/TubeGraph/include/mitkTubeElement.h +++ b/Modules/TubeGraph/include/mitkTubeElement.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _MITK_TubeElement_H #define _MITK_TubeElement_H diff --git a/Modules/TubeGraph/include/mitkTubeGraph.h b/Modules/TubeGraph/include/mitkTubeGraph.h index bd4f54cbec6..dbb11eb17cc 100644 --- a/Modules/TubeGraph/include/mitkTubeGraph.h +++ b/Modules/TubeGraph/include/mitkTubeGraph.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _mitk_TubeGraph_h #define _mitk_TubeGraph_h diff --git a/Modules/TubeGraph/include/mitkTubeGraphDataInteractor.h b/Modules/TubeGraph/include/mitkTubeGraphDataInteractor.h index ef22157c4e3..8d07e4f3d86 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphDataInteractor.h +++ b/Modules/TubeGraph/include/mitkTubeGraphDataInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkTubeGraphDataInteractor3D_h_ #define mitkTubeGraphDataInteractor3D_h_ diff --git a/Modules/TubeGraph/include/mitkTubeGraphDefinitions.h b/Modules/TubeGraph/include/mitkTubeGraphDefinitions.h index fdacc0ca3f3..7786d22290c 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphDefinitions.h +++ b/Modules/TubeGraph/include/mitkTubeGraphDefinitions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkTubeGraphDefinitions_h #define __mitkTubeGraphDefinitions_h diff --git a/Modules/TubeGraph/include/mitkTubeGraphEdge.h b/Modules/TubeGraph/include/mitkTubeGraphEdge.h index 80490e1b05d..0818ae308a1 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphEdge.h +++ b/Modules/TubeGraph/include/mitkTubeGraphEdge.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _MITK_TubeGraphEdge_H #define _MITK_TubeGraphEdge_H diff --git a/Modules/TubeGraph/include/mitkTubeGraphIO.h b/Modules/TubeGraph/include/mitkTubeGraphIO.h index c935639f8e9..0124cbcd3b2 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphIO.h +++ b/Modules/TubeGraph/include/mitkTubeGraphIO.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_TUBE_GRAPH_IO_H_ #define _MITK_TUBE_GRAPH_IO_H_ diff --git a/Modules/TubeGraph/include/mitkTubeGraphObjectFactory.h b/Modules/TubeGraph/include/mitkTubeGraphObjectFactory.h index 4b7a72a933b..1dec9d47c7f 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphObjectFactory.h +++ b/Modules/TubeGraph/include/mitkTubeGraphObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef TubeGraphObjectFactory_H_INCLUDED #define TubeGraphObjectFactory_H_INCLUDED diff --git a/Modules/TubeGraph/include/mitkTubeGraphPicker.h b/Modules/TubeGraph/include/mitkTubeGraphPicker.h index c9072e4b084..f5111b8dfce 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphPicker.h +++ b/Modules/TubeGraph/include/mitkTubeGraphPicker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitk_TubeGraphPicker_h #define _mitk_TubeGraphPicker_h diff --git a/Modules/TubeGraph/include/mitkTubeGraphProperty.h b/Modules/TubeGraph/include/mitkTubeGraphProperty.h index df22d6df78f..856c251ed07 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphProperty.h +++ b/Modules/TubeGraph/include/mitkTubeGraphProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitk_TubeGraphProperty_h #define _mitk_TubeGraphProperty_h diff --git a/Modules/TubeGraph/include/mitkTubeGraphVertex.h b/Modules/TubeGraph/include/mitkTubeGraphVertex.h index 3cdf231bd88..bd93fcf77da 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphVertex.h +++ b/Modules/TubeGraph/include/mitkTubeGraphVertex.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _MITK_TubeGraphVertex_H #define _MITK_TubeGraphVertex_H diff --git a/Modules/TubeGraph/include/mitkTubeGraphVtkMapper3D.h b/Modules/TubeGraph/include/mitkTubeGraphVtkMapper3D.h index 32c8360c672..8ace4cfa182 100644 --- a/Modules/TubeGraph/include/mitkTubeGraphVtkMapper3D.h +++ b/Modules/TubeGraph/include/mitkTubeGraphVtkMapper3D.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef TubeGraphVtkMapper3D_H_HEADER_INCLUDED #define TubeGraphVtkMapper3D_H_HEADER_INCLUDED diff --git a/Modules/TubeGraph/include/mitkUndirectedGraph.h b/Modules/TubeGraph/include/mitkUndirectedGraph.h index f4c0130b19b..b95fd259e00 100644 --- a/Modules/TubeGraph/include/mitkUndirectedGraph.h +++ b/Modules/TubeGraph/include/mitkUndirectedGraph.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _MITK_UndirectedGraph_H #define _MITK_UndirectedGraph_H diff --git a/Modules/TubeGraph/include/mitkUndirectedGraph.txx b/Modules/TubeGraph/include/mitkUndirectedGraph.txx index fbfe84222a6..a33c826a725 100644 --- a/Modules/TubeGraph/include/mitkUndirectedGraph.txx +++ b/Modules/TubeGraph/include/mitkUndirectedGraph.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitkUndirectedGraph_txx #define _mitkUndirectedGraph_txx diff --git a/Modules/TubeGraph/src/DataStructure/mitkCircularProfileTubeElement.cpp b/Modules/TubeGraph/src/DataStructure/mitkCircularProfileTubeElement.cpp index 99148548a4b..a7fbba8da2c 100644 --- a/Modules/TubeGraph/src/DataStructure/mitkCircularProfileTubeElement.cpp +++ b/Modules/TubeGraph/src/DataStructure/mitkCircularProfileTubeElement.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkCircularProfileTubeElement.h" diff --git a/Modules/TubeGraph/src/DataStructure/mitkTubeGraph.cpp b/Modules/TubeGraph/src/DataStructure/mitkTubeGraph.cpp index b7c5f4647ea..bcec2ba4a66 100644 --- a/Modules/TubeGraph/src/DataStructure/mitkTubeGraph.cpp +++ b/Modules/TubeGraph/src/DataStructure/mitkTubeGraph.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkTubeGraph.h" #include "mitkGeometry3D.h" diff --git a/Modules/TubeGraph/src/DataStructure/mitkTubeGraphEdge.cpp b/Modules/TubeGraph/src/DataStructure/mitkTubeGraphEdge.cpp index f5998961d88..2fc109f26e7 100644 --- a/Modules/TubeGraph/src/DataStructure/mitkTubeGraphEdge.cpp +++ b/Modules/TubeGraph/src/DataStructure/mitkTubeGraphEdge.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphEdge.h" diff --git a/Modules/TubeGraph/src/DataStructure/mitkTubeGraphVertex.cpp b/Modules/TubeGraph/src/DataStructure/mitkTubeGraphVertex.cpp index 6844f614164..4a3c0aa3486 100644 --- a/Modules/TubeGraph/src/DataStructure/mitkTubeGraphVertex.cpp +++ b/Modules/TubeGraph/src/DataStructure/mitkTubeGraphVertex.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphVertex.h" diff --git a/Modules/TubeGraph/src/IO/mitkTubeGraphDefinitions.cpp b/Modules/TubeGraph/src/IO/mitkTubeGraphDefinitions.cpp index d34271bcf3d..648a5bddba5 100644 --- a/Modules/TubeGraph/src/IO/mitkTubeGraphDefinitions.cpp +++ b/Modules/TubeGraph/src/IO/mitkTubeGraphDefinitions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphDefinitions.h" diff --git a/Modules/TubeGraph/src/IO/mitkTubeGraphIO.cpp b/Modules/TubeGraph/src/IO/mitkTubeGraphIO.cpp index a763f56e24f..c313192ff36 100644 --- a/Modules/TubeGraph/src/IO/mitkTubeGraphIO.cpp +++ b/Modules/TubeGraph/src/IO/mitkTubeGraphIO.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphIO.h" diff --git a/Modules/TubeGraph/src/IO/mitkTubeGraphModuleActivator.cpp b/Modules/TubeGraph/src/IO/mitkTubeGraphModuleActivator.cpp index b9686e7bc48..2cb03333336 100644 --- a/Modules/TubeGraph/src/IO/mitkTubeGraphModuleActivator.cpp +++ b/Modules/TubeGraph/src/IO/mitkTubeGraphModuleActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Modules/TubeGraph/src/IO/mitkTubeGraphObjectFactory.cpp b/Modules/TubeGraph/src/IO/mitkTubeGraphObjectFactory.cpp index 782a56b40bc..a2263df2ad3 100644 --- a/Modules/TubeGraph/src/IO/mitkTubeGraphObjectFactory.cpp +++ b/Modules/TubeGraph/src/IO/mitkTubeGraphObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphObjectFactory.h" diff --git a/Modules/TubeGraph/src/Interactions/mitkTubeGraphDataInteractor.cpp b/Modules/TubeGraph/src/Interactions/mitkTubeGraphDataInteractor.cpp index 4927b08e838..55cab1dbcb6 100644 --- a/Modules/TubeGraph/src/Interactions/mitkTubeGraphDataInteractor.cpp +++ b/Modules/TubeGraph/src/Interactions/mitkTubeGraphDataInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphDataInteractor.h" diff --git a/Modules/TubeGraph/src/Interactions/mitkTubeGraphPicker.cpp b/Modules/TubeGraph/src/Interactions/mitkTubeGraphPicker.cpp index 2abae5c5a58..3fa1a9ca3a2 100644 --- a/Modules/TubeGraph/src/Interactions/mitkTubeGraphPicker.cpp +++ b/Modules/TubeGraph/src/Interactions/mitkTubeGraphPicker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphPicker.h" diff --git a/Modules/TubeGraph/src/Rendering/mitkTubeGraphProperty.cpp b/Modules/TubeGraph/src/Rendering/mitkTubeGraphProperty.cpp index fc7063afefa..bbc2f89c39d 100644 --- a/Modules/TubeGraph/src/Rendering/mitkTubeGraphProperty.cpp +++ b/Modules/TubeGraph/src/Rendering/mitkTubeGraphProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphProperty.h" diff --git a/Modules/TubeGraph/src/Rendering/mitkTubeGraphVtkMapper3D.cpp b/Modules/TubeGraph/src/Rendering/mitkTubeGraphVtkMapper3D.cpp index d70c2521608..a93bfd5371a 100644 --- a/Modules/TubeGraph/src/Rendering/mitkTubeGraphVtkMapper3D.cpp +++ b/Modules/TubeGraph/src/Rendering/mitkTubeGraphVtkMapper3D.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphVtkMapper3D.h" diff --git a/Modules/TumorInvasionAnalysis/MiniApps/BasicDistanceMaps.cpp b/Modules/TumorInvasionAnalysis/MiniApps/BasicDistanceMaps.cpp index a3d86a48a3c..6e292ed37d6 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/BasicDistanceMaps.cpp +++ b/Modules/TumorInvasionAnalysis/MiniApps/BasicDistanceMaps.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include @@ -34,7 +30,7 @@ int main(int argc, char *argv[]) parser.setTitle("Basic Distance Maps"); parser.setCategory("Features"); parser.setDescription("Creates Eucledian Distance Maps of a given ROI segmentation"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); parser.addArgument("input", "i", mitkCommandLineParser::Image, "(binary) seed file", "", us::Any(), false, false, false, mitkCommandLineParser::Input); diff --git a/Modules/TumorInvasionAnalysis/MiniApps/ConnectednessFeatureMaps.cpp b/Modules/TumorInvasionAnalysis/MiniApps/ConnectednessFeatureMaps.cpp index 15cc3de22ee..9ee23bb7457 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/ConnectednessFeatureMaps.cpp +++ b/Modules/TumorInvasionAnalysis/MiniApps/ConnectednessFeatureMaps.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include @@ -42,7 +38,7 @@ int main(int argc, char *argv[]) parser.setTitle("Connectedness Maps"); parser.setCategory("Features"); parser.setDescription("Computes connectedness maps"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); parser.addArgument("input", "i", mitkCommandLineParser::Image, "input file", "", us::Any(), false, false, false, mitkCommandLineParser::Input); diff --git a/Modules/TumorInvasionAnalysis/MiniApps/HistogramAdaption.cpp b/Modules/TumorInvasionAnalysis/MiniApps/HistogramAdaption.cpp index ed8341829c0..cac1581f627 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/HistogramAdaption.cpp +++ b/Modules/TumorInvasionAnalysis/MiniApps/HistogramAdaption.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkImageRegionIterator.h" #include "mitkIOUtil.h" @@ -34,7 +30,7 @@ int main(int argc, char *argv[]) parser.setTitle("Contrast Adaption"); parser.setCategory("Preprocessing Tools"); parser.setDescription("Stretches or pushes image intensities above a given threshold"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); diff --git a/Modules/TumorInvasionAnalysis/MiniApps/MriNormalization.cpp b/Modules/TumorInvasionAnalysis/MiniApps/MriNormalization.cpp index 10abd75e35a..867cf8ee695 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/MriNormalization.cpp +++ b/Modules/TumorInvasionAnalysis/MiniApps/MriNormalization.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkImageRegionIterator.h" #include "mitkCommandLineParser.h" @@ -35,7 +31,7 @@ int main(int argc, char *argv[]) parser.setCategory("Preprocessing Tools"); parser.setDescription( "Normalizes an MRI volume between medians of two given masks (e.g. ventricles and brain matter)"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); diff --git a/Modules/TumorInvasionAnalysis/MiniApps/MriOtsuNormalization.cpp b/Modules/TumorInvasionAnalysis/MiniApps/MriOtsuNormalization.cpp index 1da7d1ce174..bee84b98065 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/MriOtsuNormalization.cpp +++ b/Modules/TumorInvasionAnalysis/MiniApps/MriOtsuNormalization.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "itkImageRegionIterator.h" #include "mitkCommandLineParser.h" @@ -37,7 +33,7 @@ int main(int argc, char *argv[]) parser.setTitle("Mri Normalization"); parser.setCategory("Preprocessing Tools"); parser.setDescription("Normalizes an MRI volume based on regions determined by Otsu."); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); diff --git a/Modules/TumorInvasionAnalysis/MiniApps/TumorInvasionAnalysisTool.cpp b/Modules/TumorInvasionAnalysis/MiniApps/TumorInvasionAnalysisTool.cpp index f87b47b1f99..bc40bcc5434 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/TumorInvasionAnalysisTool.cpp +++ b/Modules/TumorInvasionAnalysis/MiniApps/TumorInvasionAnalysisTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK - DataCollection #include @@ -37,7 +33,7 @@ int main(int argc, char *argv[]) parser.setTitle("Tumor Invasion Analysis"); parser.setCategory("Tumor Analysis"); parser.setDescription("Learns and predicts Invasion behavior"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/TumorInvasionAnalysis/MiniApps/TumorProgressionMapping.cpp b/Modules/TumorInvasionAnalysis/MiniApps/TumorProgressionMapping.cpp index f5998afe209..45d832b4a8e 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/TumorProgressionMapping.cpp +++ b/Modules/TumorInvasionAnalysis/MiniApps/TumorProgressionMapping.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include #include @@ -304,7 +300,7 @@ int main(int argc, char *argv[]) parser.setTitle("Tumor Progression Mapping"); parser.setCategory("Preprocessing Tools"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setDescription("Convert a set of co-registered and resampled follow-up images into a 2D png overview (and " "optionally in a 4D NRRD Volume).\nNaming convecntion of files is " "IDENTIFIER_YYYY-MM-DD_MODALITY.nrrd"); diff --git a/Modules/TumorInvasionAnalysis/MiniApps/TumorResponseEvaluationTool.cpp b/Modules/TumorInvasionAnalysis/MiniApps/TumorResponseEvaluationTool.cpp index 911384c1289..9ace8b14480 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/TumorResponseEvaluationTool.cpp +++ b/Modules/TumorInvasionAnalysis/MiniApps/TumorResponseEvaluationTool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK - DataCollection #include @@ -37,7 +33,7 @@ int main(int argc, char *argv[]) parser.setTitle("Tumor Invasion Analysis"); parser.setCategory("Tumor Analysis"); parser.setDescription("Learns and predicts Invasion behavior"); - parser.setContributor("MBI"); + parser.setContributor("German Cancer Research Center (DKFZ)"); parser.setArgumentPrefix("--", "-"); // Add command line argument names diff --git a/Modules/TumorInvasionAnalysis/MiniApps/typeExtension.h b/Modules/TumorInvasionAnalysis/MiniApps/typeExtension.h index bfa6418dfe1..eff3e5398da 100644 --- a/Modules/TumorInvasionAnalysis/MiniApps/typeExtension.h +++ b/Modules/TumorInvasionAnalysis/MiniApps/typeExtension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include diff --git a/Modules/TumorInvasionAnalysis/include/itkConnectednessFilter.cxx b/Modules/TumorInvasionAnalysis/include/itkConnectednessFilter.cxx index 3036a870595..cf5d4e4a3ee 100644 --- a/Modules/TumorInvasionAnalysis/include/itkConnectednessFilter.cxx +++ b/Modules/TumorInvasionAnalysis/include/itkConnectednessFilter.cxx @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef __ConnectednessFilter_hxx #define __ConnectednessFilter_hxx diff --git a/Modules/TumorInvasionAnalysis/include/itkConnectednessFilter.h b/Modules/TumorInvasionAnalysis/include/itkConnectednessFilter.h index 902723013fd..95c247e0c22 100644 --- a/Modules/TumorInvasionAnalysis/include/itkConnectednessFilter.h +++ b/Modules/TumorInvasionAnalysis/include/itkConnectednessFilter.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef __itkConnectednessFilter_h #define __itkConnectednessFilter_h diff --git a/Modules/TumorInvasionAnalysis/include/mitkCollectionDilatation.h b/Modules/TumorInvasionAnalysis/include/mitkCollectionDilatation.h index 138361a91b3..d24c9e70491 100644 --- a/Modules/TumorInvasionAnalysis/include/mitkCollectionDilatation.h +++ b/Modules/TumorInvasionAnalysis/include/mitkCollectionDilatation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCollectionDilation_H #define mitkCollectionDilation_H diff --git a/Modules/TumorInvasionAnalysis/include/mitkCollectionGrayOpening.h b/Modules/TumorInvasionAnalysis/include/mitkCollectionGrayOpening.h index 887d8a90cd5..378381bb1ed 100644 --- a/Modules/TumorInvasionAnalysis/include/mitkCollectionGrayOpening.h +++ b/Modules/TumorInvasionAnalysis/include/mitkCollectionGrayOpening.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkCollectionGrayDilation_H #define mitkCollectionGrayDilation_H diff --git a/Modules/TumorInvasionAnalysis/include/mitkDiffusionCollectionReader.h b/Modules/TumorInvasionAnalysis/include/mitkDiffusionCollectionReader.h index 4eb7e2d9767..c6cea113a22 100644 --- a/Modules/TumorInvasionAnalysis/include/mitkDiffusionCollectionReader.h +++ b/Modules/TumorInvasionAnalysis/include/mitkDiffusionCollectionReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_DIFFUSIONCOLLECTION_READER_H #define MITK_DIFFUSIONCOLLECTION_READER_H diff --git a/Modules/TumorInvasionAnalysis/include/mitkDiffusionCollectionWriter.h b/Modules/TumorInvasionAnalysis/include/mitkDiffusionCollectionWriter.h index 3752b6c800e..b00751de53f 100755 --- a/Modules/TumorInvasionAnalysis/include/mitkDiffusionCollectionWriter.h +++ b/Modules/TumorInvasionAnalysis/include/mitkDiffusionCollectionWriter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITK_DIFFUSIONCOLLECTION_WRITER_H #define MITK_DIFFUSIONCOLLECTION_WRITER_H diff --git a/Modules/TumorInvasionAnalysis/include/mitkTumorInvasionClassification.h b/Modules/TumorInvasionAnalysis/include/mitkTumorInvasionClassification.h index 4b38ba8984c..5893c0175b0 100644 --- a/Modules/TumorInvasionAnalysis/include/mitkTumorInvasionClassification.h +++ b/Modules/TumorInvasionAnalysis/include/mitkTumorInvasionClassification.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef TumorInvasionAnalysis_H #define TumorInvasionAnalysis_H diff --git a/Modules/TumorInvasionAnalysis/src/Classification/mitkTumorInvasionClassification.cpp b/Modules/TumorInvasionAnalysis/src/Classification/mitkTumorInvasionClassification.cpp index 8b4e0d93bd9..38e488a6d9c 100644 --- a/Modules/TumorInvasionAnalysis/src/Classification/mitkTumorInvasionClassification.cpp +++ b/Modules/TumorInvasionAnalysis/src/Classification/mitkTumorInvasionClassification.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTumorInvasionClassification.h" diff --git a/Modules/TumorInvasionAnalysis/src/ImageFilters/mitkCollectionDilatation.cpp b/Modules/TumorInvasionAnalysis/src/ImageFilters/mitkCollectionDilatation.cpp index 6c4b9324922..9b384be934e 100644 --- a/Modules/TumorInvasionAnalysis/src/ImageFilters/mitkCollectionDilatation.cpp +++ b/Modules/TumorInvasionAnalysis/src/ImageFilters/mitkCollectionDilatation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCollectionDilatation.h" #include diff --git a/Modules/TumorInvasionAnalysis/src/ImageFilters/mitkCollectionGrayOpening.cpp b/Modules/TumorInvasionAnalysis/src/ImageFilters/mitkCollectionGrayOpening.cpp index 8de07efd5f1..4d2811f5c8c 100644 --- a/Modules/TumorInvasionAnalysis/src/ImageFilters/mitkCollectionGrayOpening.cpp +++ b/Modules/TumorInvasionAnalysis/src/ImageFilters/mitkCollectionGrayOpening.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCollectionGrayOpening.h" #include diff --git a/Modules/TumorInvasionAnalysis/src/ReaderWriter/mitkDiffusionCollectionReader.cpp b/Modules/TumorInvasionAnalysis/src/ReaderWriter/mitkDiffusionCollectionReader.cpp index b9cc4e29b3d..1ba2eb7170c 100644 --- a/Modules/TumorInvasionAnalysis/src/ReaderWriter/mitkDiffusionCollectionReader.cpp +++ b/Modules/TumorInvasionAnalysis/src/ReaderWriter/mitkDiffusionCollectionReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifdef _MSC_VER # pragma warning (disable : 4996) #endif diff --git a/Modules/TumorInvasionAnalysis/src/ReaderWriter/mitkDiffusionCollectionWriter.cpp b/Modules/TumorInvasionAnalysis/src/ReaderWriter/mitkDiffusionCollectionWriter.cpp index ffcdafa9789..9a2fbb56b33 100755 --- a/Modules/TumorInvasionAnalysis/src/ReaderWriter/mitkDiffusionCollectionWriter.cpp +++ b/Modules/TumorInvasionAnalysis/src/ReaderWriter/mitkDiffusionCollectionWriter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifdef _MSC_VER # pragma warning (disable : 4996) #endif diff --git a/Modules/TumorInvasionAnalysis/test/mitkClassificationTest.cpp b/Modules/TumorInvasionAnalysis/test/mitkClassificationTest.cpp index 369394315e3..0a85a7e36a0 100644 --- a/Modules/TumorInvasionAnalysis/test/mitkClassificationTest.cpp +++ b/Modules/TumorInvasionAnalysis/test/mitkClassificationTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #ifdef _MSC_VER # pragma warning(disable : 4996) #endif diff --git a/Modules/US/Testing/mitkUSDeviceTest.cpp b/Modules/US/Testing/mitkUSDeviceTest.cpp index 02491a2ad8a..83504ace057 100644 --- a/Modules/US/Testing/mitkUSDeviceTest.cpp +++ b/Modules/US/Testing/mitkUSDeviceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSVideoDevice.h" #include "mitkUSProbe.h" @@ -53,4 +49,4 @@ int mitkUSDeviceTest(int /* argc */, char* /*argv*/[]) mitkUSDeviceTestClass::TestActivateProbe(); MITK_TEST_END(); -} \ No newline at end of file +} diff --git a/Modules/US/Testing/mitkUSImageLoggingFilterTest.cpp b/Modules/US/Testing/mitkUSImageLoggingFilterTest.cpp index eceb9306dca..9702661f50c 100644 --- a/Modules/US/Testing/mitkUSImageLoggingFilterTest.cpp +++ b/Modules/US/Testing/mitkUSImageLoggingFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSImageLoggingFilter.h" #include diff --git a/Modules/US/Testing/mitkUSImageVideoSourceTest.cpp b/Modules/US/Testing/mitkUSImageVideoSourceTest.cpp index 9b060a5ad87..fe04b850694 100644 --- a/Modules/US/Testing/mitkUSImageVideoSourceTest.cpp +++ b/Modules/US/Testing/mitkUSImageVideoSourceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSImageVideoSource.h" #include "mitkTestingMacros.h" diff --git a/Modules/US/Testing/mitkUSPipelineTest.cpp b/Modules/US/Testing/mitkUSPipelineTest.cpp index 7927690358f..c660c344d21 100644 --- a/Modules/US/Testing/mitkUSPipelineTest.cpp +++ b/Modules/US/Testing/mitkUSPipelineTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSVideoDevice.h" #include "mitkTestingMacros.h" diff --git a/Modules/US/Testing/mitkUSProbeTest.cpp b/Modules/US/Testing/mitkUSProbeTest.cpp index 0e1fa3258e6..62e533e1d1f 100644 --- a/Modules/US/Testing/mitkUSProbeTest.cpp +++ b/Modules/US/Testing/mitkUSProbeTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSProbe.h" #include "mitkTestingMacros.h" diff --git a/Modules/US/USControlInterfaces/mitkUSAbstractControlInterface.cpp b/Modules/US/USControlInterfaces/mitkUSAbstractControlInterface.cpp index f5486830ea0..0e436865679 100644 --- a/Modules/US/USControlInterfaces/mitkUSAbstractControlInterface.cpp +++ b/Modules/US/USControlInterfaces/mitkUSAbstractControlInterface.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "mitkUSAbstractControlInterface.h" #include "mitkUSDevice.h" @@ -8,4 +20,4 @@ mitk::USAbstractControlInterface::USAbstractControlInterface(itk::SmartPointerOnSetTGCMax(max); - + } void mitk::USDiPhASDeviceCustomControls::SetDataType(DataType type) diff --git a/Modules/US/USControlInterfaces/mitkUSDiPhASDeviceCustomControls.h b/Modules/US/USControlInterfaces/mitkUSDiPhASDeviceCustomControls.h index 1843d4f7b4e..b7004e2711e 100644 --- a/Modules/US/USControlInterfaces/mitkUSDiPhASDeviceCustomControls.h +++ b/Modules/US/USControlInterfaces/mitkUSDiPhASDeviceCustomControls.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSDiPhASDeviceCustomControls_H_HEADER_INCLUDED_ #define MITKUSDiPhASDeviceCustomControls_H_HEADER_INCLUDED_ @@ -57,7 +53,7 @@ class MITKUS_EXPORT USDiPhASDeviceCustomControls : public USAbstractControlInter virtual void SetCompensateEnergy(bool compensate); virtual void SetUseBModeFilter(bool isSet); virtual void SetVerticalSpacing(float mm); - virtual void SetRecord(bool record); + virtual void SetRecord(bool record); virtual void SetScatteringCoefficient(float coeff); virtual void SetCompensateScattering(bool compensate); virtual void SetSavingSettings(SavingSettings settings); diff --git a/Modules/US/USFilters/mitkIGTLMessageToUSImageFilter.cpp b/Modules/US/USFilters/mitkIGTLMessageToUSImageFilter.cpp index 25c6c847ad8..b18483fcdc7 100644 --- a/Modules/US/USFilters/mitkIGTLMessageToUSImageFilter.cpp +++ b/Modules/US/USFilters/mitkIGTLMessageToUSImageFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -189,4 +185,4 @@ void mitk::IGTLMessageToUSImageFilter::ConnectTo( { MITK_DEBUG << "Connected this (" << this << ") mitkIGTLMessageToUSImageFilter to MessageSource (" << UpstreamFilter << ")\n"; m_upstream = UpstreamFilter; -} \ No newline at end of file +} diff --git a/Modules/US/USFilters/mitkIGTLMessageToUSImageFilter.h b/Modules/US/USFilters/mitkIGTLMessageToUSImageFilter.h index 171463702fa..dfcb9c71ed7 100644 --- a/Modules/US/USFilters/mitkIGTLMessageToUSImageFilter.h +++ b/Modules/US/USFilters/mitkIGTLMessageToUSImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLMessageToUSImageFilter_H_HEADER_INCLUDED_ #define MITKIGTLMessageToUSImageFilter_H_HEADER_INCLUDED_ diff --git a/Modules/US/USFilters/mitkUSImageLoggingFilter.cpp b/Modules/US/USFilters/mitkUSImageLoggingFilter.cpp index ad7da4d0790..32424b4f70e 100644 --- a/Modules/US/USFilters/mitkUSImageLoggingFilter.cpp +++ b/Modules/US/USFilters/mitkUSImageLoggingFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSImageLoggingFilter.h" #include diff --git a/Modules/US/USFilters/mitkUSImageLoggingFilter.h b/Modules/US/USFilters/mitkUSImageLoggingFilter.h index 96559ffd09e..042be2149f2 100644 --- a/Modules/US/USFilters/mitkUSImageLoggingFilter.h +++ b/Modules/US/USFilters/mitkUSImageLoggingFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSImageLoggingFiler_H_HEADER_INCLUDED_ #define MITKUSImageLoggingFiler_H_HEADER_INCLUDED_ diff --git a/Modules/US/USFilters/mitkUSImageSource.cpp b/Modules/US/USFilters/mitkUSImageSource.cpp index 11a5c6b51bd..2091d3733ae 100644 --- a/Modules/US/USFilters/mitkUSImageSource.cpp +++ b/Modules/US/USFilters/mitkUSImageSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSImageSource.h" #include "mitkProperties.h" diff --git a/Modules/US/USFilters/mitkUSImageSource.h b/Modules/US/USFilters/mitkUSImageSource.h index 2866092a671..7c66c5e2e46 100644 --- a/Modules/US/USFilters/mitkUSImageSource.h +++ b/Modules/US/USFilters/mitkUSImageSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSImageSource_H_HEADER_INCLUDED_ #define MITKUSImageSource_H_HEADER_INCLUDED_ diff --git a/Modules/US/USFilters/mitkUSImageVideoSource.cpp b/Modules/US/USFilters/mitkUSImageVideoSource.cpp index 7db00a5a14a..14892f9d382 100644 --- a/Modules/US/USFilters/mitkUSImageVideoSource.cpp +++ b/Modules/US/USFilters/mitkUSImageVideoSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK HEADER #include "mitkUSImageVideoSource.h" diff --git a/Modules/US/USFilters/mitkUSImageVideoSource.h b/Modules/US/USFilters/mitkUSImageVideoSource.h index 9e2d155f703..77e0fd25781 100644 --- a/Modules/US/USFilters/mitkUSImageVideoSource.h +++ b/Modules/US/USFilters/mitkUSImageVideoSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSImageVideoSource_H_HEADER_INCLUDED_ #define MITKUSImageVideoSource_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkAnalyticSignalImageFilter.h b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkAnalyticSignalImageFilter.h index bebba4955ba..0bd53ce42b3 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkAnalyticSignalImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkAnalyticSignalImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkAnalyticSignalImageFilter.hxx b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkAnalyticSignalImageFilter.hxx index a48bcba4cb3..6f9bed01616 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkAnalyticSignalImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkAnalyticSignalImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkBModeImageFilter.h b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkBModeImageFilter.h index 54bd15b3259..ec84eee33fa 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkBModeImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkBModeImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium @@ -153,4 +149,4 @@ class BModeImageFilter : #include "itkBModeImageFilter.hxx" #endif -#endif // itkBModeImageFilter_h \ No newline at end of file +#endif // itkBModeImageFilter_h diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkBModeImageFilter.hxx b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkBModeImageFilter.hxx index aa511e03b23..f45b42fe374 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkBModeImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkBModeImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium @@ -209,4 +205,4 @@ BModeImageFilter< TInputImage, TOutputImage, TComplexImage > } // end namespace itk -#endif \ No newline at end of file +#endif diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.h b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.h index ed9b8b90f63..9c6bede6c19 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.hxx b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.hxx index f287799e1ca..af4c9d7b1c1 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DComplexToComplexImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.h b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.h index 9ff85ad00cc..6dfb296bc30 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.hxx b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.hxx index 16c10f5477c..469f702479b 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkFFT1DRealToComplexConjugateImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkRegionFromReferenceImageFilter.h b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkRegionFromReferenceImageFilter.h index 5a15e24723b..41d9bc62d6a 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkRegionFromReferenceImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkRegionFromReferenceImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkRegionFromReferenceImageFilter.hxx b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkRegionFromReferenceImageFilter.hxx index 463ef984eb5..277794c7f28 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkRegionFromReferenceImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkRegionFromReferenceImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.h b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.h index 91b2db02407..bf225d99de2 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.hxx b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.hxx index 6a628451d3c..d77ad681a10 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexConjugateToRealImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.h b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.h index f2a80377ca3..8c8c6e2614b 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.hxx b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.hxx index 31639f9780f..3ab41c2caa5 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DComplexToComplexImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.h b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.h index e0e99f70f8b..679b4b5baef 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.hxx b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.hxx index 57d35327346..0d38c0d7459 100644 --- a/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/ITKUltrasound/itkVnlFFT1DRealToComplexConjugateImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASActivator.cpp b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASActivator.cpp index db7d7549ed5..e3a7d7c8f4c 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASActivator.cpp +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSDiPhASActivator.h" @@ -37,4 +33,4 @@ void mitk::USDiPhASActivator::Unload(us::ModuleContext* context) // set smart pointer to null (device will be unregistered from // micro service in it's destrcutor) m_Device = 0; -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASActivator.h b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASActivator.h index f8f4fc617a1..172e6656b8f 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASActivator.h +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkUSDiPhASActivator_h #define __mitkUSDiPhASActivator_h @@ -50,4 +46,4 @@ namespace mitk US_EXPORT_MODULE_ACTIVATOR(mitk::USDiPhASActivator) -#endif // __mitkUSDiPhASActivator_h \ No newline at end of file +#endif // __mitkUSDiPhASActivator_h diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASBModeImageFilter.h b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASBModeImageFilter.h index d71dc6f8380..ba7eb074e3f 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASBModeImageFilter.h +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASBModeImageFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASBModeImageFilter.hxx b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASBModeImageFilter.hxx index d7ccf510b11..4b34a1ae0e6 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASBModeImageFilter.hxx +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASBModeImageFilter.hxx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*========================================================================= * * Copyright Insight Software Consortium @@ -204,4 +200,4 @@ namespace itk } // end namespace itk -#endif \ No newline at end of file +#endif diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASCustomControls.cpp b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASCustomControls.cpp index adab35c4817..824a71f279a 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASCustomControls.cpp +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASCustomControls.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSDiPhASCustomControls.h" #include @@ -165,7 +161,7 @@ void mitk::USDiPhASCustomControls::OnSetDataType(DataType type) scanMode.transferImageData = true; m_device->UpdateScanmode(); imageSource->ModifyDataType(DataType::Image_uChar); - break; + break; } case DataType::Beamformed_Short : { scanMode.transferBeamformedData = true; @@ -175,8 +171,8 @@ void mitk::USDiPhASCustomControls::OnSetDataType(DataType type) break; } - default: - MITK_INFO << "Unknown Data Type requested"; + default: + MITK_INFO << "Unknown Data Type requested"; break; } } @@ -225,4 +221,4 @@ void mitk::USDiPhASCustomControls::OnSetHighCut(double MHz) { m_device->GetScanMode().bandpassFrequencyHighHz = MHz*1000*1000; m_device->UpdateScanmode(); -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASCustomControls.h b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASCustomControls.h index 5d3aea0c583..e58f8ea3d81 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASCustomControls.h +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASCustomControls.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSDiPhASCustomControls_H_HEADER_INCLUDED_ #define MITKUSDiPhASCustomControls_H_HEADER_INCLUDED_ @@ -103,4 +99,4 @@ class USDiPhASCustomControls : public USDiPhASDeviceCustomControls }; } // namespace mitk -#endif // MITKUSDiPhASCustomControls_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSDiPhASCustomControls_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASDevice.cpp b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASDevice.cpp index 5cb68f1dcd1..e5edeadebe9 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASDevice.cpp +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSDiPhASDevice.h" #include "mitkUSDiPhASCustomControls.h" @@ -23,7 +19,7 @@ mitk::USDiPhASDevice::USDiPhASDevice(std::string manufacturer, std::string model m_ControlInterfaceCustom(mitk::USDiPhASCustomControls::New(this)), m_IsRunning(false), m_BurstHalfwaveClockCount(7), - m_Interleaved(true) + m_Interleaved(true) { m_NumberOfOutputs = 2; this->SetNumberOfIndexedOutputs(m_NumberOfOutputs); @@ -79,7 +75,7 @@ bool mitk::USDiPhASDevice::OnInitialization() mitk::USDiPhASDevice* w_device; mitk::USDiPhASImageSource* w_ISource; -void WrapperMessageCallback(const char* message) +void WrapperMessageCallback(const char* message) { w_device->MessageCallback(message); } @@ -100,8 +96,8 @@ void WrapperImageDataCallback( bool mitk::USDiPhASDevice::OnConnection() { w_device = this; - w_ISource = m_ImageSource; - // Need those pointers for the forwarders to call member functions; createBeamformer expects non-member function pointers. + w_ISource = m_ImageSource; + // Need those pointers for the forwarders to call member functions; createBeamformer expects non-member function pointers. createBeamformer((StringMessageCallback)&WrapperMessageCallback, (NewDataCallback)&WrapperImageDataCallback); InitializeScanMode(); @@ -185,7 +181,7 @@ void mitk::USDiPhASDevice::UpdateTransmitEvents() for (int i = 0; i < numChannels; ++i) { - m_ScanMode.TransmitEvents[ev].BurstHalfwaveClockCountPerChannel[i] = m_BurstHalfwaveClockCount; // 120 MHz / (2 * (predefinedBurstHalfwaveClockCount + 1)) --> 7.5 MHz + m_ScanMode.TransmitEvents[ev].BurstHalfwaveClockCountPerChannel[i] = m_BurstHalfwaveClockCount; // 120 MHz / (2 * (predefinedBurstHalfwaveClockCount + 1)) --> 7.5 MHz m_ScanMode.TransmitEvents[ev].BurstCountPerChannel[i] = 1; // Burst with 1 cycle m_ScanMode.TransmitEvents[ev].BurstUseNegativePolarityPerChannel[i] = true; m_ScanMode.TransmitEvents[ev].transmitEventDelays[i] = 2e-6f + (i - numChannels / 2) * tiltStrength; @@ -262,7 +258,7 @@ void mitk::USDiPhASDevice::InitializeScanMode() m_ScanMode.triggerSetup.delayTrigger2Microseconds = 300; } -// callback for the DiPhAS API +// callback for the DiPhAS API void mitk::USDiPhASDevice::MessageCallback(const char* message) { @@ -304,4 +300,4 @@ void mitk::USDiPhASDevice::SetInterleaved(bool interleaved) m_ScanMode.beamformingAlgorithmParameters = ¶msPlaneWave; } m_ScanMode.beamformingAlgorithm = m_CurrentBeamformingAlgorithm; -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASDevice.h b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASDevice.h index 2732f4f7c8f..1e979502259 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASDevice.h +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSDiPhASDevice_H_HEADER_INCLUDED_ #define MITKUSDiPhASDevice_H_HEADER_INCLUDED_ @@ -46,7 +42,7 @@ namespace mitk { * mitk::USDiPhASImageSource. */ class USDiPhASImageSource; - + class USDiPhASDevice : public USDevice { public: @@ -146,7 +142,7 @@ namespace mitk { virtual ~USDiPhASDevice(); /** - * The DiPhAS API expects callback functions to pass + * The DiPhAS API expects callback functions to pass * both status messages and the processed images to the user. * The message callback is here, the data itself is given directly to the image source. */ @@ -170,4 +166,4 @@ namespace mitk { }; } // namespace mitk -#endif // MITKUSDiPhASDevice_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSDiPhASDevice_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASImageSource.cpp b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASImageSource.cpp index 789a181a45d..45b4c65fd54 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASImageSource.cpp +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASImageSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // std dependencies #include @@ -106,7 +102,7 @@ void mitk::USDiPhASImageSource::GetNextRawImage(std::vectorSetSlice(&flipme[i*beamformedLines*beamformedSamples], i); // set every image to a different slice @@ -570,7 +566,7 @@ void mitk::USDiPhASImageSource::ImageDataCallback( itk::Index<3> pixel = { { (itk::Index<3>::IndexValueType)(image->GetDimension(0) / 2), - (itk::Index<3>::IndexValueType)(22.0/532.0*m_Device->GetScanMode().reconstructionSamplesPerLine), + (itk::Index<3>::IndexValueType)(22.0/532.0*m_Device->GetScanMode().reconstructionSamplesPerLine), 0 } }; //22/532*2048 = 84 if (!m_Pyro->IsSyncDelaySet() &&(image->GetPixelValueByIndex(pixel) < -30)) // #MagicNumber { @@ -720,7 +716,7 @@ void mitk::USDiPhASImageSource::SetRecordingStatus(bool record) // start the recording process if (record) { - m_RecordedImages.clear(); + m_RecordedImages.clear(); m_RawRecordedImages.clear(); // we make sure there are no leftovers m_ImageTimestampRecord.clear(); // also for the timestamps m_PixelValues.clear(); // aaaand for the pixel values @@ -792,7 +788,7 @@ void mitk::USDiPhASImageSource::SetRecordingStatus(bool record) itk::Index<3> pixel = { { (itk::Index<3>::IndexValueType)(m_RecordedImages.at(0)->GetDimension(0) / 2), - (itk::Index<3>::IndexValueType)(22.0 / 532.0*m_Device->GetScanMode().reconstructionSamplesPerLine), + (itk::Index<3>::IndexValueType)(22.0 / 532.0*m_Device->GetScanMode().reconstructionSamplesPerLine), 0 } }; //22/532*2048 = 84 GetPixelValues(pixel, m_PixelValues); // write the Pixelvalues to m_PixelValues @@ -835,7 +831,7 @@ void mitk::USDiPhASImageSource::SetRecordingStatus(bool record) mitk::IOUtil::Save(USImage, pathUS); } - m_PixelValues.clear(); + m_PixelValues.clear(); m_RawRecordedImages.clear(); // clean up the pixel values m_RecordedImages.clear(); // clean up the images m_ImageTimestampRecord.clear(); // clean up the timestamps @@ -928,4 +924,4 @@ void mitk::USDiPhASImageSource::OrderImagesUltrasound(Image::Pointer USImage, st mitk::ImageReadAccessor inputReadAccessor(recordedList.at(index)); USImage->SetSlice(inputReadAccessor.GetData(), index); } -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASImageSource.h b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASImageSource.h index 54ac576ffda..428b8e6b32c 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASImageSource.h +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASImageSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSDiPhASImageSource_H_HEADER_INCLUDED_ #define MITKUSDiPhASImageSource_H_HEADER_INCLUDED_ @@ -43,12 +39,12 @@ class USDiPhASDevice; * The method mitk::USImageSource::GetNextRawImage() is implemented for * getting images from the DiPhAS API. * - * The image data is given to this class from the DiPhAS API by calling + * The image data is given to this class from the DiPhAS API by calling * a callback method that writes the image data to an mitk::image */ class USDiPhASImageSource : public USImageSource { - + public: mitkClassMacro(USDiPhASImageSource, USImageSource); mitkNewMacro1Param(Self, mitk::USDiPhASDevice*); diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbe.cpp b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbe.cpp index b51f585976d..afe7d710ff6 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbe.cpp +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbe.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSDiPhASProbe.h" #include "Framework.IBMT.US.CWrapper.h" @@ -24,4 +20,4 @@ mitk::USDiPhASProbe::USDiPhASProbe(std::string ProbeName) mitk::USDiPhASProbe::~USDiPhASProbe() { -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbe.h b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbe.h index e89e3abf3b9..d20b15e4529 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbe.h +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbe.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSDiPhASProbe_H_HEADER_INCLUDED_ #define MITKUSDiPhASProbe_H_HEADER_INCLUDED_ @@ -47,4 +43,4 @@ namespace mitk }; } // namespace mitk -#endif // MITKUSDiPhASProbe_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSDiPhASProbe_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbesControls.cpp b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbesControls.cpp index d40d09d4da5..0a7a6f262e0 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbesControls.cpp +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbesControls.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkUSDiPhASProbesControls.h" @@ -110,4 +106,4 @@ void mitk::USDiPhASProbesControls::ProbeAdded(unsigned int index) void mitk::USDiPhASProbesControls::CreateProbesSet() { m_ProbesSet.push_back(mitk::USDiPhASProbe::New( m_DiPhASDevice->GetScanMode().transducerName )); -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbesControls.h b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbesControls.h index daaa9c64660..fb2ddfb0cef 100644 --- a/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbesControls.h +++ b/Modules/US/USHardwareDiPhAS/mitkUSDiPhASProbesControls.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSDiPhASProbesControls_H_HEADER_INCLUDED_ #define MITKUSDiPhASProbesControls_H_HEADER_INCLUDED_ @@ -84,4 +80,4 @@ namespace mitk { }; } -#endif // MITKUSDiPhASProbesControls_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSDiPhASProbesControls_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedActivator.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedActivator.cpp index 741b0b941b5..93217919ddd 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedActivator.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedActivator.h" @@ -37,4 +33,4 @@ void mitk::USTelemedActivator::Unload(us::ModuleContext* context) // set smart pointer to null (device will be unregistered from // micro service in it's destrcutor) m_Device = 0; -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedActivator.h b/Modules/US/USHardwareTelemed/mitkUSTelemedActivator.h index aba1ffe6a84..11146141577 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedActivator.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkUSTelemedActivator_h #define __mitkUSTelemedActivator_h @@ -50,4 +46,4 @@ namespace mitk US_EXPORT_MODULE_ACTIVATOR(mitk::USTelemedActivator) -#endif // __mitkUSTelemedActivator_h \ No newline at end of file +#endif // __mitkUSTelemedActivator_h diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedBModeControls.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedBModeControls.cpp index 89fbc7d6531..350550ccc73 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedBModeControls.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedBModeControls.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedBModeControls.h" #include "mitkUSTelemedDevice.h" @@ -258,4 +254,4 @@ void mitk::USTelemedBModeControls::ReleaseControls() SAFE_RELEASE(m_GainControl); SAFE_RELEASE(m_RejectionControl); SAFE_RELEASE(m_DynamicRangeControl); -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedBModeControls.h b/Modules/US/USHardwareTelemed/mitkUSTelemedBModeControls.h index e355d042ae7..f08c0a09a16 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedBModeControls.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedBModeControls.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTelemedBModeControls_H_HEADER_INCLUDED_ #define MITKUSTelemedBModeControls_H_HEADER_INCLUDED_ @@ -112,4 +108,4 @@ namespace mitk { }; } // namespace mitk -#endif // MITKUSTelemedBModeControls_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSTelemedBModeControls_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedDevice.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedDevice.cpp index b6af6c3acb4..7fd2d11dad1 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedDevice.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedDevice.h" diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedDevice.h b/Modules/US/USHardwareTelemed/mitkUSTelemedDevice.h index 5c4e079254f..36ffefa0ac3 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedDevice.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTelemedDevice_H_HEADER_INCLUDED_ #define MITKUSTelemedDevice_H_HEADER_INCLUDED_ @@ -182,4 +178,4 @@ namespace mitk { }; } // namespace mitk -#endif // MITKUSTelemedDevice_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSTelemedDevice_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedDopplerControls.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedDopplerControls.cpp index 4074b6dac73..847dfd93898 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedDopplerControls.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedDopplerControls.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedDopplerControls.h" #include "mitkUSTelemedDevice.h" @@ -35,4 +31,4 @@ void mitk::USTelemedDopplerControls::SetIsActive(bool isActive) bool mitk::USTelemedDopplerControls::GetIsActive() { return m_IsActive; -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedDopplerControls.h b/Modules/US/USHardwareTelemed/mitkUSTelemedDopplerControls.h index 8d8dca38ba7..d86c0f489ea 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedDopplerControls.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedDopplerControls.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTelemedDopplerControls_H_HEADER_INCLUDED_ #define MITKUSTelemedDopplerControls_H_HEADER_INCLUDED_ @@ -47,4 +43,4 @@ namespace mitk { }; } -#endif // MITKUSTelemedDopplerControls_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSTelemedDopplerControls_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedImageSource.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedImageSource.cpp index b30ca763b66..1e2d974945d 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedImageSource.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedImageSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedImageSource.h" #include "mitkUSTelemedSDKHeader.h" diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedImageSource.h b/Modules/US/USHardwareTelemed/mitkUSTelemedImageSource.h index e0270c4dfba..c911af2a695 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedImageSource.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedImageSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTelemedImageSource_H_HEADER_INCLUDED_ #define MITKUSTelemedImageSource_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedProbe.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedProbe.cpp index 825ec28dbaa..7517f2b51d0 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedProbe.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedProbe.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedProbe.h" #include "mitkUSTelemedSDKHeader.h" @@ -39,4 +35,4 @@ Usgfw2Lib::IProbe* mitk::USTelemedProbe::GetUsgProbe() Usgfw2Lib::IUsgDataView* mitk::USTelemedProbe::GetUsgDataView() { return m_UsgDataView; -} \ No newline at end of file +} diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedProbe.h b/Modules/US/USHardwareTelemed/mitkUSTelemedProbe.h index 113df8395ef..603d3aaf600 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedProbe.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedProbe.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTelemedProbe_H_HEADER_INCLUDED_ #define MITKUSTelemedProbe_H_HEADER_INCLUDED_ @@ -66,4 +62,4 @@ namespace mitk }; } // namespace mitk -#endif // MITKUSTelemedProbe_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSTelemedProbe_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedProbesControls.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedProbesControls.cpp index b61fd5ceae2..36c643c832f 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedProbesControls.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedProbesControls.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedProbesControls.h" #include "mitkUSTelemedDevice.h" diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedProbesControls.h b/Modules/US/USHardwareTelemed/mitkUSTelemedProbesControls.h index a510a15bf6d..fa644db9fa3 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedProbesControls.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedProbesControls.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTelemedProbesControls_H_HEADER_INCLUDED_ #define MITKUSTelemedProbesControls_H_HEADER_INCLUDED_ @@ -85,4 +81,4 @@ namespace mitk { }; } -#endif // MITKUSTelemedProbesControls_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSTelemedProbesControls_H_HEADER_INCLUDED_ diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedSDKHeader.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedSDKHeader.cpp index 8cc4f5388fa..31f0c2dbdea 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedSDKHeader.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedSDKHeader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedSDKHeader.h" diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedSDKHeader.h b/Modules/US/USHardwareTelemed/mitkUSTelemedSDKHeader.h index 74a07658b4c..2d9adfb83d2 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedSDKHeader.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedSDKHeader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTelemedSDKHeader_H #define MITKUSTelemedSDKHeader_H diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedScanConverterPlugin.cpp b/Modules/US/USHardwareTelemed/mitkUSTelemedScanConverterPlugin.cpp index 1c9b0048c10..ad27c0edc02 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedScanConverterPlugin.cpp +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedScanConverterPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTelemedScanConverterPlugin.h" #include "mitkImageWriteAccessor.h" diff --git a/Modules/US/USHardwareTelemed/mitkUSTelemedScanConverterPlugin.h b/Modules/US/USHardwareTelemed/mitkUSTelemedScanConverterPlugin.h index 1bd71bcf067..c4ec8e82353 100644 --- a/Modules/US/USHardwareTelemed/mitkUSTelemedScanConverterPlugin.h +++ b/Modules/US/USHardwareTelemed/mitkUSTelemedScanConverterPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTelemedScanConverterPlugin_H_HEADER_INCLUDED_ #define MITKUSTelemedScanConverterPlugin_H_HEADER_INCLUDED_ @@ -167,4 +163,4 @@ class USTelemedScanConverterPlugin : public IUsgfwScanConverterPluginCB long m_cRef ; }; -#endif // MITKUSTelemedScanConverterPlugin_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSTelemedScanConverterPlugin_H_HEADER_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSDevice.cpp b/Modules/US/USModel/mitkUSDevice.cpp index 40913afa64f..1f4ef2a873c 100644 --- a/Modules/US/USModel/mitkUSDevice.cpp +++ b/Modules/US/USModel/mitkUSDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSDevice.h" #include "mitkImageReadAccessor.h" @@ -650,7 +646,7 @@ void mitk::USDevice::GenerateData() output->SetImportVolume(inputReadAccessor.GetData()); output->SetGeometry(image->GetGeometry()); } - } + } m_ImageMutex->Unlock(); }; diff --git a/Modules/US/USModel/mitkUSDevice.h b/Modules/US/USModel/mitkUSDevice.h index bf60d5fd7fa..d6535773366 100644 --- a/Modules/US/USModel/mitkUSDevice.h +++ b/Modules/US/USModel/mitkUSDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSDevice_H_HEADER_INCLUDED_ #define MITKUSDevice_H_HEADER_INCLUDED_ @@ -376,11 +372,11 @@ namespace mitk { virtual void SetImageVector(std::vector vec) { - if (this->m_ImageVector != vec) - { + if (this->m_ImageVector != vec) + { this->m_ImageVector = vec; - this->Modified(); - } + this->Modified(); + } } static ITK_THREAD_RETURN_TYPE Acquire(void* pInfoStruct); diff --git a/Modules/US/USModel/mitkUSDevicePersistence.cpp b/Modules/US/USModel/mitkUSDevicePersistence.cpp index 00920465eaf..17b6a56082c 100644 --- a/Modules/US/USModel/mitkUSDevicePersistence.cpp +++ b/Modules/US/USModel/mitkUSDevicePersistence.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSDevicePersistence.h" diff --git a/Modules/US/USModel/mitkUSDevicePersistence.h b/Modules/US/USModel/mitkUSDevicePersistence.h index 468b1a6195a..ebfedc14b23 100644 --- a/Modules/US/USModel/mitkUSDevicePersistence.h +++ b/Modules/US/USModel/mitkUSDevicePersistence.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSDevicePersistence_H_HEADER_INCLUDED_ #define MITKUSDevicePersistence_H_HEADER_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSDeviceReaderWriterConstants.h b/Modules/US/USModel/mitkUSDeviceReaderWriterConstants.h index 1f19b0af85e..3c01c2dd6d7 100644 --- a/Modules/US/USModel/mitkUSDeviceReaderWriterConstants.h +++ b/Modules/US/USModel/mitkUSDeviceReaderWriterConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkUSDeviceReaderWriterConstants_H_HEADER_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSDeviceReaderXML.cpp b/Modules/US/USModel/mitkUSDeviceReaderXML.cpp index 2ff8a4c5c94..4295678f0ef 100644 --- a/Modules/US/USModel/mitkUSDeviceReaderXML.cpp +++ b/Modules/US/USModel/mitkUSDeviceReaderXML.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkUSDeviceReaderWriterConstants.h" diff --git a/Modules/US/USModel/mitkUSDeviceReaderXML.h b/Modules/US/USModel/mitkUSDeviceReaderXML.h index 291d8dbb169..74d3d76b9f8 100644 --- a/Modules/US/USModel/mitkUSDeviceReaderXML.h +++ b/Modules/US/USModel/mitkUSDeviceReaderXML.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkUSDeviceReaderXML_H_HEADER_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSDeviceWriterXML.cpp b/Modules/US/USModel/mitkUSDeviceWriterXML.cpp index 7e4272ffd35..d0be517a1e3 100644 --- a/Modules/US/USModel/mitkUSDeviceWriterXML.cpp +++ b/Modules/US/USModel/mitkUSDeviceWriterXML.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkUSDeviceReaderWriterConstants.h" diff --git a/Modules/US/USModel/mitkUSDeviceWriterXML.h b/Modules/US/USModel/mitkUSDeviceWriterXML.h index 24452a4c7e1..657f07d25c6 100644 --- a/Modules/US/USModel/mitkUSDeviceWriterXML.h +++ b/Modules/US/USModel/mitkUSDeviceWriterXML.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkUSDeviceWriterXML_H_Header_INCLUDED_ #define mitkUSDeviceWriterXML_H_Header_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSIGTLDevice.cpp b/Modules/US/USModel/mitkUSIGTLDevice.cpp index 5b8df067b39..33713b7c31c 100644 --- a/Modules/US/USModel/mitkUSIGTLDevice.cpp +++ b/Modules/US/USModel/mitkUSIGTLDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY{} without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Modules/US/USModel/mitkUSIGTLDevice.h b/Modules/US/USModel/mitkUSIGTLDevice.h index 69d3ec77d8a..a34331a8d97 100644 --- a/Modules/US/USModel/mitkUSIGTLDevice.h +++ b/Modules/US/USModel/mitkUSIGTLDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIGTLDevice_H_HEADER_INCLUDED_ #define MITKIGTLDevice_H_HEADER_INCLUDED_ @@ -71,7 +67,7 @@ namespace mitk */ void UnregisterOnService(); - // Neu hinzugefügt: + // Neu hinzugefügt: /** * \brief Return all probes for this USVideoDevice or an empty vector it no probes were set * Returns a std::vector of all probes that exist for this USVideoDevice if there were probes set while creating or modifying this USVideoDevice. diff --git a/Modules/US/USModel/mitkUSImage.cpp b/Modules/US/USModel/mitkUSImage.cpp index 9d8a59aa577..f4e741c0707 100644 --- a/Modules/US/USModel/mitkUSImage.cpp +++ b/Modules/US/USModel/mitkUSImage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSImage.h" #include diff --git a/Modules/US/USModel/mitkUSImage.h b/Modules/US/USModel/mitkUSImage.h index bf94f6f0513..89b40dae1d2 100644 --- a/Modules/US/USModel/mitkUSImage.h +++ b/Modules/US/USModel/mitkUSImage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSIMAGE_H_HEADER_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSImageMetadata.cpp b/Modules/US/USModel/mitkUSImageMetadata.cpp index b13c6d1bc75..867e4946482 100644 --- a/Modules/US/USModel/mitkUSImageMetadata.cpp +++ b/Modules/US/USModel/mitkUSImageMetadata.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSImageMetadata.h" @@ -41,4 +37,4 @@ mitk::USImageMetadata::USImageMetadata() : itk::Object() mitk::USImageMetadata::~USImageMetadata() { -} \ No newline at end of file +} diff --git a/Modules/US/USModel/mitkUSImageMetadata.h b/Modules/US/USModel/mitkUSImageMetadata.h index 2c7995eb652..e2bf2800f15 100644 --- a/Modules/US/USModel/mitkUSImageMetadata.h +++ b/Modules/US/USModel/mitkUSImageMetadata.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSIMAGEMETADATA_H_HEADER_INCLUDED_ #define MITKUSIMAGEMETADATA_H_HEADER_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSProbe.cpp b/Modules/US/USModel/mitkUSProbe.cpp index fd8fef5ac70..3efae8f9d32 100644 --- a/Modules/US/USModel/mitkUSProbe.cpp +++ b/Modules/US/USModel/mitkUSProbe.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSProbe.h" #include diff --git a/Modules/US/USModel/mitkUSProbe.h b/Modules/US/USModel/mitkUSProbe.h index 2ca2f931ed8..abf75bc7560 100644 --- a/Modules/US/USModel/mitkUSProbe.h +++ b/Modules/US/USModel/mitkUSProbe.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSProbe_H_HEADER_INCLUDED_ #define MITKUSProbe_H_HEADER_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSVideoDevice.cpp b/Modules/US/USModel/mitkUSVideoDevice.cpp index 6d216e82963..8f849a4bb06 100644 --- a/Modules/US/USModel/mitkUSVideoDevice.cpp +++ b/Modules/US/USModel/mitkUSVideoDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSVideoDevice.h" #include "mitkUSVideoDeviceCustomControls.h" diff --git a/Modules/US/USModel/mitkUSVideoDevice.h b/Modules/US/USModel/mitkUSVideoDevice.h index 88d350b6341..806af98dc63 100644 --- a/Modules/US/USModel/mitkUSVideoDevice.h +++ b/Modules/US/USModel/mitkUSVideoDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSVideoDevice_H_HEADER_INCLUDED_ #define MITKUSVideoDevice_H_HEADER_INCLUDED_ diff --git a/Modules/US/USModel/mitkUSVideoDeviceCustomControls.cpp b/Modules/US/USModel/mitkUSVideoDeviceCustomControls.cpp index 7d187cf4f38..e08c563c039 100644 --- a/Modules/US/USModel/mitkUSVideoDeviceCustomControls.cpp +++ b/Modules/US/USModel/mitkUSVideoDeviceCustomControls.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSVideoDeviceCustomControls.h" diff --git a/Modules/US/USModel/mitkUSVideoDeviceCustomControls.h b/Modules/US/USModel/mitkUSVideoDeviceCustomControls.h index 70ecdf41043..1deddce45a9 100644 --- a/Modules/US/USModel/mitkUSVideoDeviceCustomControls.h +++ b/Modules/US/USModel/mitkUSVideoDeviceCustomControls.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSVideoDeviceCustomControls_H_HEADER_INCLUDED_ #define MITKUSVideoDeviceCustomControls_H_HEADER_INCLUDED_ @@ -104,4 +100,4 @@ namespace mitk { }; } // namespace mitk -#endif // MITKUSVideoDeviceCustomControls_H_HEADER_INCLUDED_ \ No newline at end of file +#endif // MITKUSVideoDeviceCustomControls_H_HEADER_INCLUDED_ diff --git a/Modules/US/USNavigation/Filter/mitkNodeDisplacementFilter.cpp b/Modules/US/USNavigation/Filter/mitkNodeDisplacementFilter.cpp index 08578194a86..da8ef367218 100644 --- a/Modules/US/USNavigation/Filter/mitkNodeDisplacementFilter.cpp +++ b/Modules/US/USNavigation/Filter/mitkNodeDisplacementFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNodeDisplacementFilter.h" diff --git a/Modules/US/USNavigation/Filter/mitkNodeDisplacementFilter.h b/Modules/US/USNavigation/Filter/mitkNodeDisplacementFilter.h index 18a65fe10ce..d629dd11d26 100644 --- a/Modules/US/USNavigation/Filter/mitkNodeDisplacementFilter.h +++ b/Modules/US/USNavigation/Filter/mitkNodeDisplacementFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NODEDISPLACEMENTFILTER_H_INCLUDED #define NODEDISPLACEMENTFILTER_H_INCLUDED diff --git a/Modules/US/USNavigation/Testing/mitkCombinedModalityTest.cpp b/Modules/US/USNavigation/Testing/mitkCombinedModalityTest.cpp index f7dc20005a1..e12ebc1b21b 100644 --- a/Modules/US/USNavigation/Testing/mitkCombinedModalityTest.cpp +++ b/Modules/US/USNavigation/Testing/mitkCombinedModalityTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSCombinedModality.h" #include diff --git a/Modules/US/USNavigation/Testing/mitkNodeDisplacementFilterTest.cpp b/Modules/US/USNavigation/Testing/mitkNodeDisplacementFilterTest.cpp index 953cba822fa..f822ef4409d 100644 --- a/Modules/US/USNavigation/Testing/mitkNodeDisplacementFilterTest.cpp +++ b/Modules/US/USNavigation/Testing/mitkNodeDisplacementFilterTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "mitkNodeDisplacementFilter.h" diff --git a/Modules/US/USNavigation/mitkAbstractUltrasoundTrackerDevice.cpp b/Modules/US/USNavigation/mitkAbstractUltrasoundTrackerDevice.cpp index eff419fa21e..066b3686c36 100644 --- a/Modules/US/USNavigation/mitkAbstractUltrasoundTrackerDevice.cpp +++ b/Modules/US/USNavigation/mitkAbstractUltrasoundTrackerDevice.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAbstractUltrasoundTrackerDevice.h" #include "mitkImageReadAccessor.h" diff --git a/Modules/US/USNavigation/mitkAbstractUltrasoundTrackerDevice.h b/Modules/US/USNavigation/mitkAbstractUltrasoundTrackerDevice.h index 81f1f536a99..10022e62f4e 100644 --- a/Modules/US/USNavigation/mitkAbstractUltrasoundTrackerDevice.h +++ b/Modules/US/USNavigation/mitkAbstractUltrasoundTrackerDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkAbstractUltrasoundTrackerDevice_h #define __mitkAbstractUltrasoundTrackerDevice_h diff --git a/Modules/US/USNavigation/mitkTrackedUltrasound.cpp b/Modules/US/USNavigation/mitkTrackedUltrasound.cpp index 693bb0aa6b1..d32d7bdb0be 100644 --- a/Modules/US/USNavigation/mitkTrackedUltrasound.cpp +++ b/Modules/US/USNavigation/mitkTrackedUltrasound.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTrackedUltrasound.h" #include "mitkImageReadAccessor.h" @@ -66,7 +62,7 @@ void mitk::TrackedUltrasound::GenerateData() mitk::ImageReadAccessor inputReadAccessor(image, image->GetSliceData(0, 0, 0)); output->SetSlice(inputReadAccessor.GetData()); //copy image data output->GetGeometry()->SetSpacing(image->GetGeometry()->GetSpacing()); //copy spacing because this might also change - + //and update calibration (= transformation of the image) std::string calibrationKey = this->GetIdentifierForCurrentCalibration(); if (!calibrationKey.empty()) diff --git a/Modules/US/USNavigation/mitkTrackedUltrasound.h b/Modules/US/USNavigation/mitkTrackedUltrasound.h index 1a479259608..2c0be6b8e54 100644 --- a/Modules/US/USNavigation/mitkTrackedUltrasound.h +++ b/Modules/US/USNavigation/mitkTrackedUltrasound.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkTrackedUltrasound_h #define __mitkTrackedUltrasound_h diff --git a/Modules/US/USNavigation/mitkUSCombinedModality.cpp b/Modules/US/USNavigation/mitkUSCombinedModality.cpp index 57ed2181896..7261bd46517 100644 --- a/Modules/US/USNavigation/mitkUSCombinedModality.cpp +++ b/Modules/US/USNavigation/mitkUSCombinedModality.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageReadAccessor.h" #include "mitkTrackingDeviceSource.h" diff --git a/Modules/US/USNavigation/mitkUSCombinedModality.h b/Modules/US/USNavigation/mitkUSCombinedModality.h index 95c9e260d3c..e7edf96ad3d 100644 --- a/Modules/US/USNavigation/mitkUSCombinedModality.h +++ b/Modules/US/USNavigation/mitkUSCombinedModality.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSCombinedModality_H_HEADER_INCLUDED_ #define MITKUSCombinedModality_H_HEADER_INCLUDED_ diff --git a/Modules/US/mitkUSActivator.cpp b/Modules/US/mitkUSActivator.cpp index 37098f26d5e..125d13d1014 100644 --- a/Modules/US/mitkUSActivator.cpp +++ b/Modules/US/mitkUSActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSActivator.h" #include "mitkUSDevicePersistence.h" diff --git a/Modules/US/mitkUSActivator.h b/Modules/US/mitkUSActivator.h index 44a4342710d..680c82d17ea 100644 --- a/Modules/US/mitkUSActivator.h +++ b/Modules/US/mitkUSActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkUSActivator_h #define __mitkUSActivator_h diff --git a/Modules/USUI/Qmitk/QmitkComboBoxStepThrough.cpp b/Modules/USUI/Qmitk/QmitkComboBoxStepThrough.cpp index 4f394461e3b..12351b2238a 100644 --- a/Modules/USUI/Qmitk/QmitkComboBoxStepThrough.cpp +++ b/Modules/USUI/Qmitk/QmitkComboBoxStepThrough.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkComboBoxStepThrough.h" diff --git a/Modules/USUI/Qmitk/QmitkComboBoxStepThrough.h b/Modules/USUI/Qmitk/QmitkComboBoxStepThrough.h index 4b549108676..6eee67b3c79 100644 --- a/Modules/USUI/Qmitk/QmitkComboBoxStepThrough.h +++ b/Modules/USUI/Qmitk/QmitkComboBoxStepThrough.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkComboBoxStepThrough_H #define QmitkComboBoxStepThrough_H @@ -80,4 +76,4 @@ private slots: int m_LastIndex; }; -#endif // QmitkComboBoxStepThrough_H \ No newline at end of file +#endif // QmitkComboBoxStepThrough_H diff --git a/Modules/USUI/Qmitk/QmitkUSAbstractCustomWidget.cpp b/Modules/USUI/Qmitk/QmitkUSAbstractCustomWidget.cpp index 5b0214cfc1b..f04bd079756 100644 --- a/Modules/USUI/Qmitk/QmitkUSAbstractCustomWidget.cpp +++ b/Modules/USUI/Qmitk/QmitkUSAbstractCustomWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSAbstractCustomWidget.h" diff --git a/Modules/USUI/Qmitk/QmitkUSAbstractCustomWidget.h b/Modules/USUI/Qmitk/QmitkUSAbstractCustomWidget.h index f9380c431e0..688ff7ad931 100644 --- a/Modules/USUI/Qmitk/QmitkUSAbstractCustomWidget.h +++ b/Modules/USUI/Qmitk/QmitkUSAbstractCustomWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUSAbstractCustomWidget_h #define QmitkUSAbstractCustomWidget_h diff --git a/Modules/USUI/Qmitk/QmitkUSControlsBModeWidget.cpp b/Modules/USUI/Qmitk/QmitkUSControlsBModeWidget.cpp index e4a7e569b47..d135a74e9e4 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsBModeWidget.cpp +++ b/Modules/USUI/Qmitk/QmitkUSControlsBModeWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSControlsBModeWidget.h" #include "ui_QmitkUSControlsBModeWidget.h" @@ -57,7 +53,7 @@ QmitkUSControlsBModeWidget::QmitkUSControlsBModeWidget(mitk::USControlInterfaceB // to the current depth value got from the interface if (curFrequencyValue == *it) ui->scanningFrequencyComboBox->setCurrentIndex(ui->scanningFrequencyComboBox->count()-1); } - + ui->scanningPowerSlider->setMinimum(m_ControlInterface->GetScanningPowerMin()); ui->scanningPowerSlider->setMaximum(m_ControlInterface->GetScanningPowerMax()); ui->scanningPowerSlider->setTickInterval(m_ControlInterface->GetScanningPowerTick()); @@ -126,4 +122,4 @@ void QmitkUSControlsBModeWidget::OnDynamicRangeControlValueChanged(int value) { m_ControlInterface->SetScanningDynamicRange(static_cast(value)); ui->scanningDynamicRangeLabel_value->setText(QString::number(value) + "dB"); -} \ No newline at end of file +} diff --git a/Modules/USUI/Qmitk/QmitkUSControlsBModeWidget.h b/Modules/USUI/Qmitk/QmitkUSControlsBModeWidget.h index d0648888827..ff8aca57a24 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsBModeWidget.h +++ b/Modules/USUI/Qmitk/QmitkUSControlsBModeWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSCONTROLSBMODEWIDGET_H #define QMITKUSCONTROLSBMODEWIDGET_H @@ -84,4 +80,4 @@ private slots: mitk::USControlInterfaceBMode::Pointer m_ControlInterface; }; -#endif // QMITKUSCONTROLSBMODEWIDGET_H \ No newline at end of file +#endif // QMITKUSCONTROLSBMODEWIDGET_H diff --git a/Modules/USUI/Qmitk/QmitkUSControlsCustomDiPhASDeviceWidget.cpp b/Modules/USUI/Qmitk/QmitkUSControlsCustomDiPhASDeviceWidget.cpp index 71b04c33ad3..5a4864f72e5 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsCustomDiPhASDeviceWidget.cpp +++ b/Modules/USUI/Qmitk/QmitkUSControlsCustomDiPhASDeviceWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSControlsCustomDiPhASDeviceWidget.h" #include "ui_QmitkUSControlsCustomDiPhASDeviceWidget.h" diff --git a/Modules/USUI/Qmitk/QmitkUSControlsCustomDiPhASDeviceWidget.h b/Modules/USUI/Qmitk/QmitkUSControlsCustomDiPhASDeviceWidget.h index 09a82b37533..e8e10436305 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsCustomDiPhASDeviceWidget.h +++ b/Modules/USUI/Qmitk/QmitkUSControlsCustomDiPhASDeviceWidget.h @@ -1,19 +1,15 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUSControlsCustomDiPhASDeviceWidget_H #define QmitkUSControlsCustomDiPhASDeviceWidget_H diff --git a/Modules/USUI/Qmitk/QmitkUSControlsCustomVideoDeviceWidget.cpp b/Modules/USUI/Qmitk/QmitkUSControlsCustomVideoDeviceWidget.cpp index bda78631659..2cf4689a3ee 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsCustomVideoDeviceWidget.cpp +++ b/Modules/USUI/Qmitk/QmitkUSControlsCustomVideoDeviceWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSControlsCustomVideoDeviceWidget.h" #include "ui_QmitkUSControlsCustomVideoDeviceWidget.h" diff --git a/Modules/USUI/Qmitk/QmitkUSControlsCustomVideoDeviceWidget.h b/Modules/USUI/Qmitk/QmitkUSControlsCustomVideoDeviceWidget.h index 9698d78e00d..d828ff437fd 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsCustomVideoDeviceWidget.h +++ b/Modules/USUI/Qmitk/QmitkUSControlsCustomVideoDeviceWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUSControlsCustomVideoDeviceWidget_H #define QmitkUSControlsCustomVideoDeviceWidget_H diff --git a/Modules/USUI/Qmitk/QmitkUSControlsDopplerWidget.cpp b/Modules/USUI/Qmitk/QmitkUSControlsDopplerWidget.cpp index a711f7b61fc..a5971ec1d25 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsDopplerWidget.cpp +++ b/Modules/USUI/Qmitk/QmitkUSControlsDopplerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSControlsDopplerWidget.h" #include "ui_QmitkUSControlsDopplerWidget.h" @@ -32,4 +28,4 @@ QmitkUSControlsDopplerWidget::QmitkUSControlsDopplerWidget(mitk::USControlInterf QmitkUSControlsDopplerWidget::~QmitkUSControlsDopplerWidget() { delete ui; -} \ No newline at end of file +} diff --git a/Modules/USUI/Qmitk/QmitkUSControlsDopplerWidget.h b/Modules/USUI/Qmitk/QmitkUSControlsDopplerWidget.h index fba7e082c5b..236d1d71453 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsDopplerWidget.h +++ b/Modules/USUI/Qmitk/QmitkUSControlsDopplerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSCONTROLSDOPPLERWIDGET_H #define QMITKUSCONTROLSDOPPLERWIDGET_H @@ -55,4 +51,4 @@ private slots: mitk::USControlInterfaceDoppler::Pointer m_ControlInterface; }; -#endif // QMITKUSCONTROLSDOPPLERWIDGET_H \ No newline at end of file +#endif // QMITKUSCONTROLSDOPPLERWIDGET_H diff --git a/Modules/USUI/Qmitk/QmitkUSControlsProbesWidget.cpp b/Modules/USUI/Qmitk/QmitkUSControlsProbesWidget.cpp index 55531bc3d28..181e70d4fea 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsProbesWidget.cpp +++ b/Modules/USUI/Qmitk/QmitkUSControlsProbesWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSControlsProbesWidget.h" #include "ui_QmitkUSControlsProbesWidget.h" @@ -60,4 +56,4 @@ QmitkUSControlsProbesWidget::~QmitkUSControlsProbesWidget() void QmitkUSControlsProbesWidget::OnProbeControlActivated(int index) { m_ControlInterface->SelectProbe(index); -} \ No newline at end of file +} diff --git a/Modules/USUI/Qmitk/QmitkUSControlsProbesWidget.h b/Modules/USUI/Qmitk/QmitkUSControlsProbesWidget.h index c15a4d3bfa0..b543a177c32 100644 --- a/Modules/USUI/Qmitk/QmitkUSControlsProbesWidget.h +++ b/Modules/USUI/Qmitk/QmitkUSControlsProbesWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSCONTROLSPROBESWIDGET_H #define QMITKUSCONTROLSPROBESWIDGET_H diff --git a/Modules/USUI/Qmitk/QmitkUSDeviceManagerWidget.cpp b/Modules/USUI/Qmitk/QmitkUSDeviceManagerWidget.cpp index e435fd10226..257ebb5a3ee 100644 --- a/Modules/USUI/Qmitk/QmitkUSDeviceManagerWidget.cpp +++ b/Modules/USUI/Qmitk/QmitkUSDeviceManagerWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define _USE_MATH_DEFINES #include diff --git a/Modules/USUI/Qmitk/QmitkUSDeviceManagerWidget.h b/Modules/USUI/Qmitk/QmitkUSDeviceManagerWidget.h index 5074a50818e..1c713bafc75 100644 --- a/Modules/USUI/Qmitk/QmitkUSDeviceManagerWidget.h +++ b/Modules/USUI/Qmitk/QmitkUSDeviceManagerWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkUSDeviceManagerWidget_H_INCLUDED #define _QmitkUSDeviceManagerWidget_H_INCLUDED diff --git a/Modules/USUI/Qmitk/QmitkUSNewVideoDeviceWidget.cpp b/Modules/USUI/Qmitk/QmitkUSNewVideoDeviceWidget.cpp index 9176b33562e..41925e94c14 100644 --- a/Modules/USUI/Qmitk/QmitkUSNewVideoDeviceWidget.cpp +++ b/Modules/USUI/Qmitk/QmitkUSNewVideoDeviceWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //#define _USE_MATH_DEFINES #include diff --git a/Modules/USUI/Qmitk/QmitkUSNewVideoDeviceWidget.h b/Modules/USUI/Qmitk/QmitkUSNewVideoDeviceWidget.h index 78e45d50cb8..055a83c5f8e 100644 --- a/Modules/USUI/Qmitk/QmitkUSNewVideoDeviceWidget.h +++ b/Modules/USUI/Qmitk/QmitkUSNewVideoDeviceWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QmitkUSNewVideoDeviceWidget_H_INCLUDED #define _QmitkUSNewVideoDeviceWidget_H_INCLUDED diff --git a/Modules/USUI/mitkUSUIActivator.cpp b/Modules/USUI/mitkUSUIActivator.cpp index f502a71789e..5e2a510c6cd 100644 --- a/Modules/USUI/mitkUSUIActivator.cpp +++ b/Modules/USUI/mitkUSUIActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSUIActivator.h" #include "QmitkUSControlsCustomVideoDeviceWidget.h" diff --git a/Modules/USUI/mitkUSUIActivator.h b/Modules/USUI/mitkUSUIActivator.h index c08801cd759..8157e7a3341 100644 --- a/Modules/USUI/mitkUSUIActivator.h +++ b/Modules/USUI/mitkUSUIActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __mitkUSUIActivator_h #define __mitkUSUIActivator_h diff --git a/Modules/XNAT/include/QmitkHttpStatusCodeHandler.h b/Modules/XNAT/include/QmitkHttpStatusCodeHandler.h index fc32231d120..a6ebd38720d 100644 --- a/Modules/XNAT/include/QmitkHttpStatusCodeHandler.h +++ b/Modules/XNAT/include/QmitkHttpStatusCodeHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKHTTPSTATUSCODEHANDLER_H #define QMITKHTTPSTATUSCODEHANDLER_H diff --git a/Modules/XNAT/include/QmitkSelectXnatUploadDestinationDialog.h b/Modules/XNAT/include/QmitkSelectXnatUploadDestinationDialog.h index 998c8cd492a..178cdbe9a14 100644 --- a/Modules/XNAT/include/QmitkSelectXnatUploadDestinationDialog.h +++ b/Modules/XNAT/include/QmitkSelectXnatUploadDestinationDialog.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef QMITKSELECTXNATUPLOADDESTINATIONDIALOG_H #define QMITKSELECTXNATUPLOADDESTINATIONDIALOG_H diff --git a/Modules/XNAT/include/QmitkXnatCreateObjectDialog.h b/Modules/XNAT/include/QmitkXnatCreateObjectDialog.h index 0e6e590e21a..f4e166c1258 100644 --- a/Modules/XNAT/include/QmitkXnatCreateObjectDialog.h +++ b/Modules/XNAT/include/QmitkXnatCreateObjectDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATCREATEOBJECTDIALOG_H #define QMITKXNATCREATEOBJECTDIALOG_H diff --git a/Modules/XNAT/include/QmitkXnatExperimentWidget.h b/Modules/XNAT/include/QmitkXnatExperimentWidget.h index 2a78a216c7a..a75aa3ec289 100644 --- a/Modules/XNAT/include/QmitkXnatExperimentWidget.h +++ b/Modules/XNAT/include/QmitkXnatExperimentWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological rmatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATEXPERIMENTWIDGET_H #define QMITKXNATEXPERIMENTWIDGET_H diff --git a/Modules/XNAT/include/QmitkXnatProjectWidget.h b/Modules/XNAT/include/QmitkXnatProjectWidget.h index d9022ecb212..0ec55ccd460 100644 --- a/Modules/XNAT/include/QmitkXnatProjectWidget.h +++ b/Modules/XNAT/include/QmitkXnatProjectWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological rmatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATPROJECTWIDGET_H #define QMITKXNATPROJECTWIDGET_H diff --git a/Modules/XNAT/include/QmitkXnatSubjectWidget.h b/Modules/XNAT/include/QmitkXnatSubjectWidget.h index fd961332208..44990f2421d 100644 --- a/Modules/XNAT/include/QmitkXnatSubjectWidget.h +++ b/Modules/XNAT/include/QmitkXnatSubjectWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATSUBJECTWIDGET_H #define QMITKXNATSUBJECTWIDGET_H diff --git a/Modules/XNAT/include/QmitkXnatTreeModel.h b/Modules/XNAT/include/QmitkXnatTreeModel.h index ca49dc14e7f..ca07109751f 100644 --- a/Modules/XNAT/include/QmitkXnatTreeModel.h +++ b/Modules/XNAT/include/QmitkXnatTreeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATTREEMODEL_H #define QMITKXNATTREEMODEL_H diff --git a/Modules/XNAT/include/QmitkXnatUploadFromDataStorageDialog.h b/Modules/XNAT/include/QmitkXnatUploadFromDataStorageDialog.h index 9800ee51446..66d164bb908 100644 --- a/Modules/XNAT/include/QmitkXnatUploadFromDataStorageDialog.h +++ b/Modules/XNAT/include/QmitkXnatUploadFromDataStorageDialog.h @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #ifndef QMITKXNATUPLOADFROMDATASTORAGEDIALOG_H #define QMITKXNATUPLOADFROMDATASTORAGEDIALOG_H diff --git a/Modules/XNAT/include/mitkXnatSession.h b/Modules/XNAT/include/mitkXnatSession.h index bdd2b6ee853..295d1299457 100644 --- a/Modules/XNAT/include/mitkXnatSession.h +++ b/Modules/XNAT/include/mitkXnatSession.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKXNATSESSION_H #define MITKXNATSESSION_H diff --git a/Modules/XNAT/include/mitkXnatSessionTracker.h b/Modules/XNAT/include/mitkXnatSessionTracker.h index 3132de565af..6dfb2a7d2ca 100644 --- a/Modules/XNAT/include/mitkXnatSessionTracker.h +++ b/Modules/XNAT/include/mitkXnatSessionTracker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKXNATSESSIONTRACKER_H #define MITKXNATSESSIONTRACKER_H diff --git a/Modules/XNAT/src/QmitkHttpStatusCodeHandler.cpp b/Modules/XNAT/src/QmitkHttpStatusCodeHandler.cpp index 00f822cde64..e1c19787199 100644 --- a/Modules/XNAT/src/QmitkHttpStatusCodeHandler.cpp +++ b/Modules/XNAT/src/QmitkHttpStatusCodeHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkHttpStatusCodeHandler.h" #include "QMessageBox" diff --git a/Modules/XNAT/src/QmitkSelectXnatUploadDestinationDialog.cpp b/Modules/XNAT/src/QmitkSelectXnatUploadDestinationDialog.cpp index 45730809016..409eba81132 100644 --- a/Modules/XNAT/src/QmitkSelectXnatUploadDestinationDialog.cpp +++ b/Modules/XNAT/src/QmitkSelectXnatUploadDestinationDialog.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "QmitkSelectXnatUploadDestinationDialog.h" #include "ui_QmitkSelectXnatUploadDestinationDialog.h" diff --git a/Modules/XNAT/src/QmitkXnatCreateObjectDialog.cpp b/Modules/XNAT/src/QmitkXnatCreateObjectDialog.cpp index dcbb8886865..4f69cfd4055 100644 --- a/Modules/XNAT/src/QmitkXnatCreateObjectDialog.cpp +++ b/Modules/XNAT/src/QmitkXnatCreateObjectDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological rmatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatCreateObjectDialog.h" diff --git a/Modules/XNAT/src/QmitkXnatExperimentWidget.cpp b/Modules/XNAT/src/QmitkXnatExperimentWidget.cpp index 39887741f39..72c7f8d214d 100644 --- a/Modules/XNAT/src/QmitkXnatExperimentWidget.cpp +++ b/Modules/XNAT/src/QmitkXnatExperimentWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological rmatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatExperimentWidget.h" diff --git a/Modules/XNAT/src/QmitkXnatProjectWidget.cpp b/Modules/XNAT/src/QmitkXnatProjectWidget.cpp index 97ff01ca146..58398284769 100644 --- a/Modules/XNAT/src/QmitkXnatProjectWidget.cpp +++ b/Modules/XNAT/src/QmitkXnatProjectWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological rmatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatProjectWidget.h" diff --git a/Modules/XNAT/src/QmitkXnatSubjectWidget.cpp b/Modules/XNAT/src/QmitkXnatSubjectWidget.cpp index 0d4525d6be4..29f284c03f3 100644 --- a/Modules/XNAT/src/QmitkXnatSubjectWidget.cpp +++ b/Modules/XNAT/src/QmitkXnatSubjectWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatSubjectWidget.h" diff --git a/Modules/XNAT/src/QmitkXnatTreeModel.cpp b/Modules/XNAT/src/QmitkXnatTreeModel.cpp index a6603b64ca7..3b3871b1885 100644 --- a/Modules/XNAT/src/QmitkXnatTreeModel.cpp +++ b/Modules/XNAT/src/QmitkXnatTreeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatTreeModel.h" #include diff --git a/Modules/XNAT/src/QmitkXnatUploadFromDataStorageDialog.cpp b/Modules/XNAT/src/QmitkXnatUploadFromDataStorageDialog.cpp index a31706c756f..6b10782713e 100644 --- a/Modules/XNAT/src/QmitkXnatUploadFromDataStorageDialog.cpp +++ b/Modules/XNAT/src/QmitkXnatUploadFromDataStorageDialog.cpp @@ -1,3 +1,15 @@ +/*============================================================================ + +The Medical Imaging Interaction Toolkit (MITK) + +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. + +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. + +============================================================================*/ + #include "QmitkXnatUploadFromDataStorageDialog.h" #include "ui_QmitkXnatUploadFromDataStorageDialog.h" diff --git a/Modules/XNAT/src/mitkXnatSessionTracker.cpp b/Modules/XNAT/src/mitkXnatSessionTracker.cpp index d2a6e5cbd42..00f9f7aa470 100644 --- a/Modules/XNAT/src/mitkXnatSessionTracker.cpp +++ b/Modules/XNAT/src/mitkXnatSessionTracker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkXnatSessionTracker.h" diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/manifest_headers.cmake b/Plugins/Testing/org.blueberry.core.runtime.tests/manifest_headers.cmake index 8b41b0f2cf5..5b1f7b7e149 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/manifest_headers.cmake +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "Core Runtime Test Bundle") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.test org.blueberry.core.runtime) diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryCoreRuntimeTestSuite.cpp b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryCoreRuntimeTestSuite.cpp index 336dee5c989..595ff7f2541 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryCoreRuntimeTestSuite.cpp +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryCoreRuntimeTestSuite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryCoreRuntimeTestSuite.h b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryCoreRuntimeTestSuite.h index c0353c8c40a..7032be05daf 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryCoreRuntimeTestSuite.h +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryCoreRuntimeTestSuite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCORERUNTIMETESTSUITE_H_ diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPluginActivator.cpp b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPluginActivator.cpp index db0e7adcd47..4d01f619993 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPluginActivator.cpp +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "berryPluginActivator.h" diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPluginActivator.h b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPluginActivator.h index f90dc13337e..7a5e6ca1635 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPluginActivator.h +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLUGINACTIVATOR_H diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesServiceTest.cpp b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesServiceTest.cpp index eed8689bd0c..ba0dc787f8f 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesServiceTest.cpp +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesServiceTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPreferencesServiceTest.h" #include diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesServiceTest.h b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesServiceTest.h index 1d8bb193a20..286abb90109 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesServiceTest.h +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesServiceTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPREFERENCESSERVICETEST_H_ diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesTest.cpp b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesTest.cpp index 36001e5af8b..cecc4376914 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesTest.cpp +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPreferencesTest.h" diff --git a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesTest.h b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesTest.h index d0848853f32..7cddaf0d045 100644 --- a/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesTest.h +++ b/Plugins/Testing/org.blueberry.core.runtime.tests/src/berryPreferencesTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPREFERENCESTEST_H_ diff --git a/Plugins/Testing/org.blueberry.osgi.tests/manifest_headers.cmake b/Plugins/Testing/org.blueberry.osgi.tests/manifest_headers.cmake index 68eb0fe0b84..b4779358f4b 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/manifest_headers.cmake +++ b/Plugins/Testing/org.blueberry.osgi.tests/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "OSGi Test Bundle") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.test) diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryMessageTest.cpp b/Plugins/Testing/org.blueberry.osgi.tests/src/berryMessageTest.cpp index 978881e10cc..f0cdb6ac21e 100755 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryMessageTest.cpp +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryMessageTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMessageTest.h" diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryMessageTest.h b/Plugins/Testing/org.blueberry.osgi.tests/src/berryMessageTest.h index cf20082ecdf..9ef394df41a 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryMessageTest.h +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryMessageTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMESSAGETEST_H_ diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryOSGiCoreTestSuite.cpp b/Plugins/Testing/org.blueberry.osgi.tests/src/berryOSGiCoreTestSuite.cpp index 20efe61146d..5b9c1cfea50 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryOSGiCoreTestSuite.cpp +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryOSGiCoreTestSuite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryOSGiCoreTestSuite.h b/Plugins/Testing/org.blueberry.osgi.tests/src/berryOSGiCoreTestSuite.h index 439f39a87c9..fe203aaf5c7 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryOSGiCoreTestSuite.h +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryOSGiCoreTestSuite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOSGICORETESTSUITE_H_ diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryObjectTest.cpp b/Plugins/Testing/org.blueberry.osgi.tests/src/berryObjectTest.cpp index 1a7b7705ee8..4c9e0402d43 100755 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryObjectTest.cpp +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryObjectTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryObjectTest.h" diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryObjectTest.h b/Plugins/Testing/org.blueberry.osgi.tests/src/berryObjectTest.h index 7d8c9d31429..78cdd44d838 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryObjectTest.h +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryObjectTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECTTEST_H_ diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryPluginActivator.cpp b/Plugins/Testing/org.blueberry.osgi.tests/src/berryPluginActivator.cpp index 2c579f0e521..56bfcaf1fb7 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryPluginActivator.cpp +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "berryPluginActivator.h" diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryPluginActivator.h b/Plugins/Testing/org.blueberry.osgi.tests/src/berryPluginActivator.h index e3198eee1ee..ff480c83e5d 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryPluginActivator.h +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLUGINACTIVATOR_H diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berrySmartPointerTest.cpp b/Plugins/Testing/org.blueberry.osgi.tests/src/berrySmartPointerTest.cpp index 0acdb33ba2a..7db7b570558 100755 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berrySmartPointerTest.cpp +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berrySmartPointerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySmartPointerTest.h" diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berrySmartPointerTest.h b/Plugins/Testing/org.blueberry.osgi.tests/src/berrySmartPointerTest.h index 6743b4e5f9d..a31b1def1c8 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berrySmartPointerTest.h +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berrySmartPointerTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSMARTPOINTERTEST_H_ diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryWeakPointerTest.cpp b/Plugins/Testing/org.blueberry.osgi.tests/src/berryWeakPointerTest.cpp index 61003ee903f..095cb240ba2 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryWeakPointerTest.cpp +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryWeakPointerTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/Testing/org.blueberry.osgi.tests/src/berryWeakPointerTest.h b/Plugins/Testing/org.blueberry.osgi.tests/src/berryWeakPointerTest.h index 6528dd5b061..49999b0e399 100644 --- a/Plugins/Testing/org.blueberry.osgi.tests/src/berryWeakPointerTest.h +++ b/Plugins/Testing/org.blueberry.osgi.tests/src/berryWeakPointerTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWEAKPOINTERTEST_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/manifest_headers.cmake b/Plugins/Testing/org.blueberry.ui.tests/manifest_headers.cmake index e114bf166fb..a62f14f395d 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/manifest_headers.cmake +++ b/Plugins/Testing/org.blueberry.ui.tests/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "UI Automated Tests") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.uitest) diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIPageLayoutTest.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIPageLayoutTest.cpp index 4fdf65b58d6..f7ab8f4ee7b 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIPageLayoutTest.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIPageLayoutTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPageLayoutTest.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIPageLayoutTest.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIPageLayoutTest.h index 70e49c5b507..6fb416f0715 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIPageLayoutTest.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIPageLayoutTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPAGELAYOUTTEST_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIViewPartTest.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIViewPartTest.cpp index ff2904216d2..1ef4c88b2ba 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIViewPartTest.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIViewPartTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIViewPartTest.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIViewPartTest.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIViewPartTest.h index 8d0f1fccbef..d9cf70d0688 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIViewPartTest.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIViewPartTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVIEWPARTTEST_H_ #define BERRYIVIEWPARTTEST_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIWorkbenchPartTest.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIWorkbenchPartTest.cpp index 86679cffdbc..691de05bb3f 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIWorkbenchPartTest.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIWorkbenchPartTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchPartTest.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIWorkbenchPartTest.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIWorkbenchPartTest.h index a66572ea70a..5ff79c661a3 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIWorkbenchPartTest.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryIWorkbenchPartTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHPARTTEST_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockSelectionProvider.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockSelectionProvider.cpp index 9e5682be937..5a15443c7e3 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockSelectionProvider.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockSelectionProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMockSelectionProvider.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockSelectionProvider.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockSelectionProvider.h index 1927680b3ec..fe1b1c4473f 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockSelectionProvider.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockSelectionProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMOCKSELECTIONPROVIDER_H_ #define BERRYMOCKSELECTIONPROVIDER_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockViewPart.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockViewPart.cpp index b54181fae54..1e4403e4803 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockViewPart.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockViewPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMockViewPart.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockViewPart.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockViewPart.h index d26d77206da..5067f2e3ad2 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockViewPart.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockViewPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMOCKVIEWPART_H_ #define BERRYMOCKVIEWPART_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockWorkbenchPart.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockWorkbenchPart.cpp index a891c5c1fb0..4353c1fd5fe 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockWorkbenchPart.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockWorkbenchPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMockWorkbenchPart.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockWorkbenchPart.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockWorkbenchPart.h index 0abead250b5..1884a4ef0bb 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockWorkbenchPart.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryMockWorkbenchPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHMOCKPART_H_ #define BERRYWORKBENCHMOCKPART_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berrySaveableMockViewPart.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berrySaveableMockViewPart.cpp index be1c4128384..585b0aa11f6 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berrySaveableMockViewPart.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berrySaveableMockViewPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySaveableMockViewPart.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berrySaveableMockViewPart.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berrySaveableMockViewPart.h index 2d3d43657c6..8c03683e5dc 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berrySaveableMockViewPart.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berrySaveableMockViewPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAVEABLEMOCKVIEWPART_H_ #define BERRYSAVEABLEMOCKVIEWPART_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryUiApiTestSuite.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryUiApiTestSuite.cpp index 2426cf66fc2..2d8a93e9d4f 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryUiApiTestSuite.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryUiApiTestSuite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUiApiTestSuite.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryUiApiTestSuite.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryUiApiTestSuite.h index 2ae3e57b154..7ac2f07abe6 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryUiApiTestSuite.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryUiApiTestSuite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUIAPITESTSUITE_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryXMLMementoTest.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryXMLMementoTest.cpp index 4bf1030ff9f..593ee46fe84 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryXMLMementoTest.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryXMLMementoTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define NOMINMAX diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryXMLMementoTest.h b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryXMLMementoTest.h index 915d7e17565..95e97680c9b 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/api/berryXMLMementoTest.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/api/berryXMLMementoTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYXMLMEMENTOTEST_H_ #define BERRYXMLMEMENTOTEST_H_ diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/berryPluginActivator.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/berryPluginActivator.cpp index 907b42e9fc4..dceb56dca76 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/berryPluginActivator.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/berryPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPluginActivator.h" #include "berryUiTestSuite.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/berryPluginActivator.h b/Plugins/Testing/org.blueberry.ui.tests/src/berryPluginActivator.h index d4e0718375d..b5fbf8e6765 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/berryPluginActivator.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/berryPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLUGINACTIVATOR_H diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/berryUiTestSuite.cpp b/Plugins/Testing/org.blueberry.ui.tests/src/berryUiTestSuite.cpp index 3fe72e65c29..a0c700e43f0 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/berryUiTestSuite.cpp +++ b/Plugins/Testing/org.blueberry.ui.tests/src/berryUiTestSuite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUiTestSuite.h" diff --git a/Plugins/Testing/org.blueberry.ui.tests/src/berryUiTestSuite.h b/Plugins/Testing/org.blueberry.ui.tests/src/berryUiTestSuite.h index c5935f2c997..653efb08de2 100644 --- a/Plugins/Testing/org.blueberry.ui.tests/src/berryUiTestSuite.h +++ b/Plugins/Testing/org.blueberry.ui.tests/src/berryUiTestSuite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUITESTSUITE_H_ diff --git a/Plugins/org.blueberry.core.commands/manifest_headers.cmake b/Plugins/org.blueberry.core.commands/manifest_headers.cmake index 331e4404bfc..7883c7d99a5 100644 --- a/Plugins/org.blueberry.core.commands/manifest_headers.cmake +++ b/Plugins/org.blueberry.core.commands/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Core Commands Plugin") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin "org.blueberry.core.runtime") diff --git a/Plugins/org.blueberry.core.commands/src/berryAbstractHandler.cpp b/Plugins/org.blueberry.core.commands/src/berryAbstractHandler.cpp index a7bfb6823bf..f099740eee7 100644 --- a/Plugins/org.blueberry.core.commands/src/berryAbstractHandler.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryAbstractHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractHandler.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryAbstractHandler.h b/Plugins/org.blueberry.core.commands/src/berryAbstractHandler.h index e841cc055fb..789d7df4712 100644 --- a/Plugins/org.blueberry.core.commands/src/berryAbstractHandler.h +++ b/Plugins/org.blueberry.core.commands/src/berryAbstractHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTHANDLER_H_ #define BERRYABSTRACTHANDLER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryAbstractHandlerWithState.cpp b/Plugins/org.blueberry.core.commands/src/berryAbstractHandlerWithState.cpp index 9d4e670647a..7d31cfafae2 100644 --- a/Plugins/org.blueberry.core.commands/src/berryAbstractHandlerWithState.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryAbstractHandlerWithState.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractHandlerWithState.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryAbstractHandlerWithState.h b/Plugins/org.blueberry.core.commands/src/berryAbstractHandlerWithState.h index 34fde0ae815..50528e600e2 100644 --- a/Plugins/org.blueberry.core.commands/src/berryAbstractHandlerWithState.h +++ b/Plugins/org.blueberry.core.commands/src/berryAbstractHandlerWithState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTHANDLERWITHSTATE_H #define BERRYABSTRACTHANDLERWITHSTATE_H diff --git a/Plugins/org.blueberry.core.commands/src/berryCommand.cpp b/Plugins/org.blueberry.core.commands/src/berryCommand.cpp index a4984640efc..a1da140043f 100644 --- a/Plugins/org.blueberry.core.commands/src/berryCommand.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryCommand.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommand.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryCommand.h b/Plugins/org.blueberry.core.commands/src/berryCommand.h index 7c960350a44..adea1e035fd 100644 --- a/Plugins/org.blueberry.core.commands/src/berryCommand.h +++ b/Plugins/org.blueberry.core.commands/src/berryCommand.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMAND_H_ #define BERRYCOMMAND_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandCategory.cpp b/Plugins/org.blueberry.core.commands/src/berryCommandCategory.cpp index e520d032fd5..708605cfc43 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandCategory.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryCommandCategory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandCategory.h" #include "berryCommandCategoryEvent.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandCategory.h b/Plugins/org.blueberry.core.commands/src/berryCommandCategory.h index 95376e0145f..3d3b862659b 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandCategory.h +++ b/Plugins/org.blueberry.core.commands/src/berryCommandCategory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDCATEGORY_H_ #define BERRYCOMMANDCATEGORY_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandCategoryEvent.cpp b/Plugins/org.blueberry.core.commands/src/berryCommandCategoryEvent.cpp index c236386de8b..f7f7e6f40eb 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandCategoryEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryCommandCategoryEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandCategoryEvent.h" #include "berryCommandCategory.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandCategoryEvent.h b/Plugins/org.blueberry.core.commands/src/berryCommandCategoryEvent.h index faf2f7673ae..d0b7507e185 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandCategoryEvent.h +++ b/Plugins/org.blueberry.core.commands/src/berryCommandCategoryEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDCATEGORYEVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandEvent.cpp b/Plugins/org.blueberry.core.commands/src/berryCommandEvent.cpp index 5b6396da1b0..0b59d158d0d 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryCommandEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandEvent.h" #include "berryCommand.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandEvent.h b/Plugins/org.blueberry.core.commands/src/berryCommandEvent.h index 938adce34f9..2fc3296faa7 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandEvent.h +++ b/Plugins/org.blueberry.core.commands/src/berryCommandEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDEVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandManager.cpp b/Plugins/org.blueberry.core.commands/src/berryCommandManager.cpp index 1b0e110f39f..af2a79416eb 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandManager.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryCommandManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandManager.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandManager.h b/Plugins/org.blueberry.core.commands/src/berryCommandManager.h index 4cf66ee2875..4cc307186f1 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandManager.h +++ b/Plugins/org.blueberry.core.commands/src/berryCommandManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDMANAGER_H_ #define BERRYCOMMANDMANAGER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandManagerEvent.cpp b/Plugins/org.blueberry.core.commands/src/berryCommandManagerEvent.cpp index 4c35721319f..aab8eedbc5e 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandManagerEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryCommandManagerEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandManagerEvent.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryCommandManagerEvent.h b/Plugins/org.blueberry.core.commands/src/berryCommandManagerEvent.h index 3071bd257ac..98ca63457c6 100755 --- a/Plugins/org.blueberry.core.commands/src/berryCommandManagerEvent.h +++ b/Plugins/org.blueberry.core.commands/src/berryCommandManagerEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDMANAGEREVENT_H_ #define BERRYCOMMANDMANAGEREVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryExecutionEvent.cpp b/Plugins/org.blueberry.core.commands/src/berryExecutionEvent.cpp index d7da9f8f815..e1a52f52d0a 100644 --- a/Plugins/org.blueberry.core.commands/src/berryExecutionEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryExecutionEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExecutionEvent.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryExecutionEvent.h b/Plugins/org.blueberry.core.commands/src/berryExecutionEvent.h index 7fc50536131..d6871926b55 100644 --- a/Plugins/org.blueberry.core.commands/src/berryExecutionEvent.h +++ b/Plugins/org.blueberry.core.commands/src/berryExecutionEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXECUTIONEVENT_H_ #define BERRYEXECUTIONEVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryHandlerEvent.cpp b/Plugins/org.blueberry.core.commands/src/berryHandlerEvent.cpp index 6ca82bdf998..3cc6617726b 100755 --- a/Plugins/org.blueberry.core.commands/src/berryHandlerEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryHandlerEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandlerEvent.h" #include "berryIHandler.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryHandlerEvent.h b/Plugins/org.blueberry.core.commands/src/berryHandlerEvent.h index 7599b1fbf91..935787acbd9 100755 --- a/Plugins/org.blueberry.core.commands/src/berryHandlerEvent.h +++ b/Plugins/org.blueberry.core.commands/src/berryHandlerEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLEREVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryICommandCategoryListener.cpp b/Plugins/org.blueberry.core.commands/src/berryICommandCategoryListener.cpp index 10b57ce4022..2546ad5a6b2 100755 --- a/Plugins/org.blueberry.core.commands/src/berryICommandCategoryListener.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryICommandCategoryListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryICommandCategoryListener.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryICommandCategoryListener.h b/Plugins/org.blueberry.core.commands/src/berryICommandCategoryListener.h index c71d2153ab4..a7e439bf21f 100755 --- a/Plugins/org.blueberry.core.commands/src/berryICommandCategoryListener.h +++ b/Plugins/org.blueberry.core.commands/src/berryICommandCategoryListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICOMMANDCATEGORYLISTENER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryICommandListener.cpp b/Plugins/org.blueberry.core.commands/src/berryICommandListener.cpp index 5a1b36dca31..bd5302df955 100755 --- a/Plugins/org.blueberry.core.commands/src/berryICommandListener.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryICommandListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryICommandListener.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryICommandListener.h b/Plugins/org.blueberry.core.commands/src/berryICommandListener.h index c9c56e46c20..20a52327845 100755 --- a/Plugins/org.blueberry.core.commands/src/berryICommandListener.h +++ b/Plugins/org.blueberry.core.commands/src/berryICommandListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICOMMANDLISTENER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryICommandManagerListener.cpp b/Plugins/org.blueberry.core.commands/src/berryICommandManagerListener.cpp index 030a2596fd3..9830f8693e1 100755 --- a/Plugins/org.blueberry.core.commands/src/berryICommandManagerListener.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryICommandManagerListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryICommandManagerListener.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryICommandManagerListener.h b/Plugins/org.blueberry.core.commands/src/berryICommandManagerListener.h index f83131b557f..0d6640c342a 100755 --- a/Plugins/org.blueberry.core.commands/src/berryICommandManagerListener.h +++ b/Plugins/org.blueberry.core.commands/src/berryICommandManagerListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICOMMANDMANAGERLISTENER_H_ #define BERRYICOMMANDMANAGERLISTENER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIExecutionListener.cpp b/Plugins/org.blueberry.core.commands/src/berryIExecutionListener.cpp index f246877fa75..6a8f09b79ae 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIExecutionListener.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryIExecutionListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExecutionListener.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryIExecutionListener.h b/Plugins/org.blueberry.core.commands/src/berryIExecutionListener.h index 86be22628c5..3b2c8d222db 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIExecutionListener.h +++ b/Plugins/org.blueberry.core.commands/src/berryIExecutionListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXECUTIONLISTENER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIExecutionListenerWithChecks.cpp b/Plugins/org.blueberry.core.commands/src/berryIExecutionListenerWithChecks.cpp index c63df19bd92..76898b6abf1 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIExecutionListenerWithChecks.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryIExecutionListenerWithChecks.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExecutionListenerWithChecks.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryIExecutionListenerWithChecks.h b/Plugins/org.blueberry.core.commands/src/berryIExecutionListenerWithChecks.h index d81887914fd..652d363be05 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIExecutionListenerWithChecks.h +++ b/Plugins/org.blueberry.core.commands/src/berryIExecutionListenerWithChecks.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXECUTIONLISTENERWITHCHECKS_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIHandler.h b/Plugins/org.blueberry.core.commands/src/berryIHandler.h index e3ee9475584..3ca64f1dc4a 100644 --- a/Plugins/org.blueberry.core.commands/src/berryIHandler.h +++ b/Plugins/org.blueberry.core.commands/src/berryIHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIHANDLER_H_ #define BERRYIHANDLER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIHandlerListener.cpp b/Plugins/org.blueberry.core.commands/src/berryIHandlerListener.cpp index 161d69084a3..8425d59fc3c 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIHandlerListener.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryIHandlerListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIHandlerListener.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryIHandlerListener.h b/Plugins/org.blueberry.core.commands/src/berryIHandlerListener.h index cde1f9fc6f7..9b561f9e0bf 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIHandlerListener.h +++ b/Plugins/org.blueberry.core.commands/src/berryIHandlerListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIHANDLERLISTENER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryINamedHandleStateIds.cpp b/Plugins/org.blueberry.core.commands/src/berryINamedHandleStateIds.cpp index ece10812c77..0b659648df6 100755 --- a/Plugins/org.blueberry.core.commands/src/berryINamedHandleStateIds.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryINamedHandleStateIds.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryINamedHandleStateIds.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryINamedHandleStateIds.h b/Plugins/org.blueberry.core.commands/src/berryINamedHandleStateIds.h index 5ebd8d5b9ab..34730d9443d 100755 --- a/Plugins/org.blueberry.core.commands/src/berryINamedHandleStateIds.h +++ b/Plugins/org.blueberry.core.commands/src/berryINamedHandleStateIds.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINAMEDHANDLESTATEIDS_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIObjectWithState.h b/Plugins/org.blueberry.core.commands/src/berryIObjectWithState.h index fc15b5b4240..0c242f62f7a 100644 --- a/Plugins/org.blueberry.core.commands/src/berryIObjectWithState.h +++ b/Plugins/org.blueberry.core.commands/src/berryIObjectWithState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIOBJECTWITHSTATE_H_ #define BERRYIOBJECTWITHSTATE_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIParameter.h b/Plugins/org.blueberry.core.commands/src/berryIParameter.h index 44be5babf9f..bbf3f757bc9 100644 --- a/Plugins/org.blueberry.core.commands/src/berryIParameter.h +++ b/Plugins/org.blueberry.core.commands/src/berryIParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPARAMETER_H_ #define BERRYIPARAMETER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIParameterTypeListener.cpp b/Plugins/org.blueberry.core.commands/src/berryIParameterTypeListener.cpp index a5e59bce390..7c4ce859866 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIParameterTypeListener.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryIParameterTypeListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIParameterTypeListener.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryIParameterTypeListener.h b/Plugins/org.blueberry.core.commands/src/berryIParameterTypeListener.h index dd51f3bc424..3665186eb47 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIParameterTypeListener.h +++ b/Plugins/org.blueberry.core.commands/src/berryIParameterTypeListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPARAMETERTYPELISTENER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIParameterValueConverter.cpp b/Plugins/org.blueberry.core.commands/src/berryIParameterValueConverter.cpp index 503ce215b13..1b003d66ee3 100644 --- a/Plugins/org.blueberry.core.commands/src/berryIParameterValueConverter.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryIParameterValueConverter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIParameterValueConverter.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryIParameterValueConverter.h b/Plugins/org.blueberry.core.commands/src/berryIParameterValueConverter.h index 9c0d2e40b3b..d69f77d1664 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIParameterValueConverter.h +++ b/Plugins/org.blueberry.core.commands/src/berryIParameterValueConverter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTPARAMETERVALUECONVERTER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryIParameterValues.cpp b/Plugins/org.blueberry.core.commands/src/berryIParameterValues.cpp index c0230ebfaa6..2bf3b727ba9 100644 --- a/Plugins/org.blueberry.core.commands/src/berryIParameterValues.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryIParameterValues.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIParameterValues.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryIParameterValues.h b/Plugins/org.blueberry.core.commands/src/berryIParameterValues.h index 9ca0067964c..9e01716845b 100644 --- a/Plugins/org.blueberry.core.commands/src/berryIParameterValues.h +++ b/Plugins/org.blueberry.core.commands/src/berryIParameterValues.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPARAMETERVALUES_H #define BERRYIPARAMETERVALUES_H diff --git a/Plugins/org.blueberry.core.commands/src/berryIStateListener.cpp b/Plugins/org.blueberry.core.commands/src/berryIStateListener.cpp index 74ad205d8b1..93099a2b277 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIStateListener.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryIStateListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIStateListener.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryIStateListener.h b/Plugins/org.blueberry.core.commands/src/berryIStateListener.h index f99c2264543..82561349e7c 100755 --- a/Plugins/org.blueberry.core.commands/src/berryIStateListener.h +++ b/Plugins/org.blueberry.core.commands/src/berryIStateListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISTATELISTENER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryITypedParameter.h b/Plugins/org.blueberry.core.commands/src/berryITypedParameter.h index 2430c741299..fc0a18d90df 100755 --- a/Plugins/org.blueberry.core.commands/src/berryITypedParameter.h +++ b/Plugins/org.blueberry.core.commands/src/berryITypedParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYITYPEDPARAMETER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryNamedHandleObjectWithState.cpp b/Plugins/org.blueberry.core.commands/src/berryNamedHandleObjectWithState.cpp index af8e2833c8c..b1d63140d37 100644 --- a/Plugins/org.blueberry.core.commands/src/berryNamedHandleObjectWithState.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryNamedHandleObjectWithState.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNamedHandleObjectWithState.h" #include "berryINamedHandleStateIds.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryNamedHandleObjectWithState.h b/Plugins/org.blueberry.core.commands/src/berryNamedHandleObjectWithState.h index 3cfc1d5b281..34d3505f8fa 100644 --- a/Plugins/org.blueberry.core.commands/src/berryNamedHandleObjectWithState.h +++ b/Plugins/org.blueberry.core.commands/src/berryNamedHandleObjectWithState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYNAMEDHANDLEOBJECTWITHSTATE_H_ #define BERRYNAMEDHANDLEOBJECTWITHSTATE_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryParameterType.cpp b/Plugins/org.blueberry.core.commands/src/berryParameterType.cpp index b94f5a09eec..893cbb804b0 100755 --- a/Plugins/org.blueberry.core.commands/src/berryParameterType.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryParameterType.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryParameterType.h" #include "internal/berryCommandUtils.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryParameterType.h b/Plugins/org.blueberry.core.commands/src/berryParameterType.h index 43ded084299..8bf61603e8b 100755 --- a/Plugins/org.blueberry.core.commands/src/berryParameterType.h +++ b/Plugins/org.blueberry.core.commands/src/berryParameterType.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARAMETERTYPE_H_ #define BERRYPARAMETERTYPE_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryParameterTypeEvent.cpp b/Plugins/org.blueberry.core.commands/src/berryParameterTypeEvent.cpp index 9c6b2213d36..023750aca11 100755 --- a/Plugins/org.blueberry.core.commands/src/berryParameterTypeEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryParameterTypeEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryParameterTypeEvent.h" #include "berryParameterType.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryParameterTypeEvent.h b/Plugins/org.blueberry.core.commands/src/berryParameterTypeEvent.h index c6924546671..f7dd3adf8d0 100755 --- a/Plugins/org.blueberry.core.commands/src/berryParameterTypeEvent.h +++ b/Plugins/org.blueberry.core.commands/src/berryParameterTypeEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARAMETERTYPEEVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryParameterization.cpp b/Plugins/org.blueberry.core.commands/src/berryParameterization.cpp index 7a01fcc78d6..eed606ef003 100755 --- a/Plugins/org.blueberry.core.commands/src/berryParameterization.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryParameterization.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryParameterization.h" #include "berryIParameter.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryParameterization.h b/Plugins/org.blueberry.core.commands/src/berryParameterization.h index e27aa93b3a7..e589be1bfed 100755 --- a/Plugins/org.blueberry.core.commands/src/berryParameterization.h +++ b/Plugins/org.blueberry.core.commands/src/berryParameterization.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARAMETERIZATION_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryParameterizedCommand.cpp b/Plugins/org.blueberry.core.commands/src/berryParameterizedCommand.cpp index 84ba260abc3..fd2a1f57224 100755 --- a/Plugins/org.blueberry.core.commands/src/berryParameterizedCommand.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryParameterizedCommand.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryParameterizedCommand.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryParameterizedCommand.h b/Plugins/org.blueberry.core.commands/src/berryParameterizedCommand.h index 1986e10403f..5cd25a2a543 100755 --- a/Plugins/org.blueberry.core.commands/src/berryParameterizedCommand.h +++ b/Plugins/org.blueberry.core.commands/src/berryParameterizedCommand.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARAMETERIZEDCOMMAND_H_ #define BERRYPARAMETERIZEDCOMMAND_H_ diff --git a/Plugins/org.blueberry.core.commands/src/berryState.cpp b/Plugins/org.blueberry.core.commands/src/berryState.cpp index e8405397b49..74535b03f63 100644 --- a/Plugins/org.blueberry.core.commands/src/berryState.cpp +++ b/Plugins/org.blueberry.core.commands/src/berryState.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryState.h" diff --git a/Plugins/org.blueberry.core.commands/src/berryState.h b/Plugins/org.blueberry.core.commands/src/berryState.h index 23fdc5fbee6..ca4eb9bac4f 100644 --- a/Plugins/org.blueberry.core.commands/src/berryState.h +++ b/Plugins/org.blueberry.core.commands/src/berryState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSTATE_H_ #define BERRYSTATE_H_ diff --git a/Plugins/org.blueberry.core.commands/src/common/berryAbstractBitSetEvent.cpp b/Plugins/org.blueberry.core.commands/src/common/berryAbstractBitSetEvent.cpp index 598d543636f..612676eabf0 100755 --- a/Plugins/org.blueberry.core.commands/src/common/berryAbstractBitSetEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/common/berryAbstractBitSetEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractBitSetEvent.h" diff --git a/Plugins/org.blueberry.core.commands/src/common/berryAbstractBitSetEvent.h b/Plugins/org.blueberry.core.commands/src/common/berryAbstractBitSetEvent.h index 7e5c4971fb2..63a13366488 100755 --- a/Plugins/org.blueberry.core.commands/src/common/berryAbstractBitSetEvent.h +++ b/Plugins/org.blueberry.core.commands/src/common/berryAbstractBitSetEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTBITSETEVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/common/berryAbstractHandleObjectEvent.cpp b/Plugins/org.blueberry.core.commands/src/common/berryAbstractHandleObjectEvent.cpp index c85c3f269f3..b64c1fdad89 100755 --- a/Plugins/org.blueberry.core.commands/src/common/berryAbstractHandleObjectEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/common/berryAbstractHandleObjectEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractHandleObjectEvent.h" diff --git a/Plugins/org.blueberry.core.commands/src/common/berryAbstractHandleObjectEvent.h b/Plugins/org.blueberry.core.commands/src/common/berryAbstractHandleObjectEvent.h index d962a79e914..943aeb9f687 100755 --- a/Plugins/org.blueberry.core.commands/src/common/berryAbstractHandleObjectEvent.h +++ b/Plugins/org.blueberry.core.commands/src/common/berryAbstractHandleObjectEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTHANDLEOBJECTEVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/common/berryAbstractNamedHandleEvent.cpp b/Plugins/org.blueberry.core.commands/src/common/berryAbstractNamedHandleEvent.cpp index b6d8c7e9cb8..c0d828bb656 100755 --- a/Plugins/org.blueberry.core.commands/src/common/berryAbstractNamedHandleEvent.cpp +++ b/Plugins/org.blueberry.core.commands/src/common/berryAbstractNamedHandleEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractNamedHandleEvent.h" diff --git a/Plugins/org.blueberry.core.commands/src/common/berryAbstractNamedHandleEvent.h b/Plugins/org.blueberry.core.commands/src/common/berryAbstractNamedHandleEvent.h index 3231de1f9ab..695bf397104 100755 --- a/Plugins/org.blueberry.core.commands/src/common/berryAbstractNamedHandleEvent.h +++ b/Plugins/org.blueberry.core.commands/src/common/berryAbstractNamedHandleEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTNAMEDHANDLEEVENT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/common/berryCommandExceptions.cpp b/Plugins/org.blueberry.core.commands/src/common/berryCommandExceptions.cpp index c169b3c123e..ab7988542ba 100644 --- a/Plugins/org.blueberry.core.commands/src/common/berryCommandExceptions.cpp +++ b/Plugins/org.blueberry.core.commands/src/common/berryCommandExceptions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandExceptions.h" diff --git a/Plugins/org.blueberry.core.commands/src/common/berryCommandExceptions.h b/Plugins/org.blueberry.core.commands/src/common/berryCommandExceptions.h index 23667f8ff96..a0bbaf6124c 100644 --- a/Plugins/org.blueberry.core.commands/src/common/berryCommandExceptions.h +++ b/Plugins/org.blueberry.core.commands/src/common/berryCommandExceptions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDEXCEPTIONS_H_ #define BERRYCOMMANDEXCEPTIONS_H_ diff --git a/Plugins/org.blueberry.core.commands/src/common/berryHandleObject.cpp b/Plugins/org.blueberry.core.commands/src/common/berryHandleObject.cpp index bd5db0aad98..1514e6c6be1 100644 --- a/Plugins/org.blueberry.core.commands/src/common/berryHandleObject.cpp +++ b/Plugins/org.blueberry.core.commands/src/common/berryHandleObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandleObject.h" #include diff --git a/Plugins/org.blueberry.core.commands/src/common/berryHandleObject.h b/Plugins/org.blueberry.core.commands/src/common/berryHandleObject.h index 1fbdad2d91c..13581338777 100644 --- a/Plugins/org.blueberry.core.commands/src/common/berryHandleObject.h +++ b/Plugins/org.blueberry.core.commands/src/common/berryHandleObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLEOBJECT_H_ #define BERRYHANDLEOBJECT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/common/berryHandleObjectManager.cpp b/Plugins/org.blueberry.core.commands/src/common/berryHandleObjectManager.cpp index 239e0ccc5e2..aae8f4643b1 100755 --- a/Plugins/org.blueberry.core.commands/src/common/berryHandleObjectManager.cpp +++ b/Plugins/org.blueberry.core.commands/src/common/berryHandleObjectManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandleObjectManager.h" diff --git a/Plugins/org.blueberry.core.commands/src/common/berryHandleObjectManager.h b/Plugins/org.blueberry.core.commands/src/common/berryHandleObjectManager.h index 83934294bb8..4b33f3c9c71 100755 --- a/Plugins/org.blueberry.core.commands/src/common/berryHandleObjectManager.h +++ b/Plugins/org.blueberry.core.commands/src/common/berryHandleObjectManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLEOBJECTMANAGER_H_ diff --git a/Plugins/org.blueberry.core.commands/src/common/berryNamedHandleObject.cpp b/Plugins/org.blueberry.core.commands/src/common/berryNamedHandleObject.cpp index 43edcf0249e..9b37ee2ad47 100644 --- a/Plugins/org.blueberry.core.commands/src/common/berryNamedHandleObject.cpp +++ b/Plugins/org.blueberry.core.commands/src/common/berryNamedHandleObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNamedHandleObject.h" diff --git a/Plugins/org.blueberry.core.commands/src/common/berryNamedHandleObject.h b/Plugins/org.blueberry.core.commands/src/common/berryNamedHandleObject.h index 6395cca58cb..549e017b07d 100644 --- a/Plugins/org.blueberry.core.commands/src/common/berryNamedHandleObject.h +++ b/Plugins/org.blueberry.core.commands/src/common/berryNamedHandleObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYNAMEDHANDLEOBJECT_H_ #define BERRYNAMEDHANDLEOBJECT_H_ diff --git a/Plugins/org.blueberry.core.commands/src/internal/berryCommandUtils.cpp b/Plugins/org.blueberry.core.commands/src/internal/berryCommandUtils.cpp index 82d130080b8..59f397d03b3 100755 --- a/Plugins/org.blueberry.core.commands/src/internal/berryCommandUtils.cpp +++ b/Plugins/org.blueberry.core.commands/src/internal/berryCommandUtils.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandUtils.h" diff --git a/Plugins/org.blueberry.core.commands/src/internal/berryCommandUtils.h b/Plugins/org.blueberry.core.commands/src/internal/berryCommandUtils.h index 2063a44b80a..25aa4ff154c 100755 --- a/Plugins/org.blueberry.core.commands/src/internal/berryCommandUtils.h +++ b/Plugins/org.blueberry.core.commands/src/internal/berryCommandUtils.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_COMMAND_UTILS_H__ #define __BERRY_COMMAND_UTILS_H__ diff --git a/Plugins/org.blueberry.core.commands/src/internal/berryPluginActivator.cpp b/Plugins/org.blueberry.core.commands/src/internal/berryPluginActivator.cpp index 5ca94b37964..93451c99d48 100644 --- a/Plugins/org.blueberry.core.commands/src/internal/berryPluginActivator.cpp +++ b/Plugins/org.blueberry.core.commands/src/internal/berryPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPluginActivator.h" diff --git a/Plugins/org.blueberry.core.commands/src/internal/berryPluginActivator.h b/Plugins/org.blueberry.core.commands/src/internal/berryPluginActivator.h index bfd07e79d05..9fe4955bd61 100644 --- a/Plugins/org.blueberry.core.commands/src/internal/berryPluginActivator.h +++ b/Plugins/org.blueberry.core.commands/src/internal/berryPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLUGINACTIVATOR_H diff --git a/Plugins/org.blueberry.core.commands/src/util/berryCommandTracing.cpp b/Plugins/org.blueberry.core.commands/src/util/berryCommandTracing.cpp index e84498fd1fa..5ba2c1e0ad5 100755 --- a/Plugins/org.blueberry.core.commands/src/util/berryCommandTracing.cpp +++ b/Plugins/org.blueberry.core.commands/src/util/berryCommandTracing.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.core.commands/src/util/berryCommandTracing.h b/Plugins/org.blueberry.core.commands/src/util/berryCommandTracing.h index 0e4cb7827f7..92b5dc46f71 100755 --- a/Plugins/org.blueberry.core.commands/src/util/berryCommandTracing.h +++ b/Plugins/org.blueberry.core.commands/src/util/berryCommandTracing.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDTRACING_H_ diff --git a/Plugins/org.blueberry.core.expressions/manifest_headers.cmake b/Plugins/org.blueberry.core.expressions/manifest_headers.cmake index e2eeaadec9f..ebfc43f317c 100644 --- a/Plugins/org.blueberry.core.expressions/manifest_headers.cmake +++ b/Plugins/org.blueberry.core.expressions/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Core Expressions Plugin") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.core.runtime) diff --git a/Plugins/org.blueberry.core.expressions/src/berryElementHandler.cpp b/Plugins/org.blueberry.core.expressions/src/berryElementHandler.cpp index 59641cfa26c..dac5fdd8900 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryElementHandler.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryElementHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryElementHandler.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryElementHandler.h b/Plugins/org.blueberry.core.expressions/src/berryElementHandler.h index 55ca9fd756f..478f2896ea7 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryElementHandler.h +++ b/Plugins/org.blueberry.core.expressions/src/berryElementHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYELEMENTHANDLER_H_ #define BERRYELEMENTHANDLER_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryEvaluationContext.cpp b/Plugins/org.blueberry.core.expressions/src/berryEvaluationContext.cpp index 419804d9f13..419aef9bb09 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryEvaluationContext.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryEvaluationContext.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEvaluationContext.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryEvaluationContext.h b/Plugins/org.blueberry.core.expressions/src/berryEvaluationContext.h index 957b6a72ed0..de5874b8b15 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryEvaluationContext.h +++ b/Plugins/org.blueberry.core.expressions/src/berryEvaluationContext.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEVALUATIONCONTEXT_H_ #define BERRYEVALUATIONCONTEXT_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryEvaluationResult.cpp b/Plugins/org.blueberry.core.expressions/src/berryEvaluationResult.cpp index 42d70c214b9..de1eeac1e62 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryEvaluationResult.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryEvaluationResult.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEvaluationResult.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryEvaluationResult.h b/Plugins/org.blueberry.core.expressions/src/berryEvaluationResult.h index dcc4e0e7d4c..7fb758a97bc 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryEvaluationResult.h +++ b/Plugins/org.blueberry.core.expressions/src/berryEvaluationResult.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEVALUATIONRESULT_ #define BERRYEVALUATIONRESULT_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryExpression.cpp b/Plugins/org.blueberry.core.expressions/src/berryExpression.cpp index 25b94aabc4b..a47cf76e441 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExpression.h" #include diff --git a/Plugins/org.blueberry.core.expressions/src/berryExpression.h b/Plugins/org.blueberry.core.expressions/src/berryExpression.h index b505ebde75f..24922ea25a5 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/berryExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXPRESSION_H_ #define BERRYEXPRESSION_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryExpressionConverter.cpp b/Plugins/org.blueberry.core.expressions/src/berryExpressionConverter.cpp index c86437a061a..2a3eb351830 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryExpressionConverter.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryExpressionConverter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExpressionConverter.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryExpressionConverter.h b/Plugins/org.blueberry.core.expressions/src/berryExpressionConverter.h index b7c7ca87e99..f7a6d88c585 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryExpressionConverter.h +++ b/Plugins/org.blueberry.core.expressions/src/berryExpressionConverter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXPRESSIONCONVERTER_H_ #define BERRYEXPRESSIONCONVERTER_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryExpressionInfo.cpp b/Plugins/org.blueberry.core.expressions/src/berryExpressionInfo.cpp index a32347958fe..ac21266df66 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryExpressionInfo.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryExpressionInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExpressionInfo.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryExpressionInfo.h b/Plugins/org.blueberry.core.expressions/src/berryExpressionInfo.h index 5d7ca7cc780..c13df875e45 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryExpressionInfo.h +++ b/Plugins/org.blueberry.core.expressions/src/berryExpressionInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXPRESSIONINFO_H_ #define BERRYEXPRESSIONINFO_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryExpressionTagNames.cpp b/Plugins/org.blueberry.core.expressions/src/berryExpressionTagNames.cpp index ff4eab5b111..4ada0e0efc4 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryExpressionTagNames.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryExpressionTagNames.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExpressionTagNames.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryExpressionTagNames.h b/Plugins/org.blueberry.core.expressions/src/berryExpressionTagNames.h index c8435e339ca..ca2d75b5a17 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryExpressionTagNames.h +++ b/Plugins/org.blueberry.core.expressions/src/berryExpressionTagNames.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXPRESSIONTAGNAMES_H_ #define BERRYEXPRESSIONTAGNAMES_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryICountable.h b/Plugins/org.blueberry.core.expressions/src/berryICountable.h index 79fbd0b5b9a..237673b7c5a 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryICountable.h +++ b/Plugins/org.blueberry.core.expressions/src/berryICountable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICOUNTABLE_H_ #define BERRYICOUNTABLE_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryIEvaluationContext.cpp b/Plugins/org.blueberry.core.expressions/src/berryIEvaluationContext.cpp index 80ad062c8a1..c55d8998770 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryIEvaluationContext.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryIEvaluationContext.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEvaluationContext.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryIEvaluationContext.h b/Plugins/org.blueberry.core.expressions/src/berryIEvaluationContext.h index 91d865acaf5..1dc41c0b1ef 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryIEvaluationContext.h +++ b/Plugins/org.blueberry.core.expressions/src/berryIEvaluationContext.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEVALUATIONCONTEXT_H_ #define BERRYIEVALUATIONCONTEXT_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryIIterable.cpp b/Plugins/org.blueberry.core.expressions/src/berryIIterable.cpp index 6ae5189ee7a..1aa2c1fbd19 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryIIterable.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryIIterable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIIterable.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryIIterable.h b/Plugins/org.blueberry.core.expressions/src/berryIIterable.h index a2260844074..4b2208f2912 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryIIterable.h +++ b/Plugins/org.blueberry.core.expressions/src/berryIIterable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIITERABLE_H_ #define BERRYIITERABLE_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryIPropertyTester.cpp b/Plugins/org.blueberry.core.expressions/src/berryIPropertyTester.cpp index 9ceee54dc0a..9af2c1a7e00 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryIPropertyTester.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryIPropertyTester.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPropertyTester.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryIPropertyTester.h b/Plugins/org.blueberry.core.expressions/src/berryIPropertyTester.h index d231ab7c80f..cc9107a4eaf 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryIPropertyTester.h +++ b/Plugins/org.blueberry.core.expressions/src/berryIPropertyTester.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPROPERTYTESTER_H_ #define BERRYIPROPERTYTESTER_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryIVariableResolver.cpp b/Plugins/org.blueberry.core.expressions/src/berryIVariableResolver.cpp index 5eb3ddb0fad..d80d96297ba 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryIVariableResolver.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryIVariableResolver.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIVariableResolver.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryIVariableResolver.h b/Plugins/org.blueberry.core.expressions/src/berryIVariableResolver.h index ea6e6f0b772..2ebfe38b97a 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryIVariableResolver.h +++ b/Plugins/org.blueberry.core.expressions/src/berryIVariableResolver.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVARIABLERESOLVER_H_ #define BERRYIVARIABLERESOLVER_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/berryPropertyTester.cpp b/Plugins/org.blueberry.core.expressions/src/berryPropertyTester.cpp index 2a1f6ed78ef..af32e3b900c 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryPropertyTester.cpp +++ b/Plugins/org.blueberry.core.expressions/src/berryPropertyTester.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPropertyTester.h" diff --git a/Plugins/org.blueberry.core.expressions/src/berryPropertyTester.h b/Plugins/org.blueberry.core.expressions/src/berryPropertyTester.h index 799890598f0..95eafb6652f 100644 --- a/Plugins/org.blueberry.core.expressions/src/berryPropertyTester.h +++ b/Plugins/org.blueberry.core.expressions/src/berryPropertyTester.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPROPERTYTESTER_H_ #define BERRYPROPERTYTESTER_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryAdaptExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryAdaptExpression.cpp index 63d4646f243..860f6eb9c0f 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryAdaptExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryAdaptExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAdaptExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryAdaptExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryAdaptExpression.h index 7d62ee6bebb..6fdcf9b6432 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryAdaptExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryAdaptExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYADAPTEXPRESSION_H_ #define BERRYADAPTEXPRESSION_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryAndExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryAndExpression.cpp index 0f763ec04c7..9c0c17c93be 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryAndExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryAndExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAndExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryAndExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryAndExpression.h index 471d479e633..3cc0717a4c6 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryAndExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryAndExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_AND_EXPRESSION_H__ #define __BERRY_AND_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryCompositeExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryCompositeExpression.cpp index dee8cd0d7e2..c9f25d50d29 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryCompositeExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryCompositeExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCompositeExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryCompositeExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryCompositeExpression.h index e9f526ea1f3..08fda6b8b85 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryCompositeExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryCompositeExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMPOSITEEXPRESSION_H_ #define BERRYCOMPOSITEEXPRESSION_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryCountExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryCountExpression.cpp index 98f824f39a8..8c4831fdb57 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryCountExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryCountExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCountExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryCountExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryCountExpression.h index 44346a21c37..358f3612a29 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryCountExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryCountExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_COUNT_EXPRESSION_H__ #define __BERRY_COUNT_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryDefaultVariable.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryDefaultVariable.cpp index 1c7f8a62f4e..21e02cfb980 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryDefaultVariable.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryDefaultVariable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDefaultVariable.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryDefaultVariable.h b/Plugins/org.blueberry.core.expressions/src/internal/berryDefaultVariable.h index 7466fa2d6f4..5362f7f1537 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryDefaultVariable.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryDefaultVariable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDEFAULTVARIABLE_H_ #define BERRYDEFAULTVARIABLE_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryDefinitionRegistry.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryDefinitionRegistry.cpp index 396970d4b96..6d81af89b4d 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryDefinitionRegistry.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryDefinitionRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDefinitionRegistry.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryDefinitionRegistry.h b/Plugins/org.blueberry.core.expressions/src/internal/berryDefinitionRegistry.h index c5e949b16e8..9e4c28d02c8 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryDefinitionRegistry.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryDefinitionRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDEFINITIONREGISTRY_H_ #define BERRYDEFINITIONREGISTRY_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryEnablementExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryEnablementExpression.cpp index 72f034f251e..c547ac0de6c 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryEnablementExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryEnablementExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryEnablementExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryEnablementExpression.h index 0d9938f8cd5..846f8a119f2 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryEnablementExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryEnablementExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_ENABLEMENT_EXPRESSION_H__ #define __BERRY_ENABLEMENT_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryEqualsExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryEqualsExpression.cpp index 2ed10cc4cff..b38cf312f1f 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryEqualsExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryEqualsExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEqualsExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryEqualsExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryEqualsExpression.h index 05da160646d..c7d2b481b7d 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryEqualsExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryEqualsExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_EQUALS_EXPRESSION_H__ #define __BERRY_EQUALS_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionPlugin.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionPlugin.cpp index f75638d193d..0409873fe55 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionPlugin.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExpressionPlugin.h" #include "berryExpressions.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionPlugin.h b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionPlugin.h index ff7c62af029..7a59d8f6d05 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionPlugin.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXPRESSIONPLUGIN_H diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionStatus.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionStatus.cpp index 279a9876a44..5e20f0cb0c8 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionStatus.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionStatus.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExpressionStatus.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionStatus.h b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionStatus.h index d0ab70cd174..5a6d2514516 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionStatus.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressionStatus.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXPRESSIONSTATUS_H #define BERRYEXPRESSIONSTATUS_H diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressions.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressions.cpp index 26a7149507b..eea8e68a544 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressions.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExpressions.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressions.h b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressions.h index 0386d251219..2c5e5fb16cc 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryExpressions.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryExpressions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXPRESSIONS_H_ #define BERRYEXPRESSIONS_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryInstanceofExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryInstanceofExpression.cpp index 621fd059085..0fc72c2cd59 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryInstanceofExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryInstanceofExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryInstanceofExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryInstanceofExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryInstanceofExpression.h index 3887b1db48d..e8da7dba550 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryInstanceofExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryInstanceofExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_INSTANCEOF_EXPRESSION_H__ #define __BERRY_INSTANCEOF_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryIterateExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryIterateExpression.cpp index 0436b2f77db..9ca3888858a 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryIterateExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryIterateExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIterateExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryIterateExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryIterateExpression.h index 0108cfcd7f1..8d6cc937cdf 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryIterateExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryIterateExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_ITERATE_EXPRESSION_H__ #define __BERRY_ITERATE_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryNotExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryNotExpression.cpp index 7f84ffa3e1e..44fcb05f9db 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryNotExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryNotExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNotExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryNotExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryNotExpression.h index 7940dec7fed..671e3bf2dfe 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryNotExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryNotExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_NOT_EXPRESSION_H__ #define __BERRY_NOT_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryOrExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryOrExpression.cpp index c1c4994efc2..991c6815d91 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryOrExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryOrExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryOrExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryOrExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryOrExpression.h index dcaa4b05bfb..059e9650f29 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryOrExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryOrExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_OR_EXPRESSION_H__ #define __BERRY_OR_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryPlatformPropertyTester.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryPlatformPropertyTester.cpp index 23aba2e4f6c..d1b701488f3 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryPlatformPropertyTester.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryPlatformPropertyTester.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPlatformPropertyTester.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryPlatformPropertyTester.h b/Plugins/org.blueberry.core.expressions/src/internal/berryPlatformPropertyTester.h index c9193faacc9..4f836a428e7 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryPlatformPropertyTester.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryPlatformPropertyTester.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLATFORMPROPERTYTESTER_H #define BERRYPLATFORMPROPERTYTESTER_H diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryProperty.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryProperty.cpp index 74baae7a376..b77e28f9780 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryProperty.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryProperty.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryProperty.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryProperty.h b/Plugins/org.blueberry.core.expressions/src/internal/berryProperty.h index 8b5fe9375f6..d5756b15c7d 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryProperty.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryProperty.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPROPERTY_H_ #define BERRYPROPERTY_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyCache.h b/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyCache.h index ae955eb1086..426842c1b92 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyCache.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyCache.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPROPERTYCACHE_H_ #define BERRYPROPERTYCACHE_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyTesterDescriptor.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyTesterDescriptor.cpp index 13a01cd9c4e..a7f7b8dc7a7 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyTesterDescriptor.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyTesterDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPropertyTesterDescriptor.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyTesterDescriptor.h b/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyTesterDescriptor.h index 03104270c90..3da59a8e1c4 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyTesterDescriptor.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryPropertyTesterDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPROPERTYTESTERDESCRIPTOR_H_ #define BERRYPROPERTYTESTERDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryReferenceExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryReferenceExpression.cpp index dbba8505074..71af1a56dd5 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryReferenceExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryReferenceExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryReferenceExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryReferenceExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryReferenceExpression.h index 711896bb2c1..484f1b156b4 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryReferenceExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryReferenceExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_REFERENCE_EXPRESSION_H__ #define __BERRY_REFERENCE_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryResolveExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryResolveExpression.cpp index a9f2105a160..85f84400190 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryResolveExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryResolveExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryResolveExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryResolveExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryResolveExpression.h index 545ca68bfc8..089e7bc7e0e 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryResolveExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryResolveExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_RESOLVE_EXPRESSION_H__ #define __BERRY_RESOLVE_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryStandardElementHandler.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryStandardElementHandler.cpp index 2ae5a75c814..4f8f644751a 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryStandardElementHandler.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryStandardElementHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStandardElementHandler.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryStandardElementHandler.h b/Plugins/org.blueberry.core.expressions/src/internal/berryStandardElementHandler.h index b72723a5589..9053e5d983a 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryStandardElementHandler.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryStandardElementHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSTANDARDELEMENTHANDLER_H_ #define BERRYSTANDARDELEMENTHANDLER_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berrySystemTestExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berrySystemTestExpression.cpp index 3561d7ef737..537f7e8c7bf 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berrySystemTestExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berrySystemTestExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySystemTestExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berrySystemTestExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berrySystemTestExpression.h index ef8e15e8a1e..61dd411c1fb 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berrySystemTestExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berrySystemTestExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_SYSTEM_TEXT_EXPRESSION_H__ #define __BERRY_SYSTEM_TEXT_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryTestExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryTestExpression.cpp index d47782aecce..2dde7d9d627 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryTestExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryTestExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTestExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryTestExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryTestExpression.h index 932eac7614f..7208fe48a66 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryTestExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryTestExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_TEST_EXPRESSION_H__ #define __BERRY_TEST_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtension.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtension.cpp index 2a34b478284..7656dc027ac 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtension.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtension.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTypeExtension.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtension.h b/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtension.h index e3dbcc1ef4f..955f4ce7811 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtension.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTYPEEXTENSION_H_ #define BERRYTYPEEXTENSION_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtensionManager.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtensionManager.cpp index eb9463866ba..9a8655cd0c7 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtensionManager.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtensionManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtensionManager.h b/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtensionManager.h index 6719975a336..aeace05b79c 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtensionManager.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryTypeExtensionManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTYPEEXTENSIONMANAGER_H_ #define BERRYTYPEEXTENSIONMANAGER_H_ diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryWithExpression.cpp b/Plugins/org.blueberry.core.expressions/src/internal/berryWithExpression.cpp index ff227ea2a46..abb8efd55c8 100644 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryWithExpression.cpp +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryWithExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWithExpression.h" diff --git a/Plugins/org.blueberry.core.expressions/src/internal/berryWithExpression.h b/Plugins/org.blueberry.core.expressions/src/internal/berryWithExpression.h index 7c169f6e7ac..4c4a44d5c90 100755 --- a/Plugins/org.blueberry.core.expressions/src/internal/berryWithExpression.h +++ b/Plugins/org.blueberry.core.expressions/src/internal/berryWithExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_WITH_EXPRESSION_H__ #define __BERRY_WITH_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.core.jobs/manifest_headers.cmake b/Plugins/org.blueberry.core.jobs/manifest_headers.cmake index db7108a05ed..0f2b007e1c2 100644 --- a/Plugins/org.blueberry.core.jobs/manifest_headers.cmake +++ b/Plugins/org.blueberry.core.jobs/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Jobs Mechanism") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.core.runtime) diff --git a/Plugins/org.blueberry.core.jobs/src/berryIJobChangeEvent.h b/Plugins/org.blueberry.core.jobs/src/berryIJobChangeEvent.h index cd14956f9b2..e66a7d02457 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryIJobChangeEvent.h +++ b/Plugins/org.blueberry.core.jobs/src/berryIJobChangeEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIJOBCHANGEEVENT_H_ #define BERRYIJOBCHANGEEVENT_H_ diff --git a/Plugins/org.blueberry.core.jobs/src/berryIJobChangeListener.cpp b/Plugins/org.blueberry.core.jobs/src/berryIJobChangeListener.cpp index fec2a93a3dc..0829e83da52 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryIJobChangeListener.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryIJobChangeListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIJobChangeListener.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryIJobChangeListener.h b/Plugins/org.blueberry.core.jobs/src/berryIJobChangeListener.h index 680871ee7a9..14ab9d6c190 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryIJobChangeListener.h +++ b/Plugins/org.blueberry.core.jobs/src/berryIJobChangeListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIJOBCHANGELISTENER_H_ #define BERRYIJOBCHANGELISTENER_H_ diff --git a/Plugins/org.blueberry.core.jobs/src/berryIJobManager.cpp b/Plugins/org.blueberry.core.jobs/src/berryIJobManager.cpp index 143269797cd..62928d66ea4 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryIJobManager.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryIJobManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIJobManager.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryIJobManager.h b/Plugins/org.blueberry.core.jobs/src/berryIJobManager.h index 92e13b67782..67bb91b53df 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryIJobManager.h +++ b/Plugins/org.blueberry.core.jobs/src/berryIJobManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_IJOBMANAGER_H #define _BERRY_IJOBMANAGER_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryIJobStatus.h b/Plugins/org.blueberry.core.jobs/src/berryIJobStatus.h index cc07592d94c..779bce7a488 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryIJobStatus.h +++ b/Plugins/org.blueberry.core.jobs/src/berryIJobStatus.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRYIJOBSTATUS_H #define _BERRYIJOBSTATUS_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryILock.h b/Plugins/org.blueberry.core.jobs/src/berryILock.h index f1400c28dc6..6e4e2f18953 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryILock.h +++ b/Plugins/org.blueberry.core.jobs/src/berryILock.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_ILOCK_H_ #define _BERRY_ILOCK_H_ diff --git a/Plugins/org.blueberry.core.jobs/src/berryIProgressMonitor.h b/Plugins/org.blueberry.core.jobs/src/berryIProgressMonitor.h index 3d301445626..f4559098f66 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryIProgressMonitor.h +++ b/Plugins/org.blueberry.core.jobs/src/berryIProgressMonitor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRY_IPROGRESS_MONITOR_H #define BERRY_IPROGRESS_MONITOR_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryIProgressMonitorWithBlocking.h b/Plugins/org.blueberry.core.jobs/src/berryIProgressMonitorWithBlocking.h index 8a169d6e885..094fd7ea356 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryIProgressMonitorWithBlocking.h +++ b/Plugins/org.blueberry.core.jobs/src/berryIProgressMonitorWithBlocking.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_IPROGRESSMONITORWITHBLOCKING_H #define _BERRY_IPROGRESSMONITORWITHBLOCKING_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryISchedulingRule.h b/Plugins/org.blueberry.core.jobs/src/berryISchedulingRule.h index 2088e32f9a4..5430765eb37 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryISchedulingRule.h +++ b/Plugins/org.blueberry.core.jobs/src/berryISchedulingRule.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_ISCHEDULING_RULE_H_ #define _BERRY_ISCHEDULING_RULE_H_ diff --git a/Plugins/org.blueberry.core.jobs/src/berryJob.cpp b/Plugins/org.blueberry.core.jobs/src/berryJob.cpp index db8b0da82f4..032821a5d20 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryJob.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryJob.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryJob.h" #include "berryIJobManager.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryJob.h b/Plugins/org.blueberry.core.jobs/src/berryJob.h index 5863bf8d9eb..62e2305e0af 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryJob.h +++ b/Plugins/org.blueberry.core.jobs/src/berryJob.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_JOB_H #define _BERRY_JOB_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryJobExceptions.cpp b/Plugins/org.blueberry.core.jobs/src/berryJobExceptions.cpp index 50d0d566908..59b0012de81 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryJobExceptions.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryJobExceptions.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryJobExceptions.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryJobExceptions.h b/Plugins/org.blueberry.core.jobs/src/berryJobExceptions.h index 0d10f2be053..da1738849b9 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryJobExceptions.h +++ b/Plugins/org.blueberry.core.jobs/src/berryJobExceptions.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYJOBSEXCEPTIONS_H_ #define BERRYJOBSEXCEPTIONS_H_ diff --git a/Plugins/org.blueberry.core.jobs/src/berryJobStatus.cpp b/Plugins/org.blueberry.core.jobs/src/berryJobStatus.cpp index ef948352990..5edfb8132fa 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryJobStatus.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryJobStatus.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryJobStatus.h" #include "internal/berryJobManager.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryJobStatus.h b/Plugins/org.blueberry.core.jobs/src/berryJobStatus.h index 53bbc9b44cf..3453952d7c5 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryJobStatus.h +++ b/Plugins/org.blueberry.core.jobs/src/berryJobStatus.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRYJOBSTATUS_H #define _BERRYJOBSTATUS_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryLockListener.h b/Plugins/org.blueberry.core.jobs/src/berryLockListener.h index 394376ff5d6..bc784717cb5 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryLockListener.h +++ b/Plugins/org.blueberry.core.jobs/src/berryLockListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_LOCKLISTENER_H_ #define _BERRY_LOCKLISTENER_H_ diff --git a/Plugins/org.blueberry.core.jobs/src/berryMultiRule.cpp b/Plugins/org.blueberry.core.jobs/src/berryMultiRule.cpp index 351e70b54dc..44f1783d738 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryMultiRule.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryMultiRule.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMultiRule.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryMultiRule.h b/Plugins/org.blueberry.core.jobs/src/berryMultiRule.h index 421b5cd745b..0478a07e6a1 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryMultiRule.h +++ b/Plugins/org.blueberry.core.jobs/src/berryMultiRule.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_MULTIRULE_H #define _BERRY_MULTIRULE_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryNullProgressMonitor.cpp b/Plugins/org.blueberry.core.jobs/src/berryNullProgressMonitor.cpp index f5538094aa7..b9aa66e564d 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryNullProgressMonitor.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryNullProgressMonitor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNullProgressMonitor.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryNullProgressMonitor.h b/Plugins/org.blueberry.core.jobs/src/berryNullProgressMonitor.h index 89a401e6c79..72a3ae9bc23 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryNullProgressMonitor.h +++ b/Plugins/org.blueberry.core.jobs/src/berryNullProgressMonitor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRY_nullptrPROGRESSMONITOR_H #define BERRY_nullptrPROGRESSMONITOR_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryProgressProvider.cpp b/Plugins/org.blueberry.core.jobs/src/berryProgressProvider.cpp index 07c6cb2680f..cef270b78d4 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryProgressProvider.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryProgressProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNullProgressMonitor.h" #include "berryProgressProvider.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryProgressProvider.h b/Plugins/org.blueberry.core.jobs/src/berryProgressProvider.h index 512885c9cad..fd98493645b 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryProgressProvider.h +++ b/Plugins/org.blueberry.core.jobs/src/berryProgressProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_PROGRESSPROVIDER_H #define _BERRY_PROGRESSPROVIDER_H diff --git a/Plugins/org.blueberry.core.jobs/src/berryQualifiedName.cpp b/Plugins/org.blueberry.core.jobs/src/berryQualifiedName.cpp index 3569d39c7ad..4e95ebd0bfe 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryQualifiedName.cpp +++ b/Plugins/org.blueberry.core.jobs/src/berryQualifiedName.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQualifiedName.h" diff --git a/Plugins/org.blueberry.core.jobs/src/berryQualifiedName.h b/Plugins/org.blueberry.core.jobs/src/berryQualifiedName.h index b8ae43f458e..b37029f3334 100644 --- a/Plugins/org.blueberry.core.jobs/src/berryQualifiedName.h +++ b/Plugins/org.blueberry.core.jobs/src/berryQualifiedName.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_QUALIFIED_NAME_ #define _BERRY_QUALIFIED_NAME_ diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryInternalJob.cpp b/Plugins/org.blueberry.core.jobs/src/internal/berryInternalJob.cpp index 09e38483fda..05a05db04d4 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryInternalJob.cpp +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryInternalJob.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define NOMINMAX #include "berryInternalJob.h" diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryInternalJob.h b/Plugins/org.blueberry.core.jobs/src/internal/berryInternalJob.h index ac4268f0230..e9b9ea10d62 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryInternalJob.h +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryInternalJob.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRY_INTERNALJOB_H #define BERRY_INTERNALJOB_H diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryJobChangeEvent.cpp b/Plugins/org.blueberry.core.jobs/src/internal/berryJobChangeEvent.cpp index c9515dab70a..5ca2d0dfe57 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryJobChangeEvent.cpp +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryJobChangeEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryJobChangeEvent.h" #include "berryJob.h" diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryJobChangeEvent.h b/Plugins/org.blueberry.core.jobs/src/internal/berryJobChangeEvent.h index e8d1cede833..a2fca2f9c2a 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryJobChangeEvent.h +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryJobChangeEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYJOBCHANGEEVENT_H_ diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryJobListeners.cpp b/Plugins/org.blueberry.core.jobs/src/internal/berryJobListeners.cpp index 2315e4c0cb4..0995cf93dd7 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryJobListeners.cpp +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryJobListeners.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryJobListeners.h" #include "berryJobManager.h" diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryJobListeners.h b/Plugins/org.blueberry.core.jobs/src/internal/berryJobListeners.h index 948a725f8bc..91677c87106 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryJobListeners.h +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryJobListeners.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYJOBLISTENERS_H_ #define BERRYJOBLISTENERS_H_ diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryJobManager.cpp b/Plugins/org.blueberry.core.jobs/src/internal/berryJobManager.cpp index dd47ed1933c..7bb26f7cfcb 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryJobManager.cpp +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryJobManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define NOMINMAX #include "berryJobManager.h" diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryJobManager.h b/Plugins/org.blueberry.core.jobs/src/internal/berryJobManager.h index 33caff207d3..dfc35976898 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryJobManager.h +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryJobManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // // diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryJobQueue.cpp b/Plugins/org.blueberry.core.jobs/src/internal/berryJobQueue.cpp index 8b9ca24f9b0..8818936f83b 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryJobQueue.cpp +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryJobQueue.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryJobQueue.h" diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryJobQueue.h b/Plugins/org.blueberry.core.jobs/src/internal/berryJobQueue.h index 347e409d16b..8086a1995ca 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryJobQueue.h +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryJobQueue.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_JOBQUEUE_H #define _BERRY_JOBQUEUE_H diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryPluginActivator.cpp b/Plugins/org.blueberry.core.jobs/src/internal/berryPluginActivator.cpp index 0d7c2bf9b9a..f02826f9fbb 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryPluginActivator.cpp +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPluginActivator.h" diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryPluginActivator.h b/Plugins/org.blueberry.core.jobs/src/internal/berryPluginActivator.h index f83b007dd35..b6827af3c8b 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryPluginActivator.h +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLUGINACTIVATOR_H #define BERRYPLUGINACTIVATOR_H diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryWorker.cpp b/Plugins/org.blueberry.core.jobs/src/internal/berryWorker.cpp index 2325b8cc98a..ba3320936e9 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryWorker.cpp +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryWorker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorker.h" #include "berryWorkerPool.h" diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryWorker.h b/Plugins/org.blueberry.core.jobs/src/internal/berryWorker.h index 8ac1e8d06aa..b0ba2a27860 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryWorker.h +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryWorker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_WORKER_H #define _BERRY_WORKER_H diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryWorkerPool.cpp b/Plugins/org.blueberry.core.jobs/src/internal/berryWorkerPool.cpp index 8d84ce1ef90..9360e6ea591 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryWorkerPool.cpp +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryWorkerPool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define NOMINMAX diff --git a/Plugins/org.blueberry.core.jobs/src/internal/berryWorkerPool.h b/Plugins/org.blueberry.core.jobs/src/internal/berryWorkerPool.h index ce3467a4092..f3ec9bbcb39 100644 --- a/Plugins/org.blueberry.core.jobs/src/internal/berryWorkerPool.h +++ b/Plugins/org.blueberry.core.jobs/src/internal/berryWorkerPool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_WORKERPOOL_H #define _BERRY_WORKERPOOL_H diff --git a/Plugins/org.blueberry.core.runtime/manifest_headers.cmake b/Plugins/org.blueberry.core.runtime/manifest_headers.cmake index becee679968..60cbdc14914 100644 --- a/Plugins/org.blueberry.core.runtime/manifest_headers.cmake +++ b/Plugins/org.blueberry.core.runtime/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Core Runtime Plugin") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Plugin-ActivationPolicy "eager") diff --git a/Plugins/org.blueberry.core.runtime/src/application/berryIApplication.cpp b/Plugins/org.blueberry.core.runtime/src/application/berryIApplication.cpp index 93f1d181616..b527511afc5 100644 --- a/Plugins/org.blueberry.core.runtime/src/application/berryIApplication.cpp +++ b/Plugins/org.blueberry.core.runtime/src/application/berryIApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIApplication.h" diff --git a/Plugins/org.blueberry.core.runtime/src/application/berryIApplication.h b/Plugins/org.blueberry.core.runtime/src/application/berryIApplication.h index 5aa73611d12..35918795aa0 100644 --- a/Plugins/org.blueberry.core.runtime/src/application/berryIApplication.h +++ b/Plugins/org.blueberry.core.runtime/src/application/berryIApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIAPPLICATION_H_ #define BERRYIAPPLICATION_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/application/berryIApplicationContext.cpp b/Plugins/org.blueberry.core.runtime/src/application/berryIApplicationContext.cpp index b3d676b13be..55741ce07a8 100644 --- a/Plugins/org.blueberry.core.runtime/src/application/berryIApplicationContext.cpp +++ b/Plugins/org.blueberry.core.runtime/src/application/berryIApplicationContext.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIApplicationContext.h" diff --git a/Plugins/org.blueberry.core.runtime/src/application/berryIApplicationContext.h b/Plugins/org.blueberry.core.runtime/src/application/berryIApplicationContext.h index c1b30ed04dc..e5772e630bd 100644 --- a/Plugins/org.blueberry.core.runtime/src/application/berryIApplicationContext.h +++ b/Plugins/org.blueberry.core.runtime/src/application/berryIApplicationContext.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIAPPLICATIONCONTEXT_H #define BERRYIAPPLICATIONCONTEXT_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryBackingStoreException.cpp b/Plugins/org.blueberry.core.runtime/src/berryBackingStoreException.cpp index 7633e335bd2..be24560cb86 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryBackingStoreException.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryBackingStoreException.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryBackingStoreException.h" namespace berry { diff --git a/Plugins/org.blueberry.core.runtime/src/berryBackingStoreException.h b/Plugins/org.blueberry.core.runtime/src/berryBackingStoreException.h index 0a23adcdb4e..d3830f8f21f 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryBackingStoreException.h +++ b/Plugins/org.blueberry.core.runtime/src/berryBackingStoreException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYBACKINGSTOREEXCEPTION_H_ #define BERRYBACKINGSTOREEXCEPTION_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryConfig.h.in b/Plugins/org.blueberry.core.runtime/src/berryConfig.h.in index edcb3610546..8ded42f76dc 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryConfig.h.in +++ b/Plugins/org.blueberry.core.runtime/src/berryConfig.h.in @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ diff --git a/Plugins/org.blueberry.core.runtime/src/berryContributorFactory.cpp b/Plugins/org.blueberry.core.runtime/src/berryContributorFactory.cpp index 1c5eac7fb2e..31accad432d 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryContributorFactory.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryContributorFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryContributorFactory.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryContributorFactory.h b/Plugins/org.blueberry.core.runtime/src/berryContributorFactory.h index 6f855f4adf7..e1695d3fecb 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryContributorFactory.h +++ b/Plugins/org.blueberry.core.runtime/src/berryContributorFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONTRIBUTORFACTORY_H #define BERRYCONTRIBUTORFACTORY_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryCoreException.cpp b/Plugins/org.blueberry.core.runtime/src/berryCoreException.cpp index 62bcef9fdea..1441cd33f3f 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryCoreException.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryCoreException.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCoreException.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryCoreException.h b/Plugins/org.blueberry.core.runtime/src/berryCoreException.h index 4f9d0f28774..9f5d8d75269 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryCoreException.h +++ b/Plugins/org.blueberry.core.runtime/src/berryCoreException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOREEXCEPTION_H #define BERRYCOREEXCEPTION_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryDebugBreakpointManager.cpp b/Plugins/org.blueberry.core.runtime/src/berryDebugBreakpointManager.cpp index 065fe9910a3..3fa2ba721d2 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryDebugBreakpointManager.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryDebugBreakpointManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDebugBreakpointManager.h" #include "berryDebugUtil.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryDebugBreakpointManager.h b/Plugins/org.blueberry.core.runtime/src/berryDebugBreakpointManager.h index 7fe8b3e4ade..078bfd174f5 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryDebugBreakpointManager.h +++ b/Plugins/org.blueberry.core.runtime/src/berryDebugBreakpointManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDEBUGBREAKPOINTMANAGER_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryDebugUtil.cpp b/Plugins/org.blueberry.core.runtime/src/berryDebugUtil.cpp index aff853a3245..369e3af6521 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryDebugUtil.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryDebugUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIDebugObjectListener.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryDebugUtil.h b/Plugins/org.blueberry.core.runtime/src/berryDebugUtil.h index d8bae79b9d3..b151f39be27 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryDebugUtil.h +++ b/Plugins/org.blueberry.core.runtime/src/berryDebugUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDEBUGUTIL_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryException.cpp b/Plugins/org.blueberry.core.runtime/src/berryException.cpp index 5c81eb61404..0663d05562c 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryException.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryException.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryException.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryException.h b/Plugins/org.blueberry.core.runtime/src/berryException.h index a850a4201e0..4b579e7cabe 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryException.h +++ b/Plugins/org.blueberry.core.runtime/src/berryException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXCEPTION_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryExtensionType.cpp b/Plugins/org.blueberry.core.runtime/src/berryExtensionType.cpp index 42b6731c3d7..e4326b58985 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryExtensionType.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryExtensionType.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtensionType.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryExtensionType.h b/Plugins/org.blueberry.core.runtime/src/berryExtensionType.h index 4632d17bc6e..76aefd1ac33 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryExtensionType.h +++ b/Plugins/org.blueberry.core.runtime/src/berryExtensionType.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRY_EXTENSION_TYPES_H #define BERRY_EXTENSION_TYPES_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryIAdaptable.cpp b/Plugins/org.blueberry.core.runtime/src/berryIAdaptable.cpp index 54a552260b1..d959877062b 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIAdaptable.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryIAdaptable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIAdaptable.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryIAdaptable.h b/Plugins/org.blueberry.core.runtime/src/berryIAdaptable.h index 9e6dba55b13..2ec8a616c1f 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIAdaptable.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIAdaptable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _BERRY_IADAPTABLE_H_ #define _BERRY_IADAPTABLE_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryIAdapterFactory.h b/Plugins/org.blueberry.core.runtime/src/berryIAdapterFactory.h index 1058323dfd8..0e0d7487bf1 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIAdapterFactory.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIAdapterFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIADAPTERFACTORY_H_ #define BERRYIADAPTERFACTORY_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryIAdapterManager.cpp b/Plugins/org.blueberry.core.runtime/src/berryIAdapterManager.cpp index e4765f42e09..b251cc26f89 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIAdapterManager.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryIAdapterManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIAdapterManager.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryIAdapterManager.h b/Plugins/org.blueberry.core.runtime/src/berryIAdapterManager.h index 974b9ecd69c..1cf2b67751b 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIAdapterManager.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIAdapterManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIADAPTERMANAGER_H_ #define BERRYIADAPTERMANAGER_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferences.cpp b/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferences.cpp index b0d98e82d35..c5cd9fb0fd0 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferences.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferences.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIBerryPreferences.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferences.h b/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferences.h index 44ff15163ff..71be2076567 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferences.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferences.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIBERRYPREFERENCES_H_ #define BERRYIBERRYPREFERENCES_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferencesService.h b/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferencesService.h index 369670c13a1..6a60f246055 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferencesService.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIBerryPreferencesService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIBERRYPREFERENCESSERVICE_H_ #define BERRYIBERRYPREFERENCESSERVICE_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryIDebugObjectListener.cpp b/Plugins/org.blueberry.core.runtime/src/berryIDebugObjectListener.cpp index f2e221bdd05..43bc09e2cbe 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIDebugObjectListener.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryIDebugObjectListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIDebugObjectListener.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryIDebugObjectListener.h b/Plugins/org.blueberry.core.runtime/src/berryIDebugObjectListener.h index f9214d7936b..282b28f0cbf 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIDebugObjectListener.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIDebugObjectListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIDEBUGOBJECTLISTENER_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryILog.cpp b/Plugins/org.blueberry.core.runtime/src/berryILog.cpp index 49b02bf068c..0052965a242 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryILog.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryILog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryILog.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryILog.h b/Plugins/org.blueberry.core.runtime/src/berryILog.h index 86c50c5fb77..f740d33ff49 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryILog.h +++ b/Plugins/org.blueberry.core.runtime/src/berryILog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYILOG_H #define BERRYILOG_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryIPreferences.cpp b/Plugins/org.blueberry.core.runtime/src/berryIPreferences.cpp index be96144ea1b..acaa0f5dd73 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIPreferences.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryIPreferences.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPreferences.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryIPreferences.h b/Plugins/org.blueberry.core.runtime/src/berryIPreferences.h index 57442aac2a8..23fa8cade5b 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIPreferences.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIPreferences.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPREFERENCES_H_ #define BERRYIPREFERENCES_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryIPreferencesService.cpp b/Plugins/org.blueberry.core.runtime/src/berryIPreferencesService.cpp index 8424aeefe32..915eabde367 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIPreferencesService.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryIPreferencesService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPreferencesService.h" namespace berry diff --git a/Plugins/org.blueberry.core.runtime/src/berryIPreferencesService.h b/Plugins/org.blueberry.core.runtime/src/berryIPreferencesService.h index 2f991f50015..66c9016d9cd 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIPreferencesService.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIPreferencesService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPREFERENCESSERVICE_H_ #define BERRYIPREFERENCESSERVICE_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryIProduct.cpp b/Plugins/org.blueberry.core.runtime/src/berryIProduct.cpp index 4a429a09616..797df1b28be 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIProduct.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryIProduct.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIProduct.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryIProduct.h b/Plugins/org.blueberry.core.runtime/src/berryIProduct.h index 014b31c73a8..332b5be864b 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIProduct.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIProduct.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPRODUCT_H #define BERRYIPRODUCT_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryIProductProvider.h b/Plugins/org.blueberry.core.runtime/src/berryIProductProvider.h index 26cdd6bf503..3827f053606 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIProductProvider.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIProductProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPRODUCTPROVIDER_H #define BERRYIPRODUCTPROVIDER_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryISafeRunnable.h b/Plugins/org.blueberry.core.runtime/src/berryISafeRunnable.h index a277c42dc19..f427db6aa94 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryISafeRunnable.h +++ b/Plugins/org.blueberry.core.runtime/src/berryISafeRunnable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISAFERUNNABLE_H_ #define BERRYISAFERUNNABLE_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryIStatus.h b/Plugins/org.blueberry.core.runtime/src/berryIStatus.h index 5407145dbb1..4a674cc9dfd 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryIStatus.h +++ b/Plugins/org.blueberry.core.runtime/src/berryIStatus.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISTATUS_H_ #define BERRYISTATUS_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryListenerList.h b/Plugins/org.blueberry.core.runtime/src/berryListenerList.h index 333241c503f..59505ba8cd7 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryListenerList.h +++ b/Plugins/org.blueberry.core.runtime/src/berryListenerList.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLISTENERLIST_H #define BERRYLISTENERLIST_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryLog.cpp b/Plugins/org.blueberry.core.runtime/src/berryLog.cpp index 15cab5a448a..1fae3c79d0d 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryLog.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryLog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryLog.h b/Plugins/org.blueberry.core.runtime/src/berryLog.h index 4a7543004a9..bb89526a103 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryLog.h +++ b/Plugins/org.blueberry.core.runtime/src/berryLog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_LOG_H__ #define __BERRY_LOG_H__ diff --git a/Plugins/org.blueberry.core.runtime/src/berryMacros.h b/Plugins/org.blueberry.core.runtime/src/berryMacros.h index 7f1c071c9f5..31387c75444 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryMacros.h +++ b/Plugins/org.blueberry.core.runtime/src/berryMacros.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_MACROS_H__ #define __BERRY_MACROS_H__ diff --git a/Plugins/org.blueberry.core.runtime/src/berryMessage.h b/Plugins/org.blueberry.core.runtime/src/berryMessage.h index 72dda5c64b0..40b2808d092 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryMessage.h +++ b/Plugins/org.blueberry.core.runtime/src/berryMessage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMESSAGE_H_ #define BERRYMESSAGE_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryMultiStatus.cpp b/Plugins/org.blueberry.core.runtime/src/berryMultiStatus.cpp index 206e28880da..0c7f0b61021 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryMultiStatus.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryMultiStatus.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMultiStatus.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryMultiStatus.h b/Plugins/org.blueberry.core.runtime/src/berryMultiStatus.h index 09a703f14b6..b6c9d9ce65f 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryMultiStatus.h +++ b/Plugins/org.blueberry.core.runtime/src/berryMultiStatus.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMULTISTATUS_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryNonDerivable.h b/Plugins/org.blueberry.core.runtime/src/berryNonDerivable.h index 1824561762e..792669b40d7 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryNonDerivable.h +++ b/Plugins/org.blueberry.core.runtime/src/berryNonDerivable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYNONDERIVABLE_H #define BERRYNONDERIVABLE_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryObject.cpp b/Plugins/org.blueberry.core.runtime/src/berryObject.cpp index e3e664ebe8f..1d1b4283571 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryObject.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryObject.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryObject.h b/Plugins/org.blueberry.core.runtime/src/berryObject.h index 13a65cc1dfa..325abc974df 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryObject.h +++ b/Plugins/org.blueberry.core.runtime/src/berryObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECT_H_ #define BERRYOBJECT_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjectGeneric.h b/Plugins/org.blueberry.core.runtime/src/berryObjectGeneric.h index 8817941b342..626a57bdfa4 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryObjectGeneric.h +++ b/Plugins/org.blueberry.core.runtime/src/berryObjectGeneric.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECTGENERIC_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjectList.h b/Plugins/org.blueberry.core.runtime/src/berryObjectList.h index a23172f9a2c..b552978fcb5 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryObjectList.h +++ b/Plugins/org.blueberry.core.runtime/src/berryObjectList.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOSGIOBJECTLIST_H_ #define BERRYOSGIOBJECTLIST_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjectString.cpp b/Plugins/org.blueberry.core.runtime/src/berryObjectString.cpp index fbdd25eecd6..36b8fb84342 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryObjectString.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryObjectString.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryObjectString.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjectString.h b/Plugins/org.blueberry.core.runtime/src/berryObjectString.h index e4ceabe3217..548fe4229cb 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryObjectString.h +++ b/Plugins/org.blueberry.core.runtime/src/berryObjectString.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECTSTRING_H_ #define BERRYOBJECTSTRING_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjectStringMap.cpp b/Plugins/org.blueberry.core.runtime/src/berryObjectStringMap.cpp index 03d1a2730c0..e04479b204c 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryObjectStringMap.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryObjectStringMap.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryObjectStringMap.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjectStringMap.h b/Plugins/org.blueberry.core.runtime/src/berryObjectStringMap.h index ffd6da7de17..3d85967da6d 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryObjectStringMap.h +++ b/Plugins/org.blueberry.core.runtime/src/berryObjectStringMap.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECTSTRINGMAP_H #define BERRYOBJECTSTRINGMAP_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjectTypeInfo.cpp b/Plugins/org.blueberry.core.runtime/src/berryObjectTypeInfo.cpp index 0ad5f76465c..3a866e38c99 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryObjectTypeInfo.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryObjectTypeInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryObjectTypeInfo.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjectTypeInfo.h b/Plugins/org.blueberry.core.runtime/src/berryObjectTypeInfo.h index 5a8edb58239..56d74d588c3 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryObjectTypeInfo.h +++ b/Plugins/org.blueberry.core.runtime/src/berryObjectTypeInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECTTYPEINFO_H #define BERRYOBJECTTYPEINFO_H diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjects.cpp b/Plugins/org.blueberry.core.runtime/src/berryObjects.cpp index b10618b2a0a..d397b391b96 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryObjects.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryObjects.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryObjects.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryObjects.h b/Plugins/org.blueberry.core.runtime/src/berryObjects.h index 21b216eee0c..dce9cfa163b 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryObjects.h +++ b/Plugins/org.blueberry.core.runtime/src/berryObjects.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECTS_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryOperationCanceledException.cpp b/Plugins/org.blueberry.core.runtime/src/berryOperationCanceledException.cpp index 81b70b520e8..679d9a94170 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryOperationCanceledException.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryOperationCanceledException.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryOperationCanceledException.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryOperationCanceledException.h b/Plugins/org.blueberry.core.runtime/src/berryOperationCanceledException.h index 658a0bd5ad7..d9e0199d99b 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryOperationCanceledException.h +++ b/Plugins/org.blueberry.core.runtime/src/berryOperationCanceledException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSOLSTICEEXCEPTIONS_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryPlatform.cpp b/Plugins/org.blueberry.core.runtime/src/berryPlatform.cpp index e58c49d99ae..3224c859513 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryPlatform.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryPlatform.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPlatform.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryPlatform.h b/Plugins/org.blueberry.core.runtime/src/berryPlatform.h index 476c9abf7ef..f072f5b8ed1 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryPlatform.h +++ b/Plugins/org.blueberry.core.runtime/src/berryPlatform.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRY_Platform_INCLUDED #define BERRY_Platform_INCLUDED diff --git a/Plugins/org.blueberry.core.runtime/src/berryPlatformException.cpp b/Plugins/org.blueberry.core.runtime/src/berryPlatformException.cpp index 26e1e8e0021..2e2c37ae858 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryPlatformException.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryPlatformException.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPlatformException.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryPlatformException.h b/Plugins/org.blueberry.core.runtime/src/berryPlatformException.h index 87b97c8ee8c..95e8b3d0bea 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryPlatformException.h +++ b/Plugins/org.blueberry.core.runtime/src/berryPlatformException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLATFORMEXCEPTION_H_ #define BERRYPLATFORMEXCEPTION_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryPlatformObject.cpp b/Plugins/org.blueberry.core.runtime/src/berryPlatformObject.cpp index 0a43f296cb0..ac26fdac3dd 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryPlatformObject.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryPlatformObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPlatformObject.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryPlatformObject.h b/Plugins/org.blueberry.core.runtime/src/berryPlatformObject.h index edf22292ab6..6e3a57dd8df 100755 --- a/Plugins/org.blueberry.core.runtime/src/berryPlatformObject.h +++ b/Plugins/org.blueberry.core.runtime/src/berryPlatformObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLATFORMOBJECT_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryPlugin.cpp b/Plugins/org.blueberry.core.runtime/src/berryPlugin.cpp index 7436ceea8b3..e7e3aafa07b 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryPlugin.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPlugin.h" #include "internal/berryInternalPlatform.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryPlugin.h b/Plugins/org.blueberry.core.runtime/src/berryPlugin.h index 6abfbb477a5..5ff821f5140 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryPlugin.h +++ b/Plugins/org.blueberry.core.runtime/src/berryPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLUGIN_H_ #define BERRYPLUGIN_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryReflection.cpp b/Plugins/org.blueberry.core.runtime/src/berryReflection.cpp index 06485343cf1..069c31cea28 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryReflection.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryReflection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryReflection.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryReflection.h b/Plugins/org.blueberry.core.runtime/src/berryReflection.h index 2934485bd49..7fdf9d214e1 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryReflection.h +++ b/Plugins/org.blueberry.core.runtime/src/berryReflection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREFLECTION_H #define BERRYREFLECTION_H diff --git a/Plugins/org.blueberry.core.runtime/src/berrySafeRunner.cpp b/Plugins/org.blueberry.core.runtime/src/berrySafeRunner.cpp index c34f13112c4..82fcd11c7b6 100644 --- a/Plugins/org.blueberry.core.runtime/src/berrySafeRunner.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berrySafeRunner.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySafeRunner.h" #include "berryOperationCanceledException.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berrySafeRunner.h b/Plugins/org.blueberry.core.runtime/src/berrySafeRunner.h index 6a1d05fc5dd..955eaee962a 100644 --- a/Plugins/org.blueberry.core.runtime/src/berrySafeRunner.h +++ b/Plugins/org.blueberry.core.runtime/src/berrySafeRunner.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAFERUNNER_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berrySmartPointer.h b/Plugins/org.blueberry.core.runtime/src/berrySmartPointer.h index b3cc3342c74..9eee9e3cf52 100644 --- a/Plugins/org.blueberry.core.runtime/src/berrySmartPointer.h +++ b/Plugins/org.blueberry.core.runtime/src/berrySmartPointer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSMARTPOINTER_H_ #define BERRYSMARTPOINTER_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryStatus.cpp b/Plugins/org.blueberry.core.runtime/src/berryStatus.cpp index 9059155e4d9..4ff650e5829 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryStatus.cpp +++ b/Plugins/org.blueberry.core.runtime/src/berryStatus.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStatus.h" diff --git a/Plugins/org.blueberry.core.runtime/src/berryStatus.h b/Plugins/org.blueberry.core.runtime/src/berryStatus.h index ff800ca1789..a015fc14651 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryStatus.h +++ b/Plugins/org.blueberry.core.runtime/src/berryStatus.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSTATUS_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/berryWeakPointer.h b/Plugins/org.blueberry.core.runtime/src/berryWeakPointer.h index c66f0b3731e..b63f6167ca3 100644 --- a/Plugins/org.blueberry.core.runtime/src/berryWeakPointer.h +++ b/Plugins/org.blueberry.core.runtime/src/berryWeakPointer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_WEAK_POINTER_H__ #define __BERRY_WEAK_POINTER_H__ diff --git a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryExtensionTracker.cpp b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryExtensionTracker.cpp index 945de316cfa..516f9f51e76 100644 --- a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryExtensionTracker.cpp +++ b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryExtensionTracker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtensionTracker.h" diff --git a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryExtensionTracker.h b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryExtensionTracker.h index 8f9daa55d44..0b61746ff60 100644 --- a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryExtensionTracker.h +++ b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryExtensionTracker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSIONTRACKER_H #define BERRYEXTENSIONTRACKER_H diff --git a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionChangeHandler.cpp b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionChangeHandler.cpp index 732ac81e084..21792b2d0e2 100644 --- a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionChangeHandler.cpp +++ b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionChangeHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExtensionChangeHandler.h" diff --git a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionChangeHandler.h b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionChangeHandler.h index b94d466d6c7..88637ffd758 100644 --- a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionChangeHandler.h +++ b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionChangeHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXTENSIONCHANGEHANDLER_H #define BERRYIEXTENSIONCHANGEHANDLER_H diff --git a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionTracker.cpp b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionTracker.cpp index 7338e32890b..fdc7a0da820 100644 --- a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionTracker.cpp +++ b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionTracker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExtensionTracker.h" diff --git a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionTracker.h b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionTracker.h index 9de3b7068c6..f9cb0820f2e 100644 --- a/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionTracker.h +++ b/Plugins/org.blueberry.core.runtime/src/dynamichelpers/berryIExtensionTracker.h @@ -1,32 +1,24 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*//*=================================================================== +============================================================================*//*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXTENSIONTRACKER_H #define BERRYIEXTENSIONTRACKER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryAbstractPreferencesStorage.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryAbstractPreferencesStorage.cpp index 08d96205f2a..ad62f111b5d 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryAbstractPreferencesStorage.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryAbstractPreferencesStorage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractPreferencesStorage.h" #include diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryAbstractPreferencesStorage.h b/Plugins/org.blueberry.core.runtime/src/internal/berryAbstractPreferencesStorage.h index 67aff4a1d67..20a3f0b303d 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryAbstractPreferencesStorage.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryAbstractPreferencesStorage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTPREFERENCESSTORAGE_H_ #define BERRYABSTRACTPREFERENCESSTORAGE_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryAdapterService.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryAdapterService.cpp index 9f9c51206d2..2b1a4581404 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryAdapterService.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryAdapterService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAdapterService.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryAdapterService.h b/Plugins/org.blueberry.core.runtime/src/internal/berryAdapterService.h index cbea1c0c047..b4d70d9cde1 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryAdapterService.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryAdapterService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYADAPTERMANAGER_H_ #define BERRYADAPTERMANAGER_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationContainer.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationContainer.cpp index 064e376d8be..62a92d5cf4c 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationContainer.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryApplicationContainer.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationContainer.h b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationContainer.h index 7deca2b629e..45c092537d7 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationContainer.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYAPPLICATIONCONTAINER_H #define BERRYAPPLICATIONCONTAINER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationDescriptor.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationDescriptor.cpp index 6b5eed99541..f15f2dffbd9 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationDescriptor.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryApplicationDescriptor.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationDescriptor.h b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationDescriptor.h index ffc52ead116..9885719a2e4 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationDescriptor.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYAPPLICATIONDESCRIPTOR_H #define BERRYAPPLICATIONDESCRIPTOR_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationHandle.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationHandle.cpp index bd5a6e92843..9b92df55a2c 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationHandle.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationHandle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryApplicationHandle.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationHandle.h b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationHandle.h index dd30ed6da93..2c09b90dd0c 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationHandle.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryApplicationHandle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYAPPLICATIONHANDLE_H #define BERRYAPPLICATIONHANDLE_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginActivator.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginActivator.cpp index 5f2b670e5ef..54b412b2b29 100755 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginActivator.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NOMINMAX #define NOMINMAX diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginActivator.h b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginActivator.h index 85dc107031f..b6de976f32f 100755 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginActivator.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCTKPLUGINACTIVATOR_H #define BERRYCTKPLUGINACTIVATOR_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginListener.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginListener.cpp index 3f71f983408..a7bb051c7fc 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginListener.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCTKPluginListener.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginListener.h b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginListener.h index fcf7d2332ae..a29632e7952 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginListener.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCTKPLUGINLISTENER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginUtils.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginUtils.cpp index f06a69a280c..73d8dfb9de3 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginUtils.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginUtils.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCTKPluginUtils.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginUtils.h b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginUtils.h index af163b3afb7..aaa02678479 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginUtils.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryCTKPluginUtils.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCTKPLUGINUTILS_H #define BERRYCTKPLUGINUTILS_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryCombinedEventDelta.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryCombinedEventDelta.cpp index 6efb750ca56..024616bdd79 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryCombinedEventDelta.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryCombinedEventDelta.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCombinedEventDelta.h" #include "berryExtensionPoint.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryCombinedEventDelta.h b/Plugins/org.blueberry.core.runtime/src/internal/berryCombinedEventDelta.h index 5e6aab5961c..68d8699ef0b 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryCombinedEventDelta.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryCombinedEventDelta.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMBINEDEVENTDELTA_H #define BERRYCOMBINEDEVENTDELTA_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElement.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElement.cpp index 23faeb6f504..5b98a2a0218 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElement.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElement.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryConfigurationElement.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElement.h b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElement.h index 2a40beb8a2e..3f55d58bf5b 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElement.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSIONELEMENT_H_ #define BERRYEXTENSIONELEMENT_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementAttribute.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementAttribute.cpp index 55ac81a4c8f..21b9e162fa6 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementAttribute.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementAttribute.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryConfigurationElementAttribute.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementAttribute.h b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementAttribute.h index 80ec12cdbfc..db5563750d7 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementAttribute.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementAttribute.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONFIGURATIONELEMENTATTRIBUTE_H #define BERRYCONFIGURATIONELEMENTATTRIBUTE_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementDescription.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementDescription.cpp index 622b3d2559c..ba19f385603 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementDescription.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementDescription.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryConfigurationElementDescription.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementDescription.h b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementDescription.h index d71fcea02bc..e4122512264 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementDescription.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementDescription.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONFIGURATIONELEMENTDESCRIPTION_H #define BERRYCONFIGURATIONELEMENTDESCRIPTION_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementHandle.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementHandle.cpp index 6d01c7b0886..8dabc64fdae 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementHandle.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementHandle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryConfigurationElementHandle.h" #include "berryConfigurationElement.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementHandle.h b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementHandle.h index e6ceb7272e3..f6c6216a062 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementHandle.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryConfigurationElementHandle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONFIGURATIONELEMENTHANDLE_H #define BERRYCONFIGURATIONELEMENTHANDLE_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryErrorApplication.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryErrorApplication.cpp index 5015d3d32de..1b9a59d235e 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryErrorApplication.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryErrorApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryErrorApplication.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryErrorApplication.h b/Plugins/org.blueberry.core.runtime/src/internal/berryErrorApplication.h index d780b125d42..bb08b406455 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryErrorApplication.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryErrorApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYERRORAPPLICATION_H #define BERRYERRORAPPLICATION_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtension.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryExtension.cpp index 265978b2bb4..cd93e151052 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtension.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtension.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtension.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtension.h b/Plugins/org.blueberry.core.runtime/src/internal/berryExtension.h index d14d40ee689..5e03e363a8e 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtension.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSION_H_ #define BERRYEXTENSION_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionHandle.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionHandle.cpp index 193838a93a6..32773b01e6a 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionHandle.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionHandle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtensionHandle.h" #include "berryExtension.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionHandle.h b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionHandle.h index 9c91eba21c8..197493235e6 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionHandle.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionHandle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSIONHANDLE_H #define BERRYEXTENSIONHANDLE_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPoint.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPoint.cpp index b11cda4ddc0..e5194b342af 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPoint.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPoint.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtensionPoint.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPoint.h b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPoint.h index 3794640fefd..0e0187a27b3 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPoint.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPoint.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSIONPOINT_H_ #define BERRYEXTENSIONPOINT_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPointHandle.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPointHandle.cpp index 0b8892987a2..f96f1602b21 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPointHandle.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPointHandle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtensionPointHandle.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPointHandle.h b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPointHandle.h index a0035056681..0cbc204b91d 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPointHandle.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionPointHandle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSIONPOINTHANDLE_H #define BERRYEXTENSIONPOINTHANDLE_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionRegistry.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionRegistry.cpp index e01ab6470e0..30921282748 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionRegistry.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtensionRegistry.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionRegistry.h b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionRegistry.h index ffc8e6bac97..80b96759fc0 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionRegistry.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSIONREGISTRY_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionsParser.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionsParser.cpp index 21f59ecaead..145430f5eba 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionsParser.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionsParser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtensionsParser.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionsParser.h b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionsParser.h index e6f6eb8ec0e..732ac978ef8 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionsParser.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryExtensionsParser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSIONSPARSER_H #define BERRYEXTENSIONSPARSER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryHandle.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryHandle.cpp index 488abaeed5c..33f6253a096 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryHandle.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryHandle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandle.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryHandle.h b/Plugins/org.blueberry.core.runtime/src/internal/berryHandle.h index c985bf18537..148cf17cf37 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryHandle.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryHandle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLE_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryHashtableOfStringAndInt.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryHashtableOfStringAndInt.cpp index 13c22ffa6c4..15e85644516 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryHashtableOfStringAndInt.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryHashtableOfStringAndInt.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHashtableOfStringAndInt.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryHashtableOfStringAndInt.h b/Plugins/org.blueberry.core.runtime/src/internal/berryHashtableOfStringAndInt.h index 700d1c2dd79..0d0fb59865c 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryHashtableOfStringAndInt.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryHashtableOfStringAndInt.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHASHTABLEOFSTRINGANDINT_H #define BERRYHASHTABLEOFSTRINGANDINT_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryIAdapterManagerProvider.h b/Plugins/org.blueberry.core.runtime/src/internal/berryIAdapterManagerProvider.h index b92e8fbb864..667f9713b05 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryIAdapterManagerProvider.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryIAdapterManagerProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIADAPTERMANAGERPROVIDER_H_ #define BERRYIADAPTERMANAGERPROVIDER_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryIBranding.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryIBranding.cpp index 704037994b4..eb1569972d3 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryIBranding.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryIBranding.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIBranding.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryIBranding.h b/Plugins/org.blueberry.core.runtime/src/internal/berryIBranding.h index 327de4fca5d..8cc90b3acdc 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryIBranding.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryIBranding.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIBRANDING_H #define BERRYIBRANDING_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryIObjectManager.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryIObjectManager.cpp index 22c817c4978..2dd64842d24 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryIObjectManager.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryIObjectManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIObjectManager.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryIObjectManager.h b/Plugins/org.blueberry.core.runtime/src/internal/berryIObjectManager.h index 95bc69c1d56..394f54d3f56 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryIObjectManager.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryIObjectManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIOBJECTMANAGER_H #define BERRYIOBJECTMANAGER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryIRuntimeConstants.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryIRuntimeConstants.cpp index 1c0f690eb0e..f4231890bb2 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryIRuntimeConstants.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryIRuntimeConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIRuntimeConstants.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryIRuntimeConstants.h b/Plugins/org.blueberry.core.runtime/src/internal/berryIRuntimeConstants.h index 14307a2e93c..612e789700b 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryIRuntimeConstants.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryIRuntimeConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIRUNTIMECONSTANTS_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryInternalPlatform.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryInternalPlatform.cpp index a6711d04825..1549ae9c6de 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryInternalPlatform.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryInternalPlatform.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NOMINMAX #define NOMINMAX diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryInternalPlatform.h b/Plugins/org.blueberry.core.runtime/src/internal/berryInternalPlatform.h index 30a417722f6..c6a3c63abd5 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryInternalPlatform.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryInternalPlatform.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINTERNALPLATFORM_H_ #define BERRYINTERNALPLATFORM_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedElement.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedElement.cpp index f2f030f82c8..f2f9d01cb4f 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedElement.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedElement.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryKeyedElement.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedElement.h b/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedElement.h index ec61863adf0..3fcd19a1793 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedElement.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedElement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYKEYEDELEMENT_H #define BERRYKEYEDELEMENT_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedHashSet.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedHashSet.cpp index 19e2c03eb1e..4ef339314d9 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedHashSet.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedHashSet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryKeyedHashSet.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedHashSet.h b/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedHashSet.h index 6c3bbc0c746..bf080f915f7 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedHashSet.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryKeyedHashSet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYKEYEDHASHSET_H #define BERRYKEYEDHASHSET_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryLogImpl.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryLogImpl.cpp index ab9910856d5..b261b3001ad 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryLogImpl.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryLogImpl.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLogImpl.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryLogImpl.h b/Plugins/org.blueberry.core.runtime/src/internal/berryLogImpl.h index aa08a949968..d3f4a783c5a 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryLogImpl.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryLogImpl.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLOGIMPL_H #define BERRYLOGIMPL_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryMainApplicationLauncher.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryMainApplicationLauncher.cpp index 31ba1d99e87..ce9dca99819 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryMainApplicationLauncher.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryMainApplicationLauncher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMainApplicationLauncher.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryMainApplicationLauncher.h b/Plugins/org.blueberry.core.runtime/src/internal/berryMainApplicationLauncher.h index 1a58637d9c8..70713781701 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryMainApplicationLauncher.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryMainApplicationLauncher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMAINAPPLICATIONLAUNCHER_H #define BERRYMAINAPPLICATIONLAUNCHER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryPlatformLogChannel.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryPlatformLogChannel.cpp index f6fbec8ba79..7bb65bbe15c 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryPlatformLogChannel.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryPlatformLogChannel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPlatformLogChannel.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryPlatformLogChannel.h b/Plugins/org.blueberry.core.runtime/src/internal/berryPlatformLogChannel.h index d496126230b..d0aca4fc60a 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryPlatformLogChannel.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryPlatformLogChannel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLATFORMLOGCHANNEL_H_ #define BERRYPLATFORMLOGCHANNEL_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryPreferences.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryPreferences.cpp index f1a65298b47..fed73bac3f2 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryPreferences.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryPreferences.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPreferences.h" #include "berryAbstractPreferencesStorage.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryPreferences.h b/Plugins/org.blueberry.core.runtime/src/internal/berryPreferences.h index 05a2f6df306..cb299c20c42 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryPreferences.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryPreferences.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPREFERENCES_H_ #define BERRYPREFERENCES_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryPreferencesService.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryPreferencesService.cpp index 753478ee276..8063212c860 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryPreferencesService.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryPreferencesService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPreferencesService.h" #include "berryXMLPreferencesStorage.h" #include "berryIPreferences.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryPreferencesService.h b/Plugins/org.blueberry.core.runtime/src/internal/berryPreferencesService.h index 1200d434999..97b6663caf0 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryPreferencesService.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryPreferencesService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPREFERENCESSERVICE_H_ #define BERRYPREFERENCESSERVICE_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryProduct.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryProduct.cpp index b4242aa6e02..005f6dda131 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryProduct.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryProduct.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryProduct.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryProduct.h b/Plugins/org.blueberry.core.runtime/src/internal/berryProduct.h index 59854b244d9..ed6973e2887 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryProduct.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryProduct.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPRODUCT_H #define BERRYPRODUCT_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryProductExtensionBranding.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryProductExtensionBranding.cpp index 82416cd93e6..d48c39fc528 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryProductExtensionBranding.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryProductExtensionBranding.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryProductExtensionBranding.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryProductExtensionBranding.h b/Plugins/org.blueberry.core.runtime/src/internal/berryProductExtensionBranding.h index 548038af0e6..90eb79b5b4d 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryProductExtensionBranding.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryProductExtensionBranding.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPRODUCTEXTENSIONBRANDING_H #define BERRYPRODUCTEXTENSIONBRANDING_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryProviderExtensionBranding.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryProviderExtensionBranding.cpp index 4b98b428ac3..c0c8ee4e16f 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryProviderExtensionBranding.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryProviderExtensionBranding.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryProviderExtensionBranding.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryProviderExtensionBranding.h b/Plugins/org.blueberry.core.runtime/src/internal/berryProviderExtensionBranding.h index 41745a3d872..78a7641e7d0 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryProviderExtensionBranding.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryProviderExtensionBranding.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPROVIDEREXTENSIONBRANDING_H #define BERRYPROVIDEREXTENSIONBRANDING_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContribution.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContribution.cpp index aa3f6e9fbac..e144131c14f 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContribution.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContribution.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryContribution.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContribution.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContribution.h index 17b014d5096..954028f2224 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContribution.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContribution.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYCONTRIBUTION_H #define BERRYREGISTRYCONTRIBUTION_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContributor.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContributor.cpp index 0d5e133fead..c1233652cc2 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContributor.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContributor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryContributor.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContributor.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContributor.h index 69250e11e01..c85d12d9526 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContributor.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryContributor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYCONTRIBUTOR_H #define BERRYREGISTRYCONTRIBUTOR_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexChildren.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexChildren.cpp index ad77462408a..7af1abaf485 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexChildren.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexChildren.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryIndexChildren.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexChildren.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexChildren.h index b7e870e94e2..988fae33727 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexChildren.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexChildren.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYINDEXCHILDREN_H #define BERRYREGISTRYINDEXCHILDREN_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexElement.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexElement.cpp index 3e7e342dda3..573f6542ff8 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexElement.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexElement.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryIndexElement.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexElement.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexElement.h index 6afd39853c0..fa4b1665e81 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexElement.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryIndexElement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYINDEXELEMENT_H #define BERRYREGISTRYINDEXELEMENT_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryMessages.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryMessages.cpp index 38c8f1c955b..0bb937793c0 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryMessages.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryMessages.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryMessages.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryMessages.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryMessages.h index a6bba00f818..6e7b667c0c1 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryMessages.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryMessages.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYMESSAGES_H #define BERRYREGISTRYMESSAGES_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObject.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObject.cpp index cc32da4bd34..3a5f23ef263 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObject.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryObject.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObject.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObject.h index aaf18644f20..6f376977c3f 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObject.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYOBJECT_H #define BERRYREGISTRYOBJECT_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectFactory.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectFactory.cpp index c2487bd0567..0b59db87c8c 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectFactory.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryObjectFactory.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectFactory.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectFactory.h index 596da3d451c..4cc42a5ef83 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectFactory.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYOBJECTFACTORY_H #define BERRYREGISTRYOBJECTFACTORY_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectManager.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectManager.cpp index 82708b8744c..7e77aca8281 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectManager.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef NOMINMAX #define NOMINMAX diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectManager.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectManager.h index 5e65dd4f359..b98b4443565 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectManager.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYOBJECTMANAGER_H #define BERRYREGISTRYOBJECTMANAGER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectReferenceMap.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectReferenceMap.cpp index abef3e64cb4..8b4a0282350 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectReferenceMap.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectReferenceMap.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryObjectReferenceMap.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectReferenceMap.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectReferenceMap.h index 94ecd32305b..85e6f1ba513 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectReferenceMap.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryObjectReferenceMap.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYOBJECTREFERENCEMAP_H #define BERRYREGISTRYOBJECTREFERENCEMAP_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryProperties.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryProperties.cpp index 489e87a316c..0a27acca76b 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryProperties.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryProperties.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryProperties.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryProperties.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryProperties.h index 198e6ad7615..0d244f203f1 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryProperties.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryProperties.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYPROPERTIES_H #define BERRYREGISTRYPROPERTIES_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryStrategy.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryStrategy.cpp index ae0992ae6c2..663db3296c2 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryStrategy.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryStrategy.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryStrategy.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryStrategy.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryStrategy.h index 915a8831324..f25f7d4fa59 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryStrategy.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryStrategy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYSTRATEGY_H #define BERRYREGISTRYSTRATEGY_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistrySupport.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistrySupport.cpp index 65c93691331..bfc9d9a89fb 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistrySupport.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistrySupport.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistrySupport.h" #include "berryIStatus.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistrySupport.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistrySupport.h index 1c1ca0aab96..06a38685827 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistrySupport.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistrySupport.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYSUPPORT_H #define BERRYREGISTRYSUPPORT_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryTimestamp.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryTimestamp.cpp index f3ced73f114..d6e7e63829b 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryTimestamp.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryTimestamp.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryTimestamp.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryTimestamp.h b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryTimestamp.h index fc1e0fc1256..91093af976c 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryTimestamp.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryRegistryTimestamp.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYTIMESTAMP_H #define BERRYREGISTRYTIMESTAMP_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berrySimpleExtensionPointFilter.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berrySimpleExtensionPointFilter.cpp index 0e585d89caa..251d49217eb 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berrySimpleExtensionPointFilter.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berrySimpleExtensionPointFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySimpleExtensionPointFilter.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berrySimpleExtensionPointFilter.h b/Plugins/org.blueberry.core.runtime/src/internal/berrySimpleExtensionPointFilter.h index e56e55a41e9..a7596d37051 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berrySimpleExtensionPointFilter.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berrySimpleExtensionPointFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSIMPLEEXTENSIONPOINTFILTER_H #define BERRYSIMPLEEXTENSIONPOINTFILTER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryTemporaryObjectManager.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryTemporaryObjectManager.cpp index 07d9a917237..3a9a1ec9053 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryTemporaryObjectManager.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryTemporaryObjectManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTemporaryObjectManager.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryTemporaryObjectManager.h b/Plugins/org.blueberry.core.runtime/src/internal/berryTemporaryObjectManager.h index 7c4250b725e..45a22ebe980 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryTemporaryObjectManager.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryTemporaryObjectManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTEMPORARYOBJECTMANAGER_H #define BERRYTEMPORARYOBJECTMANAGER_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryThirdLevelConfigurationElementHandle.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryThirdLevelConfigurationElementHandle.cpp index dae0edfba2f..793fb498b0d 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryThirdLevelConfigurationElementHandle.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryThirdLevelConfigurationElementHandle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryThirdLevelConfigurationElementHandle.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryThirdLevelConfigurationElementHandle.h b/Plugins/org.blueberry.core.runtime/src/internal/berryThirdLevelConfigurationElementHandle.h index 6f245c3a7b2..c2efd12e1a3 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryThirdLevelConfigurationElementHandle.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryThirdLevelConfigurationElementHandle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTHIRDLEVELCONFIGURATIONELEMENTHANDLE_H #define BERRYTHIRDLEVELCONFIGURATIONELEMENTHANDLE_H diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryXMLPreferencesStorage.cpp b/Plugins/org.blueberry.core.runtime/src/internal/berryXMLPreferencesStorage.cpp index c59c09575c7..c05eb6138c0 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryXMLPreferencesStorage.cpp +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryXMLPreferencesStorage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryXMLPreferencesStorage.h" #include "berryPreferences.h" diff --git a/Plugins/org.blueberry.core.runtime/src/internal/berryXMLPreferencesStorage.h b/Plugins/org.blueberry.core.runtime/src/internal/berryXMLPreferencesStorage.h index 74f81c12f15..161c9c3d4d2 100644 --- a/Plugins/org.blueberry.core.runtime/src/internal/berryXMLPreferencesStorage.h +++ b/Plugins/org.blueberry.core.runtime/src/internal/berryXMLPreferencesStorage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYXMLPREFERENCES_H_ #define BERRYXMLPREFERENCES_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIConfigurationElement.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIConfigurationElement.cpp index 29c5f6658d0..727c0349323 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIConfigurationElement.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIConfigurationElement.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIConfigurationElement.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIConfigurationElement.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIConfigurationElement.h index e43cf8b59d4..d64eb10bb28 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIConfigurationElement.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIConfigurationElement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXTENSIONELEMENT_H_ #define BERRYIEXTENSIONELEMENT_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIContributor.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIContributor.cpp index 11e75f98ba8..d560d163e36 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIContributor.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIContributor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIContributor.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIContributor.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIContributor.h index 8e4153d98e3..6377a14d174 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIContributor.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIContributor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICONTRIBUTOR_H #define BERRYICONTRIBUTOR_H diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtension.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtension.cpp index 5f610d35f9e..e64be66d4e3 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtension.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtension.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExecutableExtension.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtension.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtension.h index 7f9a8860317..8714128073e 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtension.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXECUTABLEEXTENSION_H_ #define BERRYIEXECUTABLEEXTENSION_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtensionFactory.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtensionFactory.cpp index ac027786ef4..76ee06bcb1d 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtensionFactory.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtensionFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExecutableExtensionFactory.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtensionFactory.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtensionFactory.h index 619d7bf0cd4..76f1bffd9e3 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtensionFactory.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExecutableExtensionFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXECUTABLEEXTENSIONFACTORY_H #define BERRYIEXECUTABLEEXTENSIONFACTORY_H diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtension.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtension.cpp index 4f4ad9983db..721248be3f6 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtension.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtension.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExtension.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtension.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtension.h index 30220dc9f46..358c5af5db6 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtension.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtension.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXTENSION_H_ #define BERRYIEXTENSION_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPoint.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPoint.cpp index bb858e40498..b57beed0ea6 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPoint.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPoint.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExtensionPoint.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPoint.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPoint.h index 44e27bf8572..ab699a342b5 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPoint.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPoint.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXTENSIONPOINT_H_ #define BERRYIEXTENSIONPOINT_H_ diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPointFilter.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPointFilter.cpp index e72882ac119..c18e0610735 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPointFilter.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPointFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExtensionPointFilter.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPointFilter.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPointFilter.h index 7bf4849c4ab..6ace090e4f5 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPointFilter.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionPointFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXTENSIONPOINTFILTER_H #define BERRYIEXTENSIONPOINTFILTER_H diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionRegistry.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionRegistry.cpp index 67821ea1643..20134a160c2 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionRegistry.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIExtensionRegistry.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionRegistry.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionRegistry.h index e19d81e7b77..b87c4d70c71 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionRegistry.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIExtensionRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEXTENSIONREGISTRY_H diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIRegistryEventListener.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryIRegistryEventListener.cpp index b9d05edcd81..0f345f0e74a 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIRegistryEventListener.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIRegistryEventListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIRegistryEventListener.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryIRegistryEventListener.h b/Plugins/org.blueberry.core.runtime/src/registry/berryIRegistryEventListener.h index e4615873a94..77693d9cd5e 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryIRegistryEventListener.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryIRegistryEventListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIREGISTRYEVENTLISTENER_H #define BERRYIREGISTRYEVENTLISTENER_H diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryInvalidRegistryObjectException.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryInvalidRegistryObjectException.cpp index 77bb4470f17..6b915634f56 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryInvalidRegistryObjectException.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryInvalidRegistryObjectException.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryInvalidRegistryObjectException.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryInvalidRegistryObjectException.h b/Plugins/org.blueberry.core.runtime/src/registry/berryInvalidRegistryObjectException.h index 1b3d125e248..b3b7403a23c 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryInvalidRegistryObjectException.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryInvalidRegistryObjectException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINVALIDREGISTRYOBJECTEXCEPTION_H #define BERRYINVALIDREGISTRYOBJECTEXCEPTION_H diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryRegistryConstants.cpp b/Plugins/org.blueberry.core.runtime/src/registry/berryRegistryConstants.cpp index fa5db023552..2b287ab14cd 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryRegistryConstants.cpp +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryRegistryConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryConstants.h" diff --git a/Plugins/org.blueberry.core.runtime/src/registry/berryRegistryConstants.h b/Plugins/org.blueberry.core.runtime/src/registry/berryRegistryConstants.h index df035c9abb1..f6f990d31b2 100644 --- a/Plugins/org.blueberry.core.runtime/src/registry/berryRegistryConstants.h +++ b/Plugins/org.blueberry.core.runtime/src/registry/berryRegistryConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYCONSTANTS_H #define BERRYREGISTRYCONSTANTS_H diff --git a/Plugins/org.blueberry.test/manifest_headers.cmake b/Plugins/org.blueberry.test/manifest_headers.cmake index 0ff436ef9fe..6b5e458b86b 100644 --- a/Plugins/org.blueberry.test/manifest_headers.cmake +++ b/Plugins/org.blueberry.test/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Automated Testing") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin "org.blueberry.core.runtime") diff --git a/Plugins/org.blueberry.test/src/berryBlueBerryTestDriver.cpp b/Plugins/org.blueberry.test/src/berryBlueBerryTestDriver.cpp index 149a331d4a4..c4ec16d8d3e 100644 --- a/Plugins/org.blueberry.test/src/berryBlueBerryTestDriver.cpp +++ b/Plugins/org.blueberry.test/src/berryBlueBerryTestDriver.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryBlueBerryTestDriver.h" diff --git a/Plugins/org.blueberry.test/src/berryBlueBerryTestDriver.h b/Plugins/org.blueberry.test/src/berryBlueBerryTestDriver.h index 2336f659c88..361abb60502 100644 --- a/Plugins/org.blueberry.test/src/berryBlueBerryTestDriver.h +++ b/Plugins/org.blueberry.test/src/berryBlueBerryTestDriver.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYBLUEBERRYTESTDRIVER_H_ diff --git a/Plugins/org.blueberry.test/src/berryCoreTestApplication.cpp b/Plugins/org.blueberry.test/src/berryCoreTestApplication.cpp index b7bd3601751..fe3e265689f 100644 --- a/Plugins/org.blueberry.test/src/berryCoreTestApplication.cpp +++ b/Plugins/org.blueberry.test/src/berryCoreTestApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCoreTestApplication.h" diff --git a/Plugins/org.blueberry.test/src/berryCoreTestApplication.h b/Plugins/org.blueberry.test/src/berryCoreTestApplication.h index 6d81049c659..b2d9cf799a1 100644 --- a/Plugins/org.blueberry.test/src/berryCoreTestApplication.h +++ b/Plugins/org.blueberry.test/src/berryCoreTestApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCORETESTAPPLICATION_H_ diff --git a/Plugins/org.blueberry.test/src/berryITestDescriptor.h b/Plugins/org.blueberry.test/src/berryITestDescriptor.h index 84b03d5239f..9cf2bfa9899 100644 --- a/Plugins/org.blueberry.test/src/berryITestDescriptor.h +++ b/Plugins/org.blueberry.test/src/berryITestDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYITESTDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.test/src/harness/berryTestCase.cpp b/Plugins/org.blueberry.test/src/harness/berryTestCase.cpp index 63ae33cce8c..df3b67d6050 100644 --- a/Plugins/org.blueberry.test/src/harness/berryTestCase.cpp +++ b/Plugins/org.blueberry.test/src/harness/berryTestCase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTestCase.h" diff --git a/Plugins/org.blueberry.test/src/harness/berryTestCase.h b/Plugins/org.blueberry.test/src/harness/berryTestCase.h index bdb15020102..8d0d31ed9ee 100644 --- a/Plugins/org.blueberry.test/src/harness/berryTestCase.h +++ b/Plugins/org.blueberry.test/src/harness/berryTestCase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTESTCASE_H_ diff --git a/Plugins/org.blueberry.test/src/internal/berryPluginActivator.cpp b/Plugins/org.blueberry.test/src/internal/berryPluginActivator.cpp index eb651a4708e..a68f8131c36 100644 --- a/Plugins/org.blueberry.test/src/internal/berryPluginActivator.cpp +++ b/Plugins/org.blueberry.test/src/internal/berryPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPluginActivator.h" #include "berryMacros.h" diff --git a/Plugins/org.blueberry.test/src/internal/berryPluginActivator.h b/Plugins/org.blueberry.test/src/internal/berryPluginActivator.h index 483426a7583..fe80c1efebc 100644 --- a/Plugins/org.blueberry.test/src/internal/berryPluginActivator.h +++ b/Plugins/org.blueberry.test/src/internal/berryPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLUGINACTIVATOR_H diff --git a/Plugins/org.blueberry.test/src/internal/berryTestDescriptor.cpp b/Plugins/org.blueberry.test/src/internal/berryTestDescriptor.cpp index 7e709cd9c3f..f405c7c5c84 100644 --- a/Plugins/org.blueberry.test/src/internal/berryTestDescriptor.cpp +++ b/Plugins/org.blueberry.test/src/internal/berryTestDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTestDescriptor.h" #include "berryTestRegistry.h" diff --git a/Plugins/org.blueberry.test/src/internal/berryTestDescriptor.h b/Plugins/org.blueberry.test/src/internal/berryTestDescriptor.h index 33ad3ec271d..02fed4f1c6f 100644 --- a/Plugins/org.blueberry.test/src/internal/berryTestDescriptor.h +++ b/Plugins/org.blueberry.test/src/internal/berryTestDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTESTDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.test/src/internal/berryTestRegistry.cpp b/Plugins/org.blueberry.test/src/internal/berryTestRegistry.cpp index 2ef72bacd39..f785778a7c6 100644 --- a/Plugins/org.blueberry.test/src/internal/berryTestRegistry.cpp +++ b/Plugins/org.blueberry.test/src/internal/berryTestRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTestRegistry.h" #include "berryTestDescriptor.h" diff --git a/Plugins/org.blueberry.test/src/internal/berryTestRegistry.h b/Plugins/org.blueberry.test/src/internal/berryTestRegistry.h index 93e01f69087..95bccfae0aa 100644 --- a/Plugins/org.blueberry.test/src/internal/berryTestRegistry.h +++ b/Plugins/org.blueberry.test/src/internal/berryTestRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTESTREGISTRY_H_ diff --git a/Plugins/org.blueberry.test/src/util/berryCallHistory.cpp b/Plugins/org.blueberry.test/src/util/berryCallHistory.cpp index d7af3d8f904..e7a101ddbd5 100644 --- a/Plugins/org.blueberry.test/src/util/berryCallHistory.cpp +++ b/Plugins/org.blueberry.test/src/util/berryCallHistory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCallHistory.h" diff --git a/Plugins/org.blueberry.test/src/util/berryCallHistory.h b/Plugins/org.blueberry.test/src/util/berryCallHistory.h index f2aac051ac3..f954ba1cbe2 100644 --- a/Plugins/org.blueberry.test/src/util/berryCallHistory.h +++ b/Plugins/org.blueberry.test/src/util/berryCallHistory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCALLHISTORY_H_ diff --git a/Plugins/org.blueberry.ui.qt.help/manifest_headers.cmake b/Plugins/org.blueberry.ui.qt.help/manifest_headers.cmake index 705b1660ce8..c6e771bee62 100644 --- a/Plugins/org.blueberry.ui.qt.help/manifest_headers.cmake +++ b/Plugins/org.blueberry.ui.qt.help/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Help Plugin") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt) diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpContentView.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpContentView.cpp index e20b40a77f3..2aa154a2085 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpContentView.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpContentView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpContentView.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpContentView.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpContentView.h index ebfeffea497..3417e1d4858 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpContentView.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpContentView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPCONTENTVIEW_H_ #define BERRYHELPCONTENTVIEW_H_ diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditor.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditor.cpp index 834128c29bc..8161333a64c 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditor.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpEditor.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditor.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditor.h index 397c74ba100..ac8fc1f7e48 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditor.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPEDITOR_H_ #define BERRYHELPEDITOR_H_ diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorFindWidget.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorFindWidget.cpp index a41d44ac3f9..dea8dcea633 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorFindWidget.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorFindWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpEditorFindWidget.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorFindWidget.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorFindWidget.h index 4fd3373b126..d2b59d324a1 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorFindWidget.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorFindWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPEDITORFINDWIDGET_H #define BERRYHELPEDITORFINDWIDGET_H diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInput.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInput.cpp index 7326be743ed..6a53ce2d23d 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInput.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInput.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpEditorInput.h" #include "berryHelpEditorInputFactory.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInput.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInput.h index 8fa9aca512b..a35c7a65bf3 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInput.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInput.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPEDITORINPUT_H_ #define BERRYHELPEDITORINPUT_H_ diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInputFactory.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInputFactory.cpp index e6c6b446ace..d34f1f9f11d 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInputFactory.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInputFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpEditorInputFactory.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInputFactory.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInputFactory.h index 0812fb17c02..61132b45400 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInputFactory.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpEditorInputFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPEDITORINPUTFACTORY_H #define BERRYHELPEDITORINPUTFACTORY_H diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpIndexView.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpIndexView.cpp index 6fa491ea8e8..d4efe34f724 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpIndexView.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpIndexView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpIndexView.h" @@ -311,4 +307,4 @@ void HelpIndexView::linksActivated(const QMap& links, const QStrin HelpPluginActivator::linkActivated(page, tc.link()); } } -} \ No newline at end of file +} diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpIndexView.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpIndexView.h index e05d753c327..e2819f5db0e 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpIndexView.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpIndexView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPINDEXVIEW_H_ #define BERRYHELPINDEXVIEW_H_ diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPerspective.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPerspective.cpp index 42c0d19f87e..5dfb2ac26a5 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPerspective.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpPerspective.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPerspective.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPerspective.h index 81ebf507bc3..e904eb11367 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPerspective.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPPERSPECTIVE_H_ diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPluginActivator.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPluginActivator.cpp index 78827a84281..1ef2c93bca0 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPluginActivator.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpPluginActivator.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPluginActivator.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPluginActivator.h index fef8ca0bce8..5464fde6f77 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPluginActivator.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLOGPLUGIN_H_ #define BERRYLOGPLUGIN_H_ diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpSearchView.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpSearchView.cpp index 24b7692c1e7..4bba2eff075 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpSearchView.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpSearchView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpSearchView.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpSearchView.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpSearchView.h index 45b1800094d..e9ea0247305 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpSearchView.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpSearchView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPSEARCHVIEW_H_ #define BERRYHELPSEARCHVIEW_H_ diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpTopicChooser.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpTopicChooser.cpp index 218a02ca0d8..b7423771a9f 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpTopicChooser.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpTopicChooser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpTopicChooser.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpTopicChooser.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpTopicChooser.h index edf3674cfa1..9060e0493be 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpTopicChooser.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpTopicChooser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPTOPICCHOOSER_H #define BERRYHELPTOPICCHOOSER_H diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpWebView.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpWebView.cpp index 8e8085887da..95f80daed9e 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpWebView.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpWebView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpWebView.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpWebView.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpWebView.h index b3a1c9e2a88..b7d80297592 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpWebView.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryHelpWebView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPWEBVIEW_H diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineConfiguration.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineConfiguration.cpp index cf4ea9b7c7a..a24637f4a44 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineConfiguration.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineConfiguration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQHelpEngineConfiguration.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineConfiguration.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineConfiguration.h index 73f4d69f985..d08effd7fd4 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineConfiguration.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineConfiguration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQHELPENGINECONFIGURATION_H diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineWrapper.cpp b/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineWrapper.cpp index 5bcd9980636..45ca5566a33 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineWrapper.cpp +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineWrapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQHelpEngineWrapper.h" diff --git a/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineWrapper.h b/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineWrapper.h index e88a56befbd..f97e7d220d1 100644 --- a/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineWrapper.h +++ b/Plugins/org.blueberry.ui.qt.help/src/internal/berryQHelpEngineWrapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQHELPENGINEWRAPPER_H #define BERRYQHELPENGINEWRAPPER_H diff --git a/Plugins/org.blueberry.ui.qt.log/manifest_headers.cmake b/Plugins/org.blueberry.ui.qt.log/manifest_headers.cmake index 2e97a135f40..90cd70804dd 100644 --- a/Plugins/org.blueberry.ui.qt.log/manifest_headers.cmake +++ b/Plugins/org.blueberry.ui.qt.log/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Log Bundle") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt) set(Plugin-ActivationPolicy "eager") diff --git a/Plugins/org.blueberry.ui.qt.log/src/internal/berryLogView.cpp b/Plugins/org.blueberry.ui.qt.log/src/internal/berryLogView.cpp index b2afc1fdbed..61dc2050faa 100644 --- a/Plugins/org.blueberry.ui.qt.log/src/internal/berryLogView.cpp +++ b/Plugins/org.blueberry.ui.qt.log/src/internal/berryLogView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLogView.h" diff --git a/Plugins/org.blueberry.ui.qt.log/src/internal/berryLogView.h b/Plugins/org.blueberry.ui.qt.log/src/internal/berryLogView.h index de326d6f185..374ae2ff04a 100644 --- a/Plugins/org.blueberry.ui.qt.log/src/internal/berryLogView.h +++ b/Plugins/org.blueberry.ui.qt.log/src/internal/berryLogView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLOGVIEW_H_ #define BERRYLOGVIEW_H_ diff --git a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogPlugin.cpp b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogPlugin.cpp index d5b68495eec..7a93b063b50 100644 --- a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogPlugin.cpp +++ b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtLogPlugin.h" #include "berryLogView.h" diff --git a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogPlugin.h b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogPlugin.h index 447a8238ff9..bd7882d8af2 100644 --- a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogPlugin.h +++ b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLOGPLUGIN_H_ #define BERRYLOGPLUGIN_H_ diff --git a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogView.cpp b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogView.cpp index 85d60154420..6b76453f609 100644 --- a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogView.cpp +++ b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtLogView.h" diff --git a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogView.h b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogView.h index d261a9042e1..0313c82e7e3 100644 --- a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogView.h +++ b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtLogView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTLOGVIEW_H #define BERRYQTLOGVIEW_H diff --git a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtPlatformLogModel.cpp b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtPlatformLogModel.cpp index ea8aa056d9e..a4f9ff39227 100644 --- a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtPlatformLogModel.cpp +++ b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtPlatformLogModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtPlatformLogModel.h" #include "berryQtLogPlugin.h" diff --git a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtPlatformLogModel.h b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtPlatformLogModel.h index 6f46220270c..15107a4d31b 100644 --- a/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtPlatformLogModel.h +++ b/Plugins/org.blueberry.ui.qt.log/src/internal/berryQtPlatformLogModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTPLATFORMLOGMODEL_H_ #define BERRYQTPLATFORMLOGMODEL_H_ diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/manifest_headers.cmake b/Plugins/org.blueberry.ui.qt.objectinspector/manifest_headers.cmake index 3ce375a003f..c85e761ac56 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/manifest_headers.cmake +++ b/Plugins/org.blueberry.ui.qt.objectinspector/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Object Inspector") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt) diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectBrowserView.cpp b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectBrowserView.cpp index 29eb9e885a3..ebd619de546 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectBrowserView.cpp +++ b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectBrowserView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectBrowserView.h b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectBrowserView.h index 5cc15da241b..8176cb6b7f4 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectBrowserView.h +++ b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectBrowserView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRY_OBJECTINSPECTORVIEW_H_INCLUDED #define BERRY_OBJECTINSPECTORVIEW_H_INCLUDED diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectItem.cpp b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectItem.cpp index 71951c8cfde..fbc47c03879 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectItem.cpp +++ b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryObjectItem.h" diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectItem.h b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectItem.h index a07f2ef5e7c..9ead5796f4f 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectItem.h +++ b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryObjectItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECTITEM_H_ #define BERRYOBJECTITEM_H_ diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryPluginActivator.cpp b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryPluginActivator.cpp index d8f2ff70da2..ebb6e53c2e1 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryPluginActivator.cpp +++ b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPluginActivator.h" #include "berryObjectBrowserView.h" diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryPluginActivator.h b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryPluginActivator.h index 5abb4cb246d..5361ef69300 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryPluginActivator.h +++ b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOBJECTINSPECTORACTIVATOR_H diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryQtObjectTableModel.cpp b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryQtObjectTableModel.cpp index e764c84bd4b..0e7377f67d1 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryQtObjectTableModel.cpp +++ b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryQtObjectTableModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtObjectTableModel.h" diff --git a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryQtObjectTableModel.h b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryQtObjectTableModel.h index 1caf05e0aa8..42167f9f529 100644 --- a/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryQtObjectTableModel.h +++ b/Plugins/org.blueberry.ui.qt.objectinspector/src/internal/berryQtObjectTableModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTOBJECTTABLEMODEL_H_ #define BERRYQTOBJECTTABLEMODEL_H_ diff --git a/Plugins/org.blueberry.ui.qt/manifest_headers.cmake b/Plugins/org.blueberry.ui.qt/manifest_headers.cmake index de44e117cab..38cfc395343 100644 --- a/Plugins/org.blueberry.ui.qt/manifest_headers.cmake +++ b/Plugins/org.blueberry.ui.qt/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Qt User Interface Plugin") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.core.commands org.blueberry.core.expressions) diff --git a/Plugins/org.blueberry.ui.qt/resources/darkstyle.qss b/Plugins/org.blueberry.ui.qt/resources/darkstyle.qss index cf73248bfa4..3f436c08cc0 100644 --- a/Plugins/org.blueberry.ui.qt/resources/darkstyle.qss +++ b/Plugins/org.blueberry.ui.qt/resources/darkstyle.qss @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /* iconColor = #c7c7c7 <- This line is parsed by MITK diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryAbstractContributionFactory.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryAbstractContributionFactory.cpp index cd7a9702326..f5ad88b2fff 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryAbstractContributionFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryAbstractContributionFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractContributionFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryAbstractContributionFactory.h b/Plugins/org.blueberry.ui.qt/src/actions/berryAbstractContributionFactory.h index d584f447674..d58a9f1c8ad 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryAbstractContributionFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryAbstractContributionFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTCONTRIBUTIONFACTORY_H_ #define BERRYABSTRACTCONTRIBUTIONFACTORY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.cpp index d51b5aec7ab..2b1d6a2d19d 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandContributionItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.h b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.h index 2a565fb0d97..6680aed8495 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDCONTRIBUTIONITEM_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItemParameter.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItemParameter.cpp index 5935e92d902..800929afc83 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItemParameter.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItemParameter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandContributionItemParameter.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItemParameter.h b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItemParameter.h index ba8bd402b28..0a8c67d7d53 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItemParameter.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryCommandContributionItemParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDCONTRIBUTIONITEMPARAMETER_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItem.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItem.cpp index c085fc49b28..1af26fda4ca 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryContributionItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItem.h b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItem.h index 9f77784ad5e..421f4896b23 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItem.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONTRIBUTIONITEM_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItemFactory.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItemFactory.cpp index 5bcfe3692e8..0d4289f86eb 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItemFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItemFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryContributionItemFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItemFactory.h b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItemFactory.h index 656bcc835d1..ade6420acf2 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItemFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionItemFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONTRIBUTIONITEMFACTORY_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionManager.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionManager.cpp index 71bb84e2dbb..902ca91f041 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionManager.h b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionManager.h index 49d0622ad6f..c495bba385e 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryContributionManager.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryContributionManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONTRIBUTIONMANAGER_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryGroupMarker.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryGroupMarker.cpp index 1260f223ced..c37fe007282 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryGroupMarker.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryGroupMarker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryGroupMarker.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryGroupMarker.h b/Plugins/org.blueberry.ui.qt/src/actions/berryGroupMarker.h index 9cf1ddbcda8..c049d2f490a 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryGroupMarker.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryGroupMarker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYGROUPMARKER_H #define BERRYGROUPMARKER_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionItem.h b/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionItem.h index 61d70fbebdc..f7f7e02a5cb 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionItem.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICONTRIBUTIONITEM_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManager.h b/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManager.h index 5761fa82d17..fbea94006c2 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManager.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICONTRIBUTIONMANAGER_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManagerOverrides.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManagerOverrides.cpp index 483c40065fa..e7ee664cb0d 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManagerOverrides.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManagerOverrides.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIContributionManagerOverrides.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManagerOverrides.h b/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManagerOverrides.h index 17977b1c06a..5466a5197dc 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManagerOverrides.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryIContributionManagerOverrides.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICONTRIBUTIONMANAGEROVERRIDES_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryIMenuManager.h b/Plugins/org.blueberry.ui.qt/src/actions/berryIMenuManager.h index f852bc8193c..daa43bf5d70 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryIMenuManager.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryIMenuManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIMENUMANAGER_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryMenuManager.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryMenuManager.cpp index e1812086296..c3bc4495629 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryMenuManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryMenuManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMenuManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryMenuManager.h b/Plugins/org.blueberry.ui.qt/src/actions/berryMenuManager.h index b06946c361a..78f9c75a0fd 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryMenuManager.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryMenuManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMENUMANAGER_H_ #define BERRYMENUMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryQActionContributionItem.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryQActionContributionItem.cpp index 9c6a3a51042..d81c53dfd44 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryQActionContributionItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryQActionContributionItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQActionContributionItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryQActionContributionItem.h b/Plugins/org.blueberry.ui.qt/src/actions/berryQActionContributionItem.h index f1c3dd5e7dd..1e05e2ca348 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryQActionContributionItem.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryQActionContributionItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQACTIONCONTRIBUTIONITEM_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryQActionProperties.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berryQActionProperties.cpp index e0089916360..9b0e7bb5215 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryQActionProperties.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryQActionProperties.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQActionProperties.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berryQActionProperties.h b/Plugins/org.blueberry.ui.qt/src/actions/berryQActionProperties.h index 11356759db5..e630b5a5381 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berryQActionProperties.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berryQActionProperties.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQACTIONPROPERTIES_H #define BERRYQACTIONPROPERTIES_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berrySeparator.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berrySeparator.cpp index 714d396095d..c9ccebc8b8b 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berrySeparator.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berrySeparator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySeparator.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berrySeparator.h b/Plugins/org.blueberry.ui.qt/src/actions/berrySeparator.h index 976bd90f747..bb1897858ea 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berrySeparator.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berrySeparator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSEPARATOR_H diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berrySubContributionItem.cpp b/Plugins/org.blueberry.ui.qt/src/actions/berrySubContributionItem.cpp index 72305324045..dc0ef763905 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berrySubContributionItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/actions/berrySubContributionItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySubContributionItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/actions/berrySubContributionItem.h b/Plugins/org.blueberry.ui.qt/src/actions/berrySubContributionItem.h index 50e981c25c8..8c5ea576288 100644 --- a/Plugins/org.blueberry.ui.qt/src/actions/berrySubContributionItem.h +++ b/Plugins/org.blueberry.ui.qt/src/actions/berrySubContributionItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSUBCONTRIBUTIONITEM_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryActionBarAdvisor.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryActionBarAdvisor.cpp index 079f02aa2fc..bca5901f8a7 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryActionBarAdvisor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryActionBarAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryActionBarAdvisor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryActionBarAdvisor.h b/Plugins/org.blueberry.ui.qt/src/application/berryActionBarAdvisor.h index a91c7dc7d18..a880e4ad3ba 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryActionBarAdvisor.h +++ b/Plugins/org.blueberry.ui.qt/src/application/berryActionBarAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYACTIONBARADVISOR_H_ #define BERRYACTIONBARADVISOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryIActionBarConfigurer.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryIActionBarConfigurer.cpp index af5cd76dff5..436fd5731a6 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryIActionBarConfigurer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryIActionBarConfigurer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIActionBarConfigurer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryIActionBarConfigurer.h b/Plugins/org.blueberry.ui.qt/src/application/berryIActionBarConfigurer.h index f509e712574..24361f11a13 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryIActionBarConfigurer.h +++ b/Plugins/org.blueberry.ui.qt/src/application/berryIActionBarConfigurer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIACTIONBARCONFIGURER_H_ #define BERRYIACTIONBARCONFIGURER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchConfigurer.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchConfigurer.cpp index 0143045f887..2f754622364 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchConfigurer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchConfigurer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchConfigurer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchConfigurer.h b/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchConfigurer.h index 196f44ea0a5..8cbf29827d7 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchConfigurer.h +++ b/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchConfigurer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHCONFIGURER_H_ #define BERRYIWORKBENCHCONFIGURER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchWindowConfigurer.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchWindowConfigurer.cpp index fad366a7b20..8cb7e47921f 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchWindowConfigurer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchWindowConfigurer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchWindowConfigurer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchWindowConfigurer.h b/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchWindowConfigurer.h index d58521b8cbc..0c57b330f1b 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchWindowConfigurer.h +++ b/Plugins/org.blueberry.ui.qt/src/application/berryIWorkbenchWindowConfigurer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHWINDOWCONFIGURER_H_ #define BERRYIWORKBENCHWINDOWCONFIGURER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.cpp index 738dfba4f88..ced8de18662 100755 --- a/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtWorkbenchAdvisor.h" #include "internal/berryQtGlobalEventFilter.h" diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.h b/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.h index a72194cc448..8da6660aa3c 100755 --- a/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.h +++ b/Plugins/org.blueberry.ui.qt/src/application/berryQtWorkbenchAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTWORKBENCHADVISOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchAdvisor.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchAdvisor.cpp index 5f842593707..79ff49a7a7f 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchAdvisor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchAdvisor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchAdvisor.h b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchAdvisor.h index b11c68ab0eb..b4de588c19e 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchAdvisor.h +++ b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHADVISOR_H_ #define BERRYWORKBENCHADVISOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.cpp b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.cpp index cc227f8fea4..fdd32b59381 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchWindowAdvisor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.h b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.h index f72037ee782..18f15f4ddba 100644 --- a/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.h +++ b/Plugins/org.blueberry.ui.qt/src/application/berryWorkbenchWindowAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHWINDOWADVISOR_H_ #define BERRYWORKBENCHWINDOWADVISOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryAbstractSourceProvider.cpp b/Plugins/org.blueberry.ui.qt/src/berryAbstractSourceProvider.cpp index f5ceba73bba..a9e30b725b8 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryAbstractSourceProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryAbstractSourceProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.blueberry.ui.qt/src/berryAbstractSourceProvider.h b/Plugins/org.blueberry.ui.qt/src/berryAbstractSourceProvider.h index 30b48d78afb..f9fc232575e 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryAbstractSourceProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/berryAbstractSourceProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTSOURCEPROVIDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.cpp b/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.cpp index 275586c7d54..c9723dd2e11 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractUICTKPlugin.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.h b/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.h index 3e07ba31001..e619d2af765 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.h +++ b/Plugins/org.blueberry.ui.qt/src/berryAbstractUICTKPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTUICTKPLUGIN_H_ #define BERRYABSTRACTUICTKPLUGIN_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryAsyncRunnable.h b/Plugins/org.blueberry.ui.qt/src/berryAsyncRunnable.h index 6331f999c96..7cfb0cb41a3 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryAsyncRunnable.h +++ b/Plugins/org.blueberry.ui.qt/src/berryAsyncRunnable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYASYNCRUNNABLE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryConstants.cpp b/Plugins/org.blueberry.ui.qt/src/berryConstants.cpp index d5c1e172d58..75810bc41e9 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryConstants.h b/Plugins/org.blueberry.ui.qt/src/berryConstants.h index 1763fa8af94..1a3cad8362e 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/berryConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONSTANTS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryDisplay.cpp b/Plugins/org.blueberry.ui.qt/src/berryDisplay.cpp index c91b4b5c280..6e275bfdeb0 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryDisplay.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryDisplay.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDisplay.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryDisplay.h b/Plugins/org.blueberry.ui.qt/src/berryDisplay.h index 96dfa7668a3..8853d2d4f14 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryDisplay.h +++ b/Plugins/org.blueberry.ui.qt/src/berryDisplay.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDISPLAY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryEditorPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryEditorPart.cpp index bdc9c04a00d..a3148151f18 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryEditorPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryEditorPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryEditorPart.h b/Plugins/org.blueberry.ui.qt/src/berryEditorPart.h index 841272d1505..282b03c264e 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryEditorPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryEditorPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORPART_H_ #define BERRYEDITORPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryExtensionFactory.cpp b/Plugins/org.blueberry.ui.qt/src/berryExtensionFactory.cpp index d40588ad82a..30dd5feeb0b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryExtensionFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryExtensionFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExtensionFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryExtensionFactory.h b/Plugins/org.blueberry.ui.qt/src/berryExtensionFactory.h index 1b82dff46d4..49cecb28ca8 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryExtensionFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/berryExtensionFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXTENSIONFACTORY_H #define BERRYEXTENSIONFACTORY_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryFileEditorInput.cpp b/Plugins/org.blueberry.ui.qt/src/berryFileEditorInput.cpp index 13ed6c51471..39b5a55b524 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryFileEditorInput.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryFileEditorInput.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryFileEditorInput.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryFileEditorInput.h b/Plugins/org.blueberry.ui.qt/src/berryFileEditorInput.h index b228c74be47..7b75d4eebc2 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryFileEditorInput.h +++ b/Plugins/org.blueberry.ui.qt/src/berryFileEditorInput.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYFILEEDITORINPUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryGeometry.cpp b/Plugins/org.blueberry.ui.qt/src/berryGeometry.cpp index 6df724aa9e8..00036168b47 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryGeometry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryGeometry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryGeometry.h" #include "berryConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryGeometry.h b/Plugins/org.blueberry.ui.qt/src/berryGeometry.h index 41572807fd1..7be28d65d23 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryGeometry.h +++ b/Plugins/org.blueberry.ui.qt/src/berryGeometry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYGEOMETRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIActionBars.h b/Plugins/org.blueberry.ui.qt/src/berryIActionBars.h index 9547f5586be..e359ad9f304 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIActionBars.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIActionBars.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIACTIONBARS_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIContextService.cpp b/Plugins/org.blueberry.ui.qt/src/berryIContextService.cpp index 25fc8369ca0..25a1c719b30 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIContextService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIContextService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIContextService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIContextService.h b/Plugins/org.blueberry.ui.qt/src/berryIContextService.h index 82462713cec..eefd65c0182 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIContextService.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIContextService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICONTEXTSERVICE_H #define BERRYICONTEXTSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIContributionRoot.h b/Plugins/org.blueberry.ui.qt/src/berryIContributionRoot.h index ff158968225..917c335258f 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIContributionRoot.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIContributionRoot.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICONTRIBUTIONROOT_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIDropTargetListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryIDropTargetListener.cpp index cf7d1ca24e8..df0e7364fba 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIDropTargetListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIDropTargetListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIDropTargetListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIDropTargetListener.h b/Plugins/org.blueberry.ui.qt/src/berryIDropTargetListener.h index 911ff7bc83a..1c73efb670a 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIDropTargetListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIDropTargetListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIDROPTARGETLISTENER_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/berryIEditorDescriptor.cpp index 7f0ebd96e2c..207a685aae0 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEditorDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorDescriptor.h b/Plugins/org.blueberry.ui.qt/src/berryIEditorDescriptor.h index 8eddc0ac07b..f67e7ea0e3b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEDITORDESCRIPTOR_H_ #define BERRYIEDITORDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorInput.cpp b/Plugins/org.blueberry.ui.qt/src/berryIEditorInput.cpp index 3f3da8c4f09..5ce29a6b126 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorInput.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorInput.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEditorInput.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorInput.h b/Plugins/org.blueberry.ui.qt/src/berryIEditorInput.h index 181a279a504..605dd4e82a0 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorInput.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorInput.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEDITORINPUT_H_ #define BERRYIEDITORINPUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorMatchingStrategy.cpp b/Plugins/org.blueberry.ui.qt/src/berryIEditorMatchingStrategy.cpp index 5852a740517..8499066337c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorMatchingStrategy.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorMatchingStrategy.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEditorMatchingStrategy.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorMatchingStrategy.h b/Plugins/org.blueberry.ui.qt/src/berryIEditorMatchingStrategy.h index 172c506be59..c65b89b699d 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorMatchingStrategy.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorMatchingStrategy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEDITORMATCHINGSTRATEGY_H_ #define BERRYIEDITORMATCHINGSTRATEGY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryIEditorPart.cpp index c24e847bc4a..8f5049e39a4 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEditorPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorPart.h b/Plugins/org.blueberry.ui.qt/src/berryIEditorPart.h index b72175ce977..27646bf5607 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEDITORPART_H_ #define BERRYIEDITORPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorReference.cpp b/Plugins/org.blueberry.ui.qt/src/berryIEditorReference.cpp index 94a88b6ce35..4439e174db9 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorReference.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEditorReference.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorReference.h b/Plugins/org.blueberry.ui.qt/src/berryIEditorReference.h index 0c247024565..4b9481f7de8 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorReference.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEDITORREFERENCE_H_ #define BERRYIEDITORREFERENCE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/berryIEditorRegistry.cpp index 139040e075f..f3409901433 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEditorRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorRegistry.h b/Plugins/org.blueberry.ui.qt/src/berryIEditorRegistry.h index 269ee5e779f..76497a0b74e 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIEDITORREGISTRY_H_ #define MITKIEDITORREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorSite.cpp b/Plugins/org.blueberry.ui.qt/src/berryIEditorSite.cpp index 27cbe513057..f585cf1c14b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEditorSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIEditorSite.h b/Plugins/org.blueberry.ui.qt/src/berryIEditorSite.h index 7172d865e71..b91b3b2f2e6 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIEditorSite.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIEditorSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEDITORSITE_H_ #define BERRYIEDITORSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIElementFactory.cpp b/Plugins/org.blueberry.ui.qt/src/berryIElementFactory.cpp index 71e8446c214..799e2871a13 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIElementFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIElementFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIElementFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIElementFactory.h b/Plugins/org.blueberry.ui.qt/src/berryIElementFactory.h index 8e22b87dd9d..e71211cf2ba 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIElementFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIElementFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIELEMENTFACTORY_H #define BERRYIELEMENTFACTORY_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIFileEditorMapping.cpp b/Plugins/org.blueberry.ui.qt/src/berryIFileEditorMapping.cpp index b23effe7130..5b152daaa6b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIFileEditorMapping.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIFileEditorMapping.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIFileEditorMapping.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIFileEditorMapping.h b/Plugins/org.blueberry.ui.qt/src/berryIFileEditorMapping.h index 346d298bbfb..aa19f56187f 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIFileEditorMapping.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIFileEditorMapping.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIFILEEDITORMAPPING_H_ #define BERRYIFILEEDITORMAPPING_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIFolderLayout.cpp b/Plugins/org.blueberry.ui.qt/src/berryIFolderLayout.cpp index 9dbd57bedeb..07580381268 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIFolderLayout.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIFolderLayout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIFolderLayout.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIFolderLayout.h b/Plugins/org.blueberry.ui.qt/src/berryIFolderLayout.h index 2cbd636e1b9..0814d44c491 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIFolderLayout.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIFolderLayout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIFOLDERLAYOUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIMemento.cpp b/Plugins/org.blueberry.ui.qt/src/berryIMemento.cpp index 9cd1fa56188..8fee5a1a295 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIMemento.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIMemento.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIMemento.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIMemento.h b/Plugins/org.blueberry.ui.qt/src/berryIMemento.h index bc73a83fdd2..67eb6e6f0ba 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIMemento.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIMemento.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIMEMENTO_H_ #define BERRYIMEMENTO_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryINullSelectionListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryINullSelectionListener.cpp index b7bb573411e..15b41f2d723 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryINullSelectionListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryINullSelectionListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryINullSelectionListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryINullSelectionListener.h b/Plugins/org.blueberry.ui.qt/src/berryINullSelectionListener.h index aa21be8755f..edc7400c410 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryINullSelectionListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryINullSelectionListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYInullptrSELECTIONLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPageLayout.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPageLayout.cpp index 1ca02d05e8d..ac9395d4ea5 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPageLayout.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPageLayout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPageLayout.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPageLayout.h b/Plugins/org.blueberry.ui.qt/src/berryIPageLayout.h index c8b247e5910..2802ca99367 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPageLayout.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPageLayout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPAGELAYOUT_H_ #define BERRYIPAGELAYOUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPageService.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPageService.cpp index d511c2c4347..b4d897d54ed 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPageService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPageService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPageService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPageService.h b/Plugins/org.blueberry.ui.qt/src/berryIPageService.h index e0dc1c7fcad..468eff4f63f 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPageService.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPageService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPAGESERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPartListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPartListener.cpp index 3993d00aeba..4c8c58d5f32 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPartListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPartListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPartListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPartListener.h b/Plugins/org.blueberry.ui.qt/src/berryIPartListener.h index 0cce3bc3e16..1ac1f865f64 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPartListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPartListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPARTLISTENER_H_ #define BERRYIPARTLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPartService.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPartService.cpp index a292a1807da..df7a245e470 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPartService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPartService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPartService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPartService.h b/Plugins/org.blueberry.ui.qt/src/berryIPartService.h index 22477ac5df2..c44d38e5089 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPartService.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPartService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPARTSERVICE_H_ #define BERRYIPARTSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPathEditorInput.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPathEditorInput.cpp index 02692e5696d..37b8c9a2464 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPathEditorInput.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPathEditorInput.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPathEditorInput.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPathEditorInput.h b/Plugins/org.blueberry.ui.qt/src/berryIPathEditorInput.h index 444beae1bd8..d85518d2373 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPathEditorInput.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPathEditorInput.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPATHEDITORINPUT_H_ #define BERRYIPATHEDITORINPUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPersistable.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPersistable.cpp index 1a5070904c7..bdd4d1207c6 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPersistable.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPersistable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPersistable.h b/Plugins/org.blueberry.ui.qt/src/berryIPersistable.h index 7e9bd632462..32fc3a61b98 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPersistable.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPersistable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPERSISTABLE_H #define BERRYIPERSISTABLE_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPersistableEditor.h b/Plugins/org.blueberry.ui.qt/src/berryIPersistableEditor.h index 3ffa48f36f0..9402964eb33 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPersistableEditor.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPersistableEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPERSISTABLEEDITOR_H #define BERRYIPERSISTABLEEDITOR_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPersistableElement.h b/Plugins/org.blueberry.ui.qt/src/berryIPersistableElement.h index 84574013c36..35989b56ab9 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPersistableElement.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPersistableElement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPERSISTABLEELEMENT_H #define BERRYIPERSISTABLEELEMENT_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveDescriptor.cpp index 5ec54ac7d73..9e2bd14ea99 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPerspectiveDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveDescriptor.h b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveDescriptor.h index eb8304ec7d3..1d95d23187b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPERSPECTIVEDESCRIPTOR_H_ #define BERRYIPERSPECTIVEDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveFactory.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveFactory.cpp index 6c3c0cdbdce..b37282584bc 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPerspectiveFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveFactory.h b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveFactory.h index 8da0a0e70a4..d09210cf685 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPERSPECTIVEFACTORY_H_ #define BERRYIPERSPECTIVEFACTORY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveListener.cpp index 52b40ec33d2..27c69688831 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPerspectiveListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveListener.h b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveListener.h index cd4e79f3002..88e47bbca57 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPERSPECTIVELISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveRegistry.cpp index 5f48d52ed69..62e8551e47e 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPerspectiveRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveRegistry.h b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveRegistry.h index 7dbab3380c2..6af8b038f79 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPerspectiveRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPERSPECTIVEREGISTRY_H_ #define BERRYIPERSPECTIVEREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPlaceholderFolderLayout.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPlaceholderFolderLayout.cpp index 8044725c53b..7f19ef162fe 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPlaceholderFolderLayout.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPlaceholderFolderLayout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPlaceholderFolderLayout.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPlaceholderFolderLayout.h b/Plugins/org.blueberry.ui.qt/src/berryIPlaceholderFolderLayout.h index edeed6dd999..f25d16d1264 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPlaceholderFolderLayout.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPlaceholderFolderLayout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPLACEHOLDERFOLDERLAYOUT_H_ #define BERRYIPLACEHOLDERFOLDERLAYOUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPluginContribution.h b/Plugins/org.blueberry.ui.qt/src/berryIPluginContribution.h index b5469a8f655..4cea813d630 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPluginContribution.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPluginContribution.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPLUGINCONTRIBUTION_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPostSelectionProvider.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPostSelectionProvider.cpp index abab0c4857a..d84a9309aec 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPostSelectionProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPostSelectionProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPostSelectionProvider.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPostSelectionProvider.h b/Plugins/org.blueberry.ui.qt/src/berryIPostSelectionProvider.h index 5d476b293d5..2430b6ec0d0 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPostSelectionProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPostSelectionProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPOSTSELECTIONPROVIDER_H_ #define BERRYIPOSTSELECTIONPROVIDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPreferencePage.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPreferencePage.cpp index 8bd08ba5f51..56903c11034 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPreferencePage.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPreferencePage.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPreferencePage.h b/Plugins/org.blueberry.ui.qt/src/berryIPreferencePage.h index cf25b283ab2..d611f2e886b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPreferencePage.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPREFERENCEPAGE_H_ #define BERRYIPREFERENCEPAGE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPropertyChangeListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryIPropertyChangeListener.cpp index 48cf5db5e50..5fd817d64a4 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPropertyChangeListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIPropertyChangeListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPropertyChangeListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIPropertyChangeListener.h b/Plugins/org.blueberry.ui.qt/src/berryIPropertyChangeListener.h index 9b8ce039446..0aa19a8c058 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIPropertyChangeListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIPropertyChangeListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPROPERTYCHANGELISTENER_H_ #define BERRYIPROPERTYCHANGELISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIQtPreferencePage.cpp b/Plugins/org.blueberry.ui.qt/src/berryIQtPreferencePage.cpp index 56fee750971..c3bc2b6b64d 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIQtPreferencePage.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIQtPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIQtPreferencePage.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIQtPreferencePage.h b/Plugins/org.blueberry.ui.qt/src/berryIQtPreferencePage.h index 756f0a6d6d5..56a5c95e1e1 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIQtPreferencePage.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIQtPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIQTPREFERENCEPAGE_H_ #define BERRYIQTPREFERENCEPAGE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.cpp b/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.cpp index 9f61d04ab13..2981c5b936c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIQtStyleManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.h b/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.h index 68c47bfa664..5875b939712 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIQtStyleManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIQTSTYLEMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIReusableEditor.cpp b/Plugins/org.blueberry.ui.qt/src/berryIReusableEditor.cpp index f7b1584fb63..7e3dcae1c99 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIReusableEditor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIReusableEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIReusableEditor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIReusableEditor.h b/Plugins/org.blueberry.ui.qt/src/berryIReusableEditor.h index 9f6af3f53ac..1ecde0b79db 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIReusableEditor.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIReusableEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIREUSABLEEDITOR_H_ #define BERRYIREUSABLEEDITOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISaveablePart.cpp b/Plugins/org.blueberry.ui.qt/src/berryISaveablePart.cpp index afc82d389a0..a5dc836104c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISaveablePart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISaveablePart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISaveablePart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISaveablePart.h b/Plugins/org.blueberry.ui.qt/src/berryISaveablePart.h index b0304f879ef..8c992e5defd 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISaveablePart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISaveablePart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISAVEABLEPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISaveablesLifecycleListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryISaveablesLifecycleListener.cpp index 6b36e2e80b0..b96f54fc96f 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISaveablesLifecycleListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISaveablesLifecycleListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISaveablesLifecycleListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISaveablesLifecycleListener.h b/Plugins/org.blueberry.ui.qt/src/berryISaveablesLifecycleListener.h index 45a30126c89..9759ddcce1f 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISaveablesLifecycleListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISaveablesLifecycleListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISAVEABLESLIFECYCLELISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISaveablesSource.cpp b/Plugins/org.blueberry.ui.qt/src/berryISaveablesSource.cpp index 4c1f5439b02..9610913b034 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISaveablesSource.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISaveablesSource.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISaveablesSource.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISaveablesSource.h b/Plugins/org.blueberry.ui.qt/src/berryISaveablesSource.h index 3c955e336ac..64b020a682c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISaveablesSource.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISaveablesSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISAVEABLESSOURCE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelection.cpp b/Plugins/org.blueberry.ui.qt/src/berryISelection.cpp index 47a6cbf1d00..146530db250 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelection.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISelection.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelection.h b/Plugins/org.blueberry.ui.qt/src/berryISelection.h index e2b2036c4f9..1541c5af8df 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelection.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISELECTION_H_ #define BERRYISELECTION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelectionChangedListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryISelectionChangedListener.cpp index 9ac20697e0d..3547c3c179f 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelectionChangedListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISelectionChangedListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISelectionChangedListener.h" #include "berryISelectionProvider.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelectionChangedListener.h b/Plugins/org.blueberry.ui.qt/src/berryISelectionChangedListener.h index a0c6f3b01b9..4265a1d6765 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelectionChangedListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISelectionChangedListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISELECTIONCHANGEDLISTENER_H_ #define BERRYISELECTIONCHANGEDLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelectionListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryISelectionListener.cpp index 061ff03b283..82220b37d87 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelectionListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISelectionListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISelectionListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelectionListener.h b/Plugins/org.blueberry.ui.qt/src/berryISelectionListener.h index d11ccbe0913..37ae4c7c7cd 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelectionListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISelectionListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISELECTIONLISTENER_H_ #define BERRYISELECTIONLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelectionProvider.cpp b/Plugins/org.blueberry.ui.qt/src/berryISelectionProvider.cpp index 7877259a177..1ee4fdf0ae3 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelectionProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISelectionProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISelectionProvider.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelectionProvider.h b/Plugins/org.blueberry.ui.qt/src/berryISelectionProvider.h index 8710efa9233..69556ba2c7a 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelectionProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISelectionProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISELECTIONPROVIDER_H_ #define BERRYISELECTIONPROVIDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelectionService.cpp b/Plugins/org.blueberry.ui.qt/src/berryISelectionService.cpp index 61d8878a2f9..50da5bb293d 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelectionService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISelectionService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISelectionService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISelectionService.h b/Plugins/org.blueberry.ui.qt/src/berryISelectionService.h index 60579b7b461..6c9bde44757 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISelectionService.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISelectionService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISELECTIONSERVICE_H_ #define BERRYISELECTIONSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIShellListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryIShellListener.cpp index 5eac2fea6c3..55a6d789970 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIShellListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIShellListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIShellListener.h" #include "berryShell.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIShellListener.h b/Plugins/org.blueberry.ui.qt/src/berryIShellListener.h index ad0014748aa..cd8bab9e591 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIShellListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIShellListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISHELLLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIShellProvider.cpp b/Plugins/org.blueberry.ui.qt/src/berryIShellProvider.cpp index 3e35528eea9..f454b253a09 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIShellProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIShellProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIShellProvider.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIShellProvider.h b/Plugins/org.blueberry.ui.qt/src/berryIShellProvider.h index cdc293a46a5..422a49c4086 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIShellProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIShellProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISHELLPROVIDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIShowInSource.h b/Plugins/org.blueberry.ui.qt/src/berryIShowInSource.h index ef72858133d..8721ba6e403 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIShowInSource.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIShowInSource.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISHOWINSOURCE_H #define BERRYISHOWINSOURCE_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIShowInTarget.h b/Plugins/org.blueberry.ui.qt/src/berryIShowInTarget.h index c791a5f03ee..12c8455484b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIShowInTarget.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIShowInTarget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISHOWINTARGET_H #define BERRYISHOWINTARGET_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryISizeProvider.cpp b/Plugins/org.blueberry.ui.qt/src/berryISizeProvider.cpp index 587eabaa0c8..a20a28617d5 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISizeProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISizeProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISizeProvider.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISizeProvider.h b/Plugins/org.blueberry.ui.qt/src/berryISizeProvider.h index 476165c4a2d..561dde77896 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISizeProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISizeProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISIZEPROVIDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISourceProvider.cpp b/Plugins/org.blueberry.ui.qt/src/berryISourceProvider.cpp index be420978ec2..bc598f790b8 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISourceProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISourceProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISourceProvider.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISourceProvider.h b/Plugins/org.blueberry.ui.qt/src/berryISourceProvider.h index e35fd6ce5b5..cd6c5f9f0b3 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISourceProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISourceProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISOURCEPROVIDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISourceProviderListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryISourceProviderListener.cpp index 9bf6290c285..f6d2b88afa6 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISourceProviderListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISourceProviderListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISourceProviderListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISourceProviderListener.h b/Plugins/org.blueberry.ui.qt/src/berryISourceProviderListener.h index ca6fffbc3aa..d193fcb7711 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISourceProviderListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISourceProviderListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISOURCEPROVIDERLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryISources.cpp b/Plugins/org.blueberry.ui.qt/src/berryISources.cpp index 762a7d53806..3bc94886e19 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISources.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryISources.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISources.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryISources.h b/Plugins/org.blueberry.ui.qt/src/berryISources.h index dbfc13f96e3..aa6c055a7fb 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryISources.h +++ b/Plugins/org.blueberry.ui.qt/src/berryISources.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISOURCES_H_ #define BERRYISOURCES_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIStickyViewDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/berryIStickyViewDescriptor.cpp index 1f1d99ded74..0ce5707bd20 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIStickyViewDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIStickyViewDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIStickyViewDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIStickyViewDescriptor.h b/Plugins/org.blueberry.ui.qt/src/berryIStickyViewDescriptor.h index 782fec4c85d..143adb01b83 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIStickyViewDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIStickyViewDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISTICKYVIEWDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIStructuredSelection.cpp b/Plugins/org.blueberry.ui.qt/src/berryIStructuredSelection.cpp index 2982ea6d960..e6183e407ae 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIStructuredSelection.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIStructuredSelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIStructuredSelection.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIStructuredSelection.h b/Plugins/org.blueberry.ui.qt/src/berryIStructuredSelection.h index ccd9c635bab..133c34d7dc1 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIStructuredSelection.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIStructuredSelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISTRUCTUREDSELECTION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewCategory.cpp b/Plugins/org.blueberry.ui.qt/src/berryIViewCategory.cpp index 650cc62ce68..eabad1fcbe0 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewCategory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewCategory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIViewCategory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewCategory.h b/Plugins/org.blueberry.ui.qt/src/berryIViewCategory.h index fcf362260ab..3d590ebb03c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewCategory.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewCategory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVIEWCATEGORY_H_ #define BERRYIVIEWCATEGORY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/berryIViewDescriptor.cpp index 54960717fb6..518f908847b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIViewDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewDescriptor.h b/Plugins/org.blueberry.ui.qt/src/berryIViewDescriptor.h index e56693568c6..fbba6562ace 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVIEWDESCRIPTOR_H_ #define BERRYIVIEWDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewLayout.cpp b/Plugins/org.blueberry.ui.qt/src/berryIViewLayout.cpp index 1665ca93de4..606390f2c8d 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewLayout.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewLayout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIViewLayout.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewLayout.h b/Plugins/org.blueberry.ui.qt/src/berryIViewLayout.h index b003d3c839a..5c3174b89ef 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewLayout.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewLayout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVIEWLAYOUT_H_ #define BERRYIVIEWLAYOUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryIViewPart.cpp index 8fe74ae5ff9..978f4b93c8b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIViewPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewPart.h b/Plugins/org.blueberry.ui.qt/src/berryIViewPart.h index 1b9d8af2d44..b437d889746 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVIEWPART_H_ #define BERRYIVIEWPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewReference.cpp b/Plugins/org.blueberry.ui.qt/src/berryIViewReference.cpp index fea827bd052..996455b8d64 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewReference.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIViewReference.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewReference.h b/Plugins/org.blueberry.ui.qt/src/berryIViewReference.h index e94face2f78..88447b2fe84 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewReference.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVIEWREFERENCE_H_ #define BERRYIVIEWREFERENCE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/berryIViewRegistry.cpp index 4c6ef6b6cb0..9e1e9d4e622 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIViewRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewRegistry.h b/Plugins/org.blueberry.ui.qt/src/berryIViewRegistry.h index 6721bda77d3..bddcaaed38d 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVIEWREGISTRY_H_ #define BERRYIVIEWREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewSite.cpp b/Plugins/org.blueberry.ui.qt/src/berryIViewSite.cpp index 1bafe0f972b..efad012f57c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIViewSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIViewSite.h b/Plugins/org.blueberry.ui.qt/src/berryIViewSite.h index 8cc3fb3664f..54b83757fcc 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIViewSite.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIViewSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIVIEWSITE_H_ #define BERRYIVIEWSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWindowListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWindowListener.cpp index 74b707c2a06..afa5a7ae38c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWindowListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWindowListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWindowListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWindowListener.h b/Plugins/org.blueberry.ui.qt/src/berryIWindowListener.h index cc94cb605b8..6de47bc5de1 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWindowListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWindowListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWINDOWLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbench.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbench.cpp index 737af0f5ee7..84c8f59c4c9 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbench.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbench.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbench.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbench.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbench.h index 9016e403ce7..a9c7752d6b4 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbench.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbench.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCH_H_ #define BERRYIWORKBENCH_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchCommandConstants.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchCommandConstants.cpp index a36411decae..806b91636fd 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchCommandConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchCommandConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchCommandConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchCommandConstants.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchCommandConstants.h index 9abbdfc443d..299f22a3276 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchCommandConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchCommandConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHCOMMANDCONSTANTS_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchListener.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchListener.cpp index 6e02630e376..c606a4ca2f4 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchListener.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchListener.h index 3a5951b9e52..38e53d6db1d 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchListener.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPage.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPage.cpp index 40d5767af53..2418b031536 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPage.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchPage.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPage.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPage.h index 20b35bb38e4..492cec14ec3 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPage.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHPAGE_H_ #define BERRYIWORKBENCHPAGE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPart.cpp index 1c471e8e3f2..550edda7c97 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPart.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPart.h index f9ef3f68a9d..135a1103310 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IWORKBENCHPART_H_ #define IWORKBENCHPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartConstants.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartConstants.cpp index 1e347d07521..e1591ad8809 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchPartConstants.h" #include diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartConstants.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartConstants.h index 0eac1526139..b868930a528 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHPARTCONSTANTS_H_ #define BERRYIWORKBENCHPARTCONSTANTS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartDescriptor.cpp index 9334dc65149..0dcc2754523 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchPartDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartDescriptor.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartDescriptor.h index 27192b29a7e..02db2c3c4e2 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHPARTDESCRIPTOR_H_ #define BERRYIWORKBENCHPARTDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartReference.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartReference.cpp index 4b089064cfb..ec4b5227203 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartReference.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchPartReference.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartReference.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartReference.h index 5f8dea71816..3b5ff65a540 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartReference.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHPARTREFERENCE_H_ #define BERRYIWORKBENCHPARTREFERENCE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartSite.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartSite.cpp index 15506f71f2e..bd1e88db4db 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchPartSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartSite.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartSite.h index 860ffa9013e..e12646c9661 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartSite.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchPartSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IWORKBENCHPARTSITE_H_ #define IWORKBENCHPARTSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchSite.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchSite.cpp index 47520866e95..c09624197d1 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchSite.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchSite.h index aed8cd1d2f7..89cd93d3287 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchSite.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHSITE_H_ #define BERRYIWORKBENCHSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchWindow.cpp b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchWindow.cpp index bd138799aff..5a7a2bf93c0 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchWindow.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchWindow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchWindow.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchWindow.h b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchWindow.h index 9a95d3e3e00..cb363ace3cc 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchWindow.h +++ b/Plugins/org.blueberry.ui.qt/src/berryIWorkbenchWindow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHWINDOW_H_ #define BERRYIWORKBENCHWINDOW_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryMenuUtil.cpp b/Plugins/org.blueberry.ui.qt/src/berryMenuUtil.cpp index dff55eec256..401c9d92223 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryMenuUtil.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryMenuUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMenuUtil.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryMenuUtil.h b/Plugins/org.blueberry.ui.qt/src/berryMenuUtil.h index 4c19d2cbd09..cbd9dee8199 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryMenuUtil.h +++ b/Plugins/org.blueberry.ui.qt/src/berryMenuUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMENUUTIL_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryPlatformUI.cpp b/Plugins/org.blueberry.ui.qt/src/berryPlatformUI.cpp index ea24d4ca5bf..093ad7ce9c5 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryPlatformUI.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryPlatformUI.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPlatformUI.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryPlatformUI.h b/Plugins/org.blueberry.ui.qt/src/berryPlatformUI.h index ab10fdb033f..4d19c9355d5 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryPlatformUI.h +++ b/Plugins/org.blueberry.ui.qt/src/berryPlatformUI.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLATFORMUI_H_ #define BERRYPLATFORMUI_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryPropertyChangeEvent.cpp b/Plugins/org.blueberry.ui.qt/src/berryPropertyChangeEvent.cpp index 309b62d0b61..78ed868fc16 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryPropertyChangeEvent.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryPropertyChangeEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPropertyChangeEvent.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryPropertyChangeEvent.h b/Plugins/org.blueberry.ui.qt/src/berryPropertyChangeEvent.h index c6e562c6128..e4281fae61e 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryPropertyChangeEvent.h +++ b/Plugins/org.blueberry.ui.qt/src/berryPropertyChangeEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPROPERTYCHANGEEVENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryQModelIndexObject.cpp b/Plugins/org.blueberry.ui.qt/src/berryQModelIndexObject.cpp index 9075afbbcc7..ee8204825fa 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQModelIndexObject.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryQModelIndexObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQModelIndexObject.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryQModelIndexObject.h b/Plugins/org.blueberry.ui.qt/src/berryQModelIndexObject.h index 0b144ee181d..5a162a174fa 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQModelIndexObject.h +++ b/Plugins/org.blueberry.ui.qt/src/berryQModelIndexObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQMODELINDEXOBJECT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtEditorPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryQtEditorPart.cpp index cf322a3b2eb..03dfe91359c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtEditorPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryQtEditorPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtEditorPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtEditorPart.h b/Plugins/org.blueberry.ui.qt/src/berryQtEditorPart.h index 5a88810cf68..05f77fb7bbd 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtEditorPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryQtEditorPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTEDITORPART_H_ #define BERRYQTEDITORPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtIntroPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryQtIntroPart.cpp index 31d305a6eee..05f80d98fcf 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtIntroPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryQtIntroPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtIntroPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtIntroPart.h b/Plugins/org.blueberry.ui.qt/src/berryQtIntroPart.h index 32dd5dc8708..1d1006d426c 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtIntroPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryQtIntroPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTINTROPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtItemSelection.cpp b/Plugins/org.blueberry.ui.qt/src/berryQtItemSelection.cpp index 5c3124300d4..0deb6259f7e 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtItemSelection.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryQtItemSelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtItemSelection.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtItemSelection.h b/Plugins/org.blueberry.ui.qt/src/berryQtItemSelection.h index 9a548d0f052..cc6c07c0ca7 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtItemSelection.h +++ b/Plugins/org.blueberry.ui.qt/src/berryQtItemSelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTITEMSELECTION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtPreferences.cpp b/Plugins/org.blueberry.ui.qt/src/berryQtPreferences.cpp index 6778a3ec3fb..4ac42c04d5b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtPreferences.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryQtPreferences.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtPreferences.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtPreferences.h b/Plugins/org.blueberry.ui.qt/src/berryQtPreferences.h index aeb6c7a44a6..853490e6464 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtPreferences.h +++ b/Plugins/org.blueberry.ui.qt/src/berryQtPreferences.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTPREFERENCES_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtSelectionProvider.cpp b/Plugins/org.blueberry.ui.qt/src/berryQtSelectionProvider.cpp index b3b6b2e29b8..585d0e8e431 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtSelectionProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryQtSelectionProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtSelectionProvider.h b/Plugins/org.blueberry.ui.qt/src/berryQtSelectionProvider.h index 263bab14eaa..1ab03ca9d50 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtSelectionProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/berryQtSelectionProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTSELECTIONPROVIDER_H_ #define BERRYQTSELECTIONPROVIDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtStyleManager.cpp b/Plugins/org.blueberry.ui.qt/src/berryQtStyleManager.cpp index 34bb198c612..70a70532ab7 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtStyleManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryQtStyleManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtStyleManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtStyleManager.h b/Plugins/org.blueberry.ui.qt/src/berryQtStyleManager.h index c11f393d251..b6d30b5a721 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtStyleManager.h +++ b/Plugins/org.blueberry.ui.qt/src/berryQtStyleManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTSTYLEMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtViewPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryQtViewPart.cpp index ade1706091c..d46834febe2 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtViewPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryQtViewPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtViewPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryQtViewPart.h b/Plugins/org.blueberry.ui.qt/src/berryQtViewPart.h index 9a099b5368c..a4113046be1 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryQtViewPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryQtViewPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTVIEWPART_H_ #define BERRYQTVIEWPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berrySameShellProvider.cpp b/Plugins/org.blueberry.ui.qt/src/berrySameShellProvider.cpp index ee996c4a2ae..fc9e6717b25 100644 --- a/Plugins/org.blueberry.ui.qt/src/berrySameShellProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berrySameShellProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berrySameShellProvider.h b/Plugins/org.blueberry.ui.qt/src/berrySameShellProvider.h index 9008c2b6185..6b4b0afc5ba 100644 --- a/Plugins/org.blueberry.ui.qt/src/berrySameShellProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/berrySameShellProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAMESHELLPROVIDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berrySaveable.cpp b/Plugins/org.blueberry.ui.qt/src/berrySaveable.cpp index 509656d07b5..035539438ad 100644 --- a/Plugins/org.blueberry.ui.qt/src/berrySaveable.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berrySaveable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySaveable.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berrySaveable.h b/Plugins/org.blueberry.ui.qt/src/berrySaveable.h index 5669d2f5256..81dcf4a8373 100644 --- a/Plugins/org.blueberry.ui.qt/src/berrySaveable.h +++ b/Plugins/org.blueberry.ui.qt/src/berrySaveable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAVEABLE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berrySaveablesLifecycleEvent.cpp b/Plugins/org.blueberry.ui.qt/src/berrySaveablesLifecycleEvent.cpp index 129417c7d6d..6a8279511ee 100644 --- a/Plugins/org.blueberry.ui.qt/src/berrySaveablesLifecycleEvent.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berrySaveablesLifecycleEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySaveablesLifecycleEvent.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berrySaveablesLifecycleEvent.h b/Plugins/org.blueberry.ui.qt/src/berrySaveablesLifecycleEvent.h index bc6cd32a45c..9ccefd711b7 100644 --- a/Plugins/org.blueberry.ui.qt/src/berrySaveablesLifecycleEvent.h +++ b/Plugins/org.blueberry.ui.qt/src/berrySaveablesLifecycleEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAVEABLESLIFECYCLEEVENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berrySelectionChangedEvent.cpp b/Plugins/org.blueberry.ui.qt/src/berrySelectionChangedEvent.cpp index 62a2b2ed89e..87839ad6824 100644 --- a/Plugins/org.blueberry.ui.qt/src/berrySelectionChangedEvent.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berrySelectionChangedEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySelectionChangedEvent.h" #include "berryISelectionProvider.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berrySelectionChangedEvent.h b/Plugins/org.blueberry.ui.qt/src/berrySelectionChangedEvent.h index 993624dd69c..4e5dd1fca8b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berrySelectionChangedEvent.h +++ b/Plugins/org.blueberry.ui.qt/src/berrySelectionChangedEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSELECTIONCHANGEDEVENT_H_ #define BERRYSELECTIONCHANGEDEVENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryShell.cpp b/Plugins/org.blueberry.ui.qt/src/berryShell.cpp index 4ac8ed38964..92f24749ed5 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryShell.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryShell.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryShell.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryShell.h b/Plugins/org.blueberry.ui.qt/src/berryShell.h index 063637cdf7b..bd9890b84a0 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryShell.h +++ b/Plugins/org.blueberry.ui.qt/src/berryShell.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSHELL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryShellEvent.cpp b/Plugins/org.blueberry.ui.qt/src/berryShellEvent.cpp index a39ad56a568..99d11bd173b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryShellEvent.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryShellEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryShellEvent.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryShellEvent.h b/Plugins/org.blueberry.ui.qt/src/berryShellEvent.h index 785e178ee64..c80f1a13a64 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryShellEvent.h +++ b/Plugins/org.blueberry.ui.qt/src/berryShellEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSHELLEVENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryShowInContext.cpp b/Plugins/org.blueberry.ui.qt/src/berryShowInContext.cpp index 1f633c4ef46..bbf1d08c9d5 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryShowInContext.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryShowInContext.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryShowInContext.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryShowInContext.h b/Plugins/org.blueberry.ui.qt/src/berryShowInContext.h index eefe64da750..00b0d4fed5f 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryShowInContext.h +++ b/Plugins/org.blueberry.ui.qt/src/berryShowInContext.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSHOWINCONTEXT_H #define BERRYSHOWINCONTEXT_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryUIException.cpp b/Plugins/org.blueberry.ui.qt/src/berryUIException.cpp index adf7d30cfe7..350b289f863 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryUIException.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryUIException.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUIException.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryUIException.h b/Plugins/org.blueberry.ui.qt/src/berryUIException.h index 91ed81cad92..b896954f39a 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryUIException.h +++ b/Plugins/org.blueberry.ui.qt/src/berryUIException.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUIEXCEPTIONS_H_ #define BERRYUIEXCEPTIONS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryViewPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryViewPart.cpp index e19eb50797d..db57af84ab2 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryViewPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryViewPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryViewPart.h b/Plugins/org.blueberry.ui.qt/src/berryViewPart.h index 10be6991e4c..d8d20c69e39 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryViewPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryViewPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWPART_H_ #define BERRYVIEWPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryWindow.cpp b/Plugins/org.blueberry.ui.qt/src/berryWindow.cpp index 5a03b59be32..82a03126e11 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWindow.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryWindow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryWindow.h b/Plugins/org.blueberry.ui.qt/src/berryWindow.h index 19487cfa4ad..aac7200b241 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWindow.h +++ b/Plugins/org.blueberry.ui.qt/src/berryWindow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWINDOW_H_ #define BERRYWINDOW_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchActionConstants.cpp b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchActionConstants.cpp index eefa7219422..786f8e8149b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchActionConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchActionConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchActionConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchActionConstants.h b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchActionConstants.h index 23d7b01fac5..5faec1c69bc 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchActionConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchActionConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHACTIONCONSTANTS_H diff --git a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPart.cpp b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPart.cpp index 669b4231d05..44106cd73ca 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPart.h b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPart.h index bcdc62b35d8..a3df7f19425 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPart.h +++ b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_WORKBENCH_PART_H__ #define __BERRY_WORKBENCH_PART_H__ diff --git a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPlugin.cpp b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPlugin.cpp index 356b9190207..9dd5a5913f8 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPlugin.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPlugin.h b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPlugin.h index ebf0d0bb769..5d7fa0ef3b9 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPlugin.h +++ b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHPLUGIN_H_ #define BERRYWORKBENCHPLUGIN_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPreferenceConstants.cpp b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPreferenceConstants.cpp index b3b05f70176..54942f9169f 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPreferenceConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPreferenceConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchPreferenceConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPreferenceConstants.h b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPreferenceConstants.h index 74798aef1b5..83cd62c8435 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPreferenceConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/berryWorkbenchPreferenceConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHPREFERENCECONSTANTS_H_ #define BERRYWORKBENCHPREFERENCECONSTANTS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/berryXMLMemento.cpp b/Plugins/org.blueberry.ui.qt/src/berryXMLMemento.cpp index 0d84435d1bd..d0157234e6b 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryXMLMemento.cpp +++ b/Plugins/org.blueberry.ui.qt/src/berryXMLMemento.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryXMLMemento.h" diff --git a/Plugins/org.blueberry.ui.qt/src/berryXMLMemento.h b/Plugins/org.blueberry.ui.qt/src/berryXMLMemento.h index 3d73feed1a1..c279d967570 100644 --- a/Plugins/org.blueberry.ui.qt/src/berryXMLMemento.h +++ b/Plugins/org.blueberry.ui.qt/src/berryXMLMemento.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYXMLMEMENTO_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryICommandImageService.cpp b/Plugins/org.blueberry.ui.qt/src/commands/berryICommandImageService.cpp index dca5dfa9bd8..86197c6f124 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryICommandImageService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryICommandImageService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryICommandImageService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryICommandImageService.h b/Plugins/org.blueberry.ui.qt/src/commands/berryICommandImageService.h index 6779dcc639d..7a6c15373ae 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryICommandImageService.h +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryICommandImageService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICOMMANDIMAGESERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryICommandService.cpp b/Plugins/org.blueberry.ui.qt/src/commands/berryICommandService.cpp index 255ff490db2..8487879a30a 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryICommandService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryICommandService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryICommandService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryICommandService.h b/Plugins/org.blueberry.ui.qt/src/commands/berryICommandService.h index 0d33acfa3aa..4b1729e80c8 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryICommandService.h +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryICommandService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYICOMMANDSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryIElementReference.h b/Plugins/org.blueberry.ui.qt/src/commands/berryIElementReference.h index 38e89c08b3a..88c768430bb 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryIElementReference.h +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryIElementReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIELEMENTREFERENCE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryIElementUpdater.h b/Plugins/org.blueberry.ui.qt/src/commands/berryIElementUpdater.h index 5ad6de03d43..9fe217c6963 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryIElementUpdater.h +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryIElementUpdater.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIELEMENTUPDATER_H diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryIMenuService.h b/Plugins/org.blueberry.ui.qt/src/commands/berryIMenuService.h index 828574eee19..33b6f9144f2 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryIMenuService.h +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryIMenuService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIMENUSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryUIElement.cpp b/Plugins/org.blueberry.ui.qt/src/commands/berryUIElement.cpp index e0473339e06..a058cc0a031 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryUIElement.cpp +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryUIElement.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUIElement.h" diff --git a/Plugins/org.blueberry.ui.qt/src/commands/berryUIElement.h b/Plugins/org.blueberry.ui.qt/src/commands/berryUIElement.h index 2d54c34c6f8..efd4bb0c1c6 100644 --- a/Plugins/org.blueberry.ui.qt/src/commands/berryUIElement.h +++ b/Plugins/org.blueberry.ui.qt/src/commands/berryUIElement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUIELEMENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkControlEvent.cpp b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkControlEvent.cpp index b6a8445f3e7..a3f248d2220 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkControlEvent.cpp +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkControlEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryGuiTkControlEvent.h" diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkControlEvent.h b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkControlEvent.h index 4979b40597e..7e17c62f64d 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkControlEvent.h +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkControlEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYGUITKCONTROLEVENT_H_ #define BERRYGUITKCONTROLEVENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkEvent.cpp b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkEvent.cpp index a32e0911716..a34ed124069 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkEvent.cpp +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryGuiTkEvent.h" diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkEvent.h b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkEvent.h index aeb8da730a5..ab9097b989f 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkEvent.h +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYGUITKEVENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkIControlListener.cpp b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkIControlListener.cpp index 4a0fb6af247..56f55f2e040 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkIControlListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkIControlListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryGuiTkIControlListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkIControlListener.h b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkIControlListener.h index e7896c109b2..53d37410acb 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkIControlListener.h +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkIControlListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYGUITKICONTROLLISTENER_H_ #define BERRYGUITKICONTROLLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkISelectionListener.cpp b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkISelectionListener.cpp index 8c73f8f2734..a150cc481fc 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkISelectionListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkISelectionListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryGuiTkISelectionListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkISelectionListener.h b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkISelectionListener.h index 275ffbbcf5d..05b6976fac1 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkISelectionListener.h +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkISelectionListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYGUITKISELECTIONLISTENER_H_ #define BERRYGUITKISELECTIONLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkSelectionEvent.cpp b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkSelectionEvent.cpp index 8416e8d1f3c..191cb05242d 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkSelectionEvent.cpp +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkSelectionEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryGuiTkSelectionEvent.h" diff --git a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkSelectionEvent.h b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkSelectionEvent.h index 01b26dffd21..553d9328d2a 100755 --- a/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkSelectionEvent.h +++ b/Plugins/org.blueberry.ui.qt/src/guitk/berryGuiTkSelectionEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYGUITKSELECTIONEVENT_H_ #define BERRYGUITKSELECTIONEVENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryHandlerUtil.cpp b/Plugins/org.blueberry.ui.qt/src/handlers/berryHandlerUtil.cpp index b307fdec06a..da6489cea8a 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryHandlerUtil.cpp +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryHandlerUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandlerUtil.h" diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryHandlerUtil.h b/Plugins/org.blueberry.ui.qt/src/handlers/berryHandlerUtil.h index 2a5e4cd9adb..8c1aab12ea4 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryHandlerUtil.h +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryHandlerUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLERUTIL_H_ #define BERRYHANDLERUTIL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerActivation.cpp b/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerActivation.cpp index 6c2e81b5c96..942fa3aa07f 100755 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerActivation.cpp +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerActivation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIHandlerActivation.h" diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerActivation.h b/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerActivation.h index a67a026d2f7..2b2a1de253a 100755 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerActivation.h +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerActivation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIHANDLERACTIVATION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerService.cpp b/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerService.cpp index f5bf1e93fc9..32b95671c35 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIHandlerService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerService.h b/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerService.h index f64f7c9b135..181fa5f7917 100755 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerService.h +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryIHandlerService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIHANDLERSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryRadioState.cpp b/Plugins/org.blueberry.ui.qt/src/handlers/berryRadioState.cpp index c8b15da5c71..61515d68e38 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryRadioState.cpp +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryRadioState.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRadioState.h" diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryRadioState.h b/Plugins/org.blueberry.ui.qt/src/handlers/berryRadioState.h index d15af430ef9..c7d6a7baba6 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryRadioState.h +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryRadioState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYRADIOSTATE_H #define BERRYRADIOSTATE_H diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryRegistryToggleState.cpp b/Plugins/org.blueberry.ui.qt/src/handlers/berryRegistryToggleState.cpp index 0b90fe69cc7..acecfc4f19e 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryRegistryToggleState.cpp +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryRegistryToggleState.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryToggleState.h" diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryRegistryToggleState.h b/Plugins/org.blueberry.ui.qt/src/handlers/berryRegistryToggleState.h index 34068d330b3..c027317488b 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryRegistryToggleState.h +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryRegistryToggleState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYTOGGLESTATE_H #define BERRYREGISTRYTOGGLESTATE_H diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryToggleState.cpp b/Plugins/org.blueberry.ui.qt/src/handlers/berryToggleState.cpp index f9c6d8db3a3..93a967c972f 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryToggleState.cpp +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryToggleState.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryToggleState.h" diff --git a/Plugins/org.blueberry.ui.qt/src/handlers/berryToggleState.h b/Plugins/org.blueberry.ui.qt/src/handlers/berryToggleState.h index a6d56dad37e..ef5b138256b 100644 --- a/Plugins/org.blueberry.ui.qt/src/handlers/berryToggleState.h +++ b/Plugins/org.blueberry.ui.qt/src/handlers/berryToggleState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTOGGLESTATE_H #define BERRYTOGGLESTATE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractDropTarget.h b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractDropTarget.h index dbf6d05a2dc..ffcd1799903 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractDropTarget.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractDropTarget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTDROPTARGET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractGroupMarker.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractGroupMarker.cpp index 813b474fd83..dbaf46b1ce5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractGroupMarker.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractGroupMarker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractGroupMarker.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractGroupMarker.h b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractGroupMarker.h index 38c2cbccb1c..393ac178f65 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractGroupMarker.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractGroupMarker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTGROUPMARKER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractMenuAdditionCacheEntry.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractMenuAdditionCacheEntry.cpp index b6211d86881..08d526a4381 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractMenuAdditionCacheEntry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractMenuAdditionCacheEntry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractMenuAdditionCacheEntry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractMenuAdditionCacheEntry.h b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractMenuAdditionCacheEntry.h index ce5ec94e96d..e80286d8efe 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractMenuAdditionCacheEntry.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractMenuAdditionCacheEntry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTMENUADDITIONCACHEENTRY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractPartSelectionTracker.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractPartSelectionTracker.cpp index 4dc128c3a29..36ef37acca2 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractPartSelectionTracker.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractPartSelectionTracker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractPartSelectionTracker.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractPartSelectionTracker.h b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractPartSelectionTracker.h index 7b85f8f0773..897e5131e6c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractPartSelectionTracker.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractPartSelectionTracker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTPARTSELECTIONTRACKER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractSelectionService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractSelectionService.cpp index 3eef5a806c5..7856e623e3e 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractSelectionService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractSelectionService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractSelectionService.h" #include "berryWorkbenchPlugin.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractSelectionService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractSelectionService.h index ccf6034f4b3..4237234581d 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractSelectionService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAbstractSelectionService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTSELECTIONSERVICE_H_ #define BERRYABSTRACTSELECTIONSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryActivePartExpression.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryActivePartExpression.cpp index 9753aee1bfc..fc255382f51 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryActivePartExpression.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryActivePartExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryActivePartExpression.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryActivePartExpression.h b/Plugins/org.blueberry.ui.qt/src/internal/berryActivePartExpression.h index 5ed1369c74b..c442c8d3048 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryActivePartExpression.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryActivePartExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYACTIVEPARTEXPRESSION_H #define BERRYACTIVEPARTEXPRESSION_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAlwaysEnabledExpression.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryAlwaysEnabledExpression.cpp index 0a2831fdd21..74f36ef1ca6 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAlwaysEnabledExpression.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAlwaysEnabledExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAlwaysEnabledExpression.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAlwaysEnabledExpression.h b/Plugins/org.blueberry.ui.qt/src/internal/berryAlwaysEnabledExpression.h index e885f57086e..e046750cc05 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAlwaysEnabledExpression.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAlwaysEnabledExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYALWAYSENABLEDEXPRESSION_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAndExpression.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryAndExpression.cpp index 0f763ec04c7..9c0c17c93be 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAndExpression.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAndExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAndExpression.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryAndExpression.h b/Plugins/org.blueberry.ui.qt/src/internal/berryAndExpression.h index da11bef4965..6fdb24368d8 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryAndExpression.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryAndExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_AND_EXPRESSION_H__ #define __BERRY_AND_EXPRESSION_H__ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryBundleUtility.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryBundleUtility.cpp index 3dce259cded..4b8e487d3b6 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryBundleUtility.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryBundleUtility.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryBundleUtility.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryBundleUtility.h b/Plugins/org.blueberry.ui.qt/src/internal/berryBundleUtility.h index a0d73183da8..f1fc1bd587c 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryBundleUtility.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryBundleUtility.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYBUNDLEUTILITY_H_ #define BERRYBUNDLEUTILITY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCategory.h b/Plugins/org.blueberry.ui.qt/src/internal/berryCategory.h index e82d3b1ade3..5e599ece9db 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCategory.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCategory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCATEGORY_H_ #define BERRYCATEGORY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCategory.txx b/Plugins/org.blueberry.ui.qt/src/internal/berryCategory.txx index d8a0911a99f..a0c0342af01 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCategory.txx +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCategory.txx @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_CATEGORY_TXX__ #define __BERRY_CATEGORY_TXX__ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryChangeToPerspectiveMenu.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryChangeToPerspectiveMenu.cpp index bfe0e134cbd..ee560fc4bd5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryChangeToPerspectiveMenu.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryChangeToPerspectiveMenu.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryChangeToPerspectiveMenu.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryChangeToPerspectiveMenu.h b/Plugins/org.blueberry.ui.qt/src/internal/berryChangeToPerspectiveMenu.h index 1fae084b6f2..530ef947808 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryChangeToPerspectiveMenu.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryChangeToPerspectiveMenu.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCHANGETOPERSPECTIVEMENU_H #define BERRYCHANGETOPERSPECTIVEMENU_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandParameter.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandParameter.cpp index 3c191eed423..a5d08232547 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandParameter.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandParameter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandParameter.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandParameter.h b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandParameter.h index f4cb9c3b298..8f1815f6048 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandParameter.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandParameter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDPARAMETER_H #define BERRYCOMMANDPARAMETER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandPersistence.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandPersistence.cpp index 1c8d3f40332..be4e617055a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandPersistence.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandPersistence.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandPersistence.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandPersistence.h b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandPersistence.h index d027e93b172..7435de41e57 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandPersistence.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandPersistence.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDPERSISTENCE_H #define BERRYCOMMANDPERSISTENCE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandService.cpp index 20c8fe9ff80..853b8968fde 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandService.h index dc2bb99fc20..001b9f0adb6 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandServiceFactory.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandServiceFactory.cpp index 0170272c03e..e250bcf6d01 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandServiceFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandServiceFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandServiceFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandServiceFactory.h b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandServiceFactory.h index 7114d297ea4..383ade75e95 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandServiceFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandServiceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDSERVICEFACTORY_H #define BERRYCOMMANDSERVICEFACTORY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandStateProxy.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandStateProxy.cpp index dfa8a2a30a8..71958502e81 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandStateProxy.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandStateProxy.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCommandStateProxy.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandStateProxy.h b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandStateProxy.h index 39ecef342b9..8e6a2ce59e5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCommandStateProxy.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCommandStateProxy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMMANDSTATEPROXY_H #define BERRYCOMMANDSTATEPROXY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCompositeExpression.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryCompositeExpression.cpp index 17e07314d41..9937a143d5d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCompositeExpression.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCompositeExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCompositeExpression.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryCompositeExpression.h b/Plugins/org.blueberry.ui.qt/src/internal/berryCompositeExpression.h index fa7ab64d069..e8822c4d36c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryCompositeExpression.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryCompositeExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCOMPOSITEEXPRESSION_H_ #define BERRYCOMPOSITEEXPRESSION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryContainerPlaceholder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryContainerPlaceholder.cpp index 12470e503ca..dcad3f95a64 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryContainerPlaceholder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryContainerPlaceholder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryContainerPlaceholder.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryContainerPlaceholder.h b/Plugins/org.blueberry.ui.qt/src/internal/berryContainerPlaceholder.h index 4272044a91b..183470df3d8 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryContainerPlaceholder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryContainerPlaceholder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONTAINERPLACEHOLDER_H_ #define BERRYCONTAINERPLACEHOLDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryContributionRoot.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryContributionRoot.cpp index 5b1745a59e9..df18e124b4b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryContributionRoot.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryContributionRoot.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryContributionRoot.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryContributionRoot.h b/Plugins/org.blueberry.ui.qt/src/internal/berryContributionRoot.h index b81069550ed..0a69367487f 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryContributionRoot.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryContributionRoot.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCONTRIBUTIONROOT_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultSaveable.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultSaveable.cpp index eb4fd69f09a..274e78bdb58 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultSaveable.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultSaveable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDefaultSaveable.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultSaveable.h b/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultSaveable.h index 5adc08072f5..d7b1567a671 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultSaveable.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultSaveable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDEFAULTSAVEABLE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultStackPresentationSite.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultStackPresentationSite.cpp index c326b63c8bf..8791d7c6edc 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultStackPresentationSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultStackPresentationSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDefaultStackPresentationSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultStackPresentationSite.h b/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultStackPresentationSite.h index 017c4918bf1..ed6294a3ae9 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultStackPresentationSite.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDefaultStackPresentationSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDEFAULTSTACKPRESENTATIONSITE_H_ #define BERRYDEFAULTSTACKPRESENTATIONSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedPlaceHolder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedPlaceHolder.cpp index 6632e297aa1..3b3656302f2 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedPlaceHolder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedPlaceHolder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDetachedPlaceHolder.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedPlaceHolder.h b/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedPlaceHolder.h index f4b5587a839..95287f6b2e2 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedPlaceHolder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedPlaceHolder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDETACHEDPLACEHOLDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedWindow.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedWindow.cpp index e0e411954bf..5301dadb44a 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedWindow.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedWindow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedWindow.h b/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedWindow.h index cab2f8d2f97..60826f17a17 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedWindow.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDetachedWindow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDETACHEDWINDOW_H_ #define BERRYDETACHEDWINDOW_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDirtyPerspectiveMarker.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryDirtyPerspectiveMarker.cpp index 8ab9882267f..ce6a6e5d3d3 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDirtyPerspectiveMarker.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDirtyPerspectiveMarker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDirtyPerspectiveMarker.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDirtyPerspectiveMarker.h b/Plugins/org.blueberry.ui.qt/src/internal/berryDirtyPerspectiveMarker.h index 59e26cbe1d7..5d9acf5d3db 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDirtyPerspectiveMarker.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDirtyPerspectiveMarker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDIRTYPERSPECTIVEMARKER_H #define BERRYDIRTYPERSPECTIVEMARKER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDragUtil.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryDragUtil.cpp index 835e7c0321a..3cac5f379e9 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDragUtil.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDragUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryDragUtil.h b/Plugins/org.blueberry.ui.qt/src/internal/berryDragUtil.h index 5f80e52ceec..8f4e7335a60 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryDragUtil.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryDragUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDRAGUTIL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorAreaHelper.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorAreaHelper.cpp index 2bf1419e5b7..734307f4b26 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorAreaHelper.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorAreaHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorAreaHelper.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorAreaHelper.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorAreaHelper.h index ec5484a7e86..769ee886c00 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorAreaHelper.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorAreaHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORAREAHELPER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorDescriptor.cpp index 4075bb64f5c..649436a5b05 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorDescriptor.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorDescriptor.h index 491ad34f787..53a61584456 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORDESCRIPTOR_H_ #define BERRYEDITORDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistory.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistory.cpp index c538caaed38..7419cdf78a3 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorHistory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistory.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistory.h index babe92f8eea..05b8359803f 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistory.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORHISTORY_H #define BERRYEDITORHISTORY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistoryItem.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistoryItem.cpp index 2c5e7de84ad..1ceffd3cf01 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistoryItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistoryItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorHistoryItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistoryItem.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistoryItem.h index ab15947c74f..872d3cd187d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistoryItem.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorHistoryItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORHISTORYITEM_H #define BERRYEDITORHISTORYITEM_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorManager.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorManager.cpp index a89d8757349..7f23567100d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorManager.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorManager.h index 71ed5244428..d0cc846b5b1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorManager.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORMANAGER_H_ #define BERRYEDITORMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorReference.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorReference.cpp index 91e70a72094..edddaf5bf29 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorReference.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryWorkbenchPageTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorReference.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorReference.h index 798ea4f63bc..25cf8c269cb 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorReference.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORREFERENCE_H_ #define BERRYEDITORREFERENCE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistry.cpp index cb61d3ab460..0f994146b2c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistry.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistry.h index 3b4aae94379..d0b9bedd824 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORREGISTRY_H_ #define BERRYEDITORREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistryReader.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistryReader.cpp index a9d9d1bb7e3..4e09f525dc8 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistryReader.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistryReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorRegistryReader.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistryReader.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistryReader.h index 78fb3a309da..8795a55c18b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistryReader.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorRegistryReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORREGISTRYREADER_H_ #define BERRYEDITORREGISTRYREADER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSashContainer.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSashContainer.cpp index 40c3aec10d5..ea132a48e34 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSashContainer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSashContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorSashContainer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSashContainer.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSashContainer.h index 2c959f4cecd..4e3c9bcfbc4 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSashContainer.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSashContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORSASHCONTAINER_H_ #define BERRYEDITORSASHCONTAINER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSite.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSite.cpp index 528f008f5a5..887c1891b49 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSite.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSite.h index b2210600e95..917032f56b5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSite.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEditorSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORSITE_H_ #define BERRYEDITORSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryElementReference.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryElementReference.cpp index 6339b4326ef..8c392ba370d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryElementReference.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryElementReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryElementReference.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryElementReference.h b/Plugins/org.blueberry.ui.qt/src/internal/berryElementReference.h index 0f5f5abf0b9..7c74b15f0d0 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryElementReference.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryElementReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYELEMENTREFERENCE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryErrorViewPart.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryErrorViewPart.cpp index 75cf0821572..bb6d36d66ee 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryErrorViewPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryErrorViewPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryErrorViewPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryErrorViewPart.h b/Plugins/org.blueberry.ui.qt/src/internal/berryErrorViewPart.h index eb14d8a73b6..dd116441e30 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryErrorViewPart.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryErrorViewPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYERRORVIEWPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationAuthority.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationAuthority.cpp index 7a8ef7846d3..ee9098c4cdf 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationAuthority.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationAuthority.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEvaluationAuthority.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationAuthority.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationAuthority.h index 92d9e5260fc..4afbc242056 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationAuthority.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationAuthority.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEVALUATIONAUTHORITY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationReference.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationReference.cpp index 90c2b9d2cef..84beea06653 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationReference.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEvaluationReference.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationReference.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationReference.h index e3d6a7320cd..3f6d8043203 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationReference.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEVALUATIONREFERENCE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationResultCache.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationResultCache.cpp index 67309010966..34910e1802c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationResultCache.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationResultCache.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEvaluationResultCache.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationResultCache.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationResultCache.h index 5fc0102572b..a3315e6518b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationResultCache.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationResultCache.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEVALUATIONRESULTCACHE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationService.cpp index 75cbd780b14..09f357b6a6e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEvaluationService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationService.h index 5edc35c4d90..5440cc47ea6 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryEvaluationService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEVALUATIONSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryExpressionAuthority.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryExpressionAuthority.cpp index 6e4df8a0a45..c9af1f56628 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryExpressionAuthority.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryExpressionAuthority.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryExpressionAuthority.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryExpressionAuthority.h b/Plugins/org.blueberry.ui.qt/src/internal/berryExpressionAuthority.h index e98b7d569ab..353d337b0cd 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryExpressionAuthority.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryExpressionAuthority.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEXPRESSIONAUTHORITY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryFileEditorMapping.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryFileEditorMapping.cpp index 7349622d7cb..ea4d7362d1d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryFileEditorMapping.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryFileEditorMapping.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryFileEditorMapping.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryFileEditorMapping.h b/Plugins/org.blueberry.ui.qt/src/internal/berryFileEditorMapping.h index d235319de6e..a65189ed888 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryFileEditorMapping.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryFileEditorMapping.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYFILEEDITORMAPPING_H_ #define BERRYFILEEDITORMAPPING_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryFolderLayout.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryFolderLayout.cpp index 1b19091399d..5e4031319f3 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryFolderLayout.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryFolderLayout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryFolderLayout.h" #include "berryPartPlaceholder.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryFolderLayout.h b/Plugins/org.blueberry.ui.qt/src/internal/berryFolderLayout.h index 1ab7980cc01..6db34a6f3df 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryFolderLayout.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryFolderLayout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYFOLDERLAYOUT_H_ #define BERRYFOLDERLAYOUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerActivation.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerActivation.cpp index 4ca18297077..06896c9a4f5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerActivation.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerActivation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandlerActivation.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerActivation.h b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerActivation.h index 77be5aeb880..d727259cce5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerActivation.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerActivation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLERACTIVATION_H #define BERRYHANDLERACTIVATION_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerAuthority.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerAuthority.cpp index 242e1990783..c5d902ecfbd 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerAuthority.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerAuthority.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandlerAuthority.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerAuthority.h b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerAuthority.h index b88bbda107f..6e1c5f8fe13 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerAuthority.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerAuthority.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLERAUTHORITY_H #define BERRYHANDLERAUTHORITY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerPersistence.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerPersistence.cpp index 52cd7d25b46..a6199b26978 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerPersistence.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerPersistence.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandlerPersistence.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerPersistence.h b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerPersistence.h index 940a8be90c3..eaa708d031a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerPersistence.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerPersistence.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLERPERSISTENCE_H #define BERRYHANDLERPERSISTENCE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerProxy.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerProxy.cpp index 8002099f2d4..7c23250034f 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerProxy.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerProxy.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandlerProxy.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerProxy.h b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerProxy.h index c1b1739ee27..7dcbba0d849 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerProxy.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerProxy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLERPROXY_H #define BERRYHANDLERPROXY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerService.cpp index dd2c37933e2..7784205c0c7 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandlerService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerService.h index 7bb6de4eda7..5029f7211a4 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLERSERVICE_H #define BERRYHANDLERSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerServiceFactory.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerServiceFactory.cpp index e26c7cd24fd..ccc8cbf8aee 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerServiceFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerServiceFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHandlerServiceFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerServiceFactory.h b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerServiceFactory.h index 551b1affbee..af9568ec265 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerServiceFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryHandlerServiceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHANDLERSERVICEFACTORY_H #define BERRYHANDLERSERVICEFACTORY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIDragOverListener.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryIDragOverListener.cpp index a2ed665e0b6..8b9326de1d0 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIDragOverListener.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIDragOverListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIDragOverListener.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIDragOverListener.h b/Plugins/org.blueberry.ui.qt/src/internal/berryIDragOverListener.h index b538d9a5a9d..c245a09005a 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIDragOverListener.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIDragOverListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIDRAGOVERLISTENER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIDropTarget.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryIDropTarget.cpp index ebbed61b5cb..48b161191ed 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIDropTarget.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIDropTarget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIDropTarget.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIDropTarget.h b/Plugins/org.blueberry.ui.qt/src/internal/berryIDropTarget.h index 245e8930709..f0df2f74473 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIDropTarget.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIDropTarget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIDROPTARGET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIEvaluationResultCache.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryIEvaluationResultCache.cpp index 5ca7afd9bc4..5754b2fb951 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIEvaluationResultCache.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIEvaluationResultCache.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEvaluationResultCache.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIEvaluationResultCache.h b/Plugins/org.blueberry.ui.qt/src/internal/berryIEvaluationResultCache.h index 06cbc0df6cc..8c880a5dcc3 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIEvaluationResultCache.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIEvaluationResultCache.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEVALUATIONRESULTCACHE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryILayoutContainer.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryILayoutContainer.cpp index 3015d470b9a..6fd227d0a34 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryILayoutContainer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryILayoutContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryILayoutContainer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryILayoutContainer.h b/Plugins/org.blueberry.ui.qt/src/internal/berryILayoutContainer.h index 4817fcabffb..547912aac29 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryILayoutContainer.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryILayoutContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYILAYOUTCONTAINER_H_ #define BERRYILAYOUTCONTAINER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIServiceLocatorCreator.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryIServiceLocatorCreator.cpp index 0a80abb07a4..fadeefb5cbb 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIServiceLocatorCreator.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIServiceLocatorCreator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIServiceLocatorCreator.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIServiceLocatorCreator.h b/Plugins/org.blueberry.ui.qt/src/internal/berryIServiceLocatorCreator.h index f8e8e66ad47..81fc27e5bb6 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIServiceLocatorCreator.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIServiceLocatorCreator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISERVICELOCATORCREATOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIStickyViewManager.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryIStickyViewManager.cpp index 9c8003b0384..9fb8331750d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIStickyViewManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIStickyViewManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIStickyViewManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIStickyViewManager.h b/Plugins/org.blueberry.ui.qt/src/internal/berryIStickyViewManager.h index 63d79076d9d..4ff260c099c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIStickyViewManager.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIStickyViewManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISTICKYVIEWMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIWorkbenchLocationService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryIWorkbenchLocationService.cpp index e4feb220469..b60a3f0bae9 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIWorkbenchLocationService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIWorkbenchLocationService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIWorkbenchLocationService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryIWorkbenchLocationService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryIWorkbenchLocationService.h index ba7a272f8d3..503a8019c27 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryIWorkbenchLocationService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryIWorkbenchLocationService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIWORKBENCHLOCATIONSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryInternalMenuService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryInternalMenuService.h index 2386d0e0039..3eab1af27fd 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryInternalMenuService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryInternalMenuService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINTERNALMENUSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryKeywordRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryKeywordRegistry.cpp index e110a3a0b13..e2d5a3bdd1b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryKeywordRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryKeywordRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryKeywordRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryKeywordRegistry.h b/Plugins/org.blueberry.ui.qt/src/internal/berryKeywordRegistry.h index 2ad66f8e140..5593c18211f 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryKeywordRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryKeywordRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYKEYWORDREGISTRY_H #define BERRYKEYWORDREGISTRY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutHelper.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutHelper.cpp index 0c7cd33e3a3..b4623e0f3d8 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutHelper.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLayoutHelper.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutHelper.h b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutHelper.h index 16e91ec8437..b99eea53c7a 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutHelper.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLAYOUTHELPER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPart.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPart.cpp index df300c5f08a..55522aa9575 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPart.h b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPart.h index 64dbe8822c9..81e63d28e2c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPart.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLAYOUTPART_H_ #define BERRYLAYOUTPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPartSash.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPartSash.cpp index 6dc74c72377..dd2fa26981c 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPartSash.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPartSash.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPartSash.h b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPartSash.h index 71d60c1556d..721becf8684 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPartSash.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutPartSash.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLAYOUTPARTSASH_H_ #define BERRYLAYOUTPARTSASH_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTree.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTree.cpp index 5e8639503ca..222be2cc3ab 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTree.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTree.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLayoutTree.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTree.h b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTree.h index a6589360407..250bf0f9d8e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTree.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTree.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLAYOUTTREE_H_ #define BERRYLAYOUTTREE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTreeNode.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTreeNode.cpp index 645df985f40..d786f4e2c7a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTreeNode.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTreeNode.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLayoutTreeNode.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTreeNode.h b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTreeNode.h index 7fcf73c964a..1635c7c6947 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTreeNode.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryLayoutTreeNode.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLAYOUTTREENODE_H_ #define BERRYLAYOUTTREENODE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryMenuServiceFactory.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryMenuServiceFactory.cpp index c994d59eb0c..1ef66bae2bb 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryMenuServiceFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryMenuServiceFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMenuServiceFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryMenuServiceFactory.h b/Plugins/org.blueberry.ui.qt/src/internal/berryMenuServiceFactory.h index f5d638459bd..7577d39eae7 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryMenuServiceFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryMenuServiceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMENUSERVICEFACTORY_H #define BERRYMENUSERVICEFACTORY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryNestableHandlerService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryNestableHandlerService.cpp index 202b36ac013..00d07f3fc26 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryNestableHandlerService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryNestableHandlerService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNestableHandlerService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryNestableHandlerService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryNestableHandlerService.h index dd6ba166b7c..042157b3693 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryNestableHandlerService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryNestableHandlerService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYNESTABLEHANDLERSERVICE_H #define BERRYNESTABLEHANDLERSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryNullEditorInput.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryNullEditorInput.cpp index e5355aaa855..870137329fe 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryNullEditorInput.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryNullEditorInput.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNullEditorInput.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryNullEditorInput.h b/Plugins/org.blueberry.ui.qt/src/internal/berryNullEditorInput.h index f17992bc3c5..3a9a83eaa95 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryNullEditorInput.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryNullEditorInput.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYnullptrEDITORINPUT_H_ #define BERRYnullptrEDITORINPUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryOpenPerspectivePropertyTester.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryOpenPerspectivePropertyTester.cpp index 8c9b9f67f11..ebf7e00079e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryOpenPerspectivePropertyTester.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryOpenPerspectivePropertyTester.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryOpenPerspectivePropertyTester.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryOpenPerspectivePropertyTester.h b/Plugins/org.blueberry.ui.qt/src/internal/berryOpenPerspectivePropertyTester.h index fe847646fcc..dd4f1cf0752 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryOpenPerspectivePropertyTester.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryOpenPerspectivePropertyTester.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOPENPERSPECTIVEPROPERTYTESTER_H #define BERRYOPENPERSPECTIVEPROPERTYTESTER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPageLayout.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPageLayout.cpp index fc0a047d51e..1a8d66c4e91 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPageLayout.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPageLayout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPageLayout.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPageLayout.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPageLayout.h index 9ff48730d69..c6eb1e87975 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPageLayout.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPageLayout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPAGELAYOUT_H_ #define BERRYPAGELAYOUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPagePartSelectionTracker.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPagePartSelectionTracker.cpp index da1f33ec61f..6211b6d8a10 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPagePartSelectionTracker.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPagePartSelectionTracker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPagePartSelectionTracker.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPagePartSelectionTracker.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPagePartSelectionTracker.h index cdc7f217b8f..5f6218d5244 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPagePartSelectionTracker.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPagePartSelectionTracker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPAGEPARTSELECTIONTRACKER_H_ #define BERRYPAGEPARTSELECTIONTRACKER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPageSelectionService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPageSelectionService.cpp index d29e9e10378..775d3bcefc8 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPageSelectionService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPageSelectionService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPageSelectionService.h" #include "berryPagePartSelectionTracker.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPageSelectionService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPageSelectionService.h index c1aa4308391..2dd2f5d2f38 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPageSelectionService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPageSelectionService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPAGESELECTIONSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryParameterValueConverterProxy.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryParameterValueConverterProxy.cpp index a008a568013..8336e186624 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryParameterValueConverterProxy.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryParameterValueConverterProxy.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryParameterValueConverterProxy.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryParameterValueConverterProxy.h b/Plugins/org.blueberry.ui.qt/src/internal/berryParameterValueConverterProxy.h index 27fe4b7250b..843c223234e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryParameterValueConverterProxy.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryParameterValueConverterProxy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARAMETERVALUECONVERTERPROXY_H #define BERRYPARAMETERVALUECONVERTERPROXY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartList.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPartList.cpp index 49e3ff355c3..19ff210372b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartList.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartList.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPartList.h" #include "berrySaveablesList.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartList.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPartList.h index 2f1c9674865..66e2ad72377 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartList.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartList.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTLIST_H_ #define BERRYPARTLIST_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartPane.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPartPane.cpp index 9011690a83b..5b2161fa02c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartPane.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartPane.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartPane.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPartPane.h index fe529948a78..57f972194c7 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartPane.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartPane.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTPANE_H_ #define BERRYPARTPANE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartPlaceholder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPartPlaceholder.cpp index 6035b7f5d80..e223c52d6f0 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartPlaceholder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartPlaceholder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPartPlaceholder.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartPlaceholder.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPartPlaceholder.h index 450dbef2341..4a8deb4f2a1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartPlaceholder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartPlaceholder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTPLACEHOLDER_H_ #define BERRYPARTPLACEHOLDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartSashContainer.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPartSashContainer.cpp index 6c038491ad3..7a05e26f7cd 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartSashContainer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartSashContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartSashContainer.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPartSashContainer.h index f82838f6120..2d991c78ebd 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartSashContainer.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartSashContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTSASHCONTAINER_H_ #define BERRYPARTSASHCONTAINER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPartService.cpp index c8569c425e9..556901283e1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPartService.h" namespace berry diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPartService.h index 495a1ad5609..2196a56b135 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTSERVICE_H_ #define BERRYPARTSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartSite.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPartSite.cpp index 783a2f485bb..a4a87441443 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPartSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartSite.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPartSite.h index 21386847bab..4622bf396e7 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartSite.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTSITE_H_ #define BERRYPARTSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartStack.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPartStack.cpp index 2d6cf2820f2..33acb89a9d4 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartStack.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartStack.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartStack.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPartStack.h index 6a2305ceabd..013a820fabd 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartStack.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartStack.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTSTACK_H_ #define BERRYPARTSTACK_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartTester.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPartTester.cpp index bf76a6c361c..349f7490f93 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartTester.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartTester.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPartTester.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPartTester.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPartTester.h index 4459d2fc31c..d8c49ac75b1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPartTester.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPartTester.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTTESTER_H_ #define BERRYPARTTESTER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPersistentState.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPersistentState.cpp index abf40050bb3..b23d64a5e36 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPersistentState.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPersistentState.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPersistentState.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPersistentState.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPersistentState.h index 27474165a3b..f212d24a3ab 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPersistentState.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPersistentState.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSISTENTSTATE_H #define BERRYPERSISTENTSTATE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspective.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspective.cpp index 1f5913501dc..62250388bb8 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspective.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspective.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspective.h index c7af72d442e..fb5895e7053 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspective.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVE_H_ #define BERRYPERSPECTIVE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveDescriptor.cpp index 38b6eb6e471..8db201399fa 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPerspectiveDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveDescriptor.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveDescriptor.h index 03936d5c7ed..929ffa0885b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVEDESCRIPTOR_H_ #define BERRYPERSPECTIVEDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveExtensionReader.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveExtensionReader.cpp index 7a099a8e2fa..7cc3036a999 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveExtensionReader.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveExtensionReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPerspectiveExtensionReader.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveExtensionReader.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveExtensionReader.h index 8c0c58508b1..32100f5b570 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveExtensionReader.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveExtensionReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVEEXTENSIONREADER_H_ #define BERRYPERSPECTIVEEXTENSIONREADER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveHelper.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveHelper.cpp index 93b6af0125e..4c4859d8895 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveHelper.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveHelper.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveHelper.h index d3f82bc08d5..d5d7d52b3c4 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveHelper.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVEHELPER_H_ #define BERRYPERSPECTIVEHELPER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveParameterValues.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveParameterValues.cpp index ec913195d09..f546738f8a2 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveParameterValues.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveParameterValues.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPerspectiveParameterValues.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveParameterValues.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveParameterValues.h index 3aab80003b6..55c07e54b7d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveParameterValues.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveParameterValues.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVEPARAMETERVALUES_H #define BERRYPERSPECTIVEPARAMETERVALUES_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistry.cpp index f5deb241e87..c14fedb2038 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPerspectiveRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistry.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistry.h index de27b941bc7..b354d1d4036 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVEREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistryReader.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistryReader.cpp index 2772a62a590..2269754ca13 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistryReader.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistryReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPerspectiveRegistryReader.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistryReader.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistryReader.h index d3512827b24..4fac1ffe2d9 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistryReader.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPerspectiveRegistryReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVEREGISTRYREADER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPlaceholderFolderLayout.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPlaceholderFolderLayout.cpp index 6037d52a949..91a59f2eea2 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPlaceholderFolderLayout.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPlaceholderFolderLayout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPlaceholderFolderLayout.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPlaceholderFolderLayout.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPlaceholderFolderLayout.h index d086aa55ba9..7b018272a88 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPlaceholderFolderLayout.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPlaceholderFolderLayout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLACEHOLDERFOLDERLAYOUT_H_ #define BERRYPLACEHOLDERFOLDERLAYOUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPolicy.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPolicy.cpp index 6ba416bcbe2..660067437c1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPolicy.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPolicy.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPolicy.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPolicy.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPolicy.h index d496d4d88e4..b906cedd413 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPolicy.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPolicy.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPOLICY_H #define BERRYPOLICY_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPreferenceConstants.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPreferenceConstants.cpp index ee0bcd5fba9..aa97f879508 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPreferenceConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPreferenceConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPreferenceConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPreferenceConstants.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPreferenceConstants.h index 15847e12e41..5eba0318275 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPreferenceConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPreferenceConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPREFERENCECONSTANTS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPreferencePageParameterValues.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPreferencePageParameterValues.cpp index 0f936379dbf..d35b99bf889 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPreferencePageParameterValues.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPreferencePageParameterValues.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPreferencePageParameterValues.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPreferencePageParameterValues.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPreferencePageParameterValues.h index 72a7af0cc32..b6f79915a9e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPreferencePageParameterValues.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPreferencePageParameterValues.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPREFERENCEPAGEPARAMETERVALUES_H #define BERRYPREFERENCEPAGEPARAMETERVALUES_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentablePart.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentablePart.cpp index 0d1971b3f69..4a19fe0bf71 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentablePart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentablePart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPresentablePart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentablePart.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentablePart.h index 7c89b5046a8..4ec04393fc4 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentablePart.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentablePart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPRESENTABLEPART_H_ #define BERRYPRESENTABLEPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationFactoryUtil.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationFactoryUtil.cpp index ac182ec8113..d498f373540 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationFactoryUtil.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationFactoryUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPresentationFactoryUtil.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationFactoryUtil.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationFactoryUtil.h index b4f968328d9..c05720f2952 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationFactoryUtil.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationFactoryUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPRESENTATIONFACTORYUTIL_H_ #define BERRYPRESENTATIONFACTORYUTIL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationSerializer.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationSerializer.cpp index b54fcc7504a..7bfc6f2d13d 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationSerializer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPresentationSerializer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationSerializer.h b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationSerializer.h index 882ecbc8d29..269f2797035 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationSerializer.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryPresentationSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPRESENTATIONSERIALIZER_H_ #define BERRYPRESENTATIONSERIALIZER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtControlWidget.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtControlWidget.cpp index 07ac247b93c..aaa76a78b4e 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtControlWidget.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtControlWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtControlWidget.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtControlWidget.h index 7cf8d240004..fba0244d084 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtControlWidget.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtControlWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTCONTROLWIDGET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtDisplay.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtDisplay.cpp index 71c96b3772c..bf8b3f285af 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtDisplay.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtDisplay.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtDisplay.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtDisplay.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtDisplay.h index 52feaf21686..817a4a0127b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtDisplay.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtDisplay.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTDISPLAY_H_ #define BERRYQTDISPLAY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtDnDControlWidget.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtDnDControlWidget.cpp index 24151101403..e6eb36c68b1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtDnDControlWidget.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtDnDControlWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryShell.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtDnDControlWidget.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtDnDControlWidget.h index 0a461fb5474..593c4a39f4d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtDnDControlWidget.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtDnDControlWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTDNDCONTROLWIDGET_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtGlobalEventFilter.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtGlobalEventFilter.cpp index bea98833de1..d8effa6819f 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtGlobalEventFilter.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtGlobalEventFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtGlobalEventFilter.h" #include "berryShell.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtGlobalEventFilter.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtGlobalEventFilter.h index 19eec89a1ac..ceea90a939b 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtGlobalEventFilter.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtGlobalEventFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTGLOBALEVENTFILTER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtMainWindowControl.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtMainWindowControl.cpp index cc6d55d9de3..9b752e30bbd 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtMainWindowControl.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtMainWindowControl.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtMainWindowControl.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtMainWindowControl.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtMainWindowControl.h index c5a3ae2c023..ba97f931ed6 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtMainWindowControl.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtMainWindowControl.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTMAINWINDOWCONTROL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtOpenPerspectiveAction.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtOpenPerspectiveAction.cpp index 2f42d68caba..cfc81b30391 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtOpenPerspectiveAction.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtOpenPerspectiveAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtOpenPerspectiveAction.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtOpenPerspectiveAction.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtOpenPerspectiveAction.h index ad85b92606b..4bbded2608b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtOpenPerspectiveAction.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtOpenPerspectiveAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTOPENPERSPECTIVEACTION_H_ #define BERRYQTOPENPERSPECTIVEACTION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtPerspectiveSwitcher.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtPerspectiveSwitcher.cpp index 74c304c61e7..da7cb2592c3 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtPerspectiveSwitcher.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtPerspectiveSwitcher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtPerspectiveSwitcher.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtPerspectiveSwitcher.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtPerspectiveSwitcher.h index 66893f80d65..c8b99c08522 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtPerspectiveSwitcher.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtPerspectiveSwitcher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTPERSPECTIVESWITCHER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtSafeApplication.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtSafeApplication.cpp index e1c4fb6e215..c82f688eba5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtSafeApplication.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtSafeApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtSafeApplication.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtSafeApplication.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtSafeApplication.h index f58181faf26..7ae0b34600c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtSafeApplication.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtSafeApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTSAFEAPPLICATION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtSash.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtSash.cpp index 60bc6f2f43c..d1761d31228 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtSash.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtSash.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtSash.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtSash.h index e0b52f2e1c6..4d7d4a889b2 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtSash.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtSash.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTSASH_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShell.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShell.cpp index 17a7e10cb02..8c9aabeb8cb 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShell.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShell.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShell.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShell.h index 8c529457b6b..ba1277183aa 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShell.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShell.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTMAINWINDOWSHELL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowPerspectiveDialog.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowPerspectiveDialog.cpp index 7f0d96f88c2..c7834091062 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowPerspectiveDialog.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowPerspectiveDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtShowPerspectiveDialog.h" #include "ui_berryQtShowPerspectiveDialog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowPerspectiveDialog.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowPerspectiveDialog.h index 7df1bc1303a..45875817df4 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowPerspectiveDialog.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowPerspectiveDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTSHOWPERSPECTIVEDIALOG_H #define BERRYQTSHOWPERSPECTIVEDIALOG_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewAction.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewAction.cpp index 1034bcb47d4..8678fa91042 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewAction.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtShowViewAction.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewAction.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewAction.h index 2e14d881e03..979f7e076b4 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewAction.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTSHOWVIEWACTION_H_ #define BERRYQTSHOWVIEWACTION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewDialog.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewDialog.cpp index 9ad666957fc..c7e89130371 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewDialog.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtShowViewDialog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewDialog.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewDialog.h index 72d573ea4d9..92cc214fb94 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewDialog.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtShowViewDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTSHOWVIEWDIALOG_H_ #define BERRYQTSHOWVIEWDIALOG_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtStylePreferencePage.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtStylePreferencePage.cpp index 641ab9ee8a4..cf73d47ec16 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtStylePreferencePage.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtStylePreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtStylePreferencePage.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtStylePreferencePage.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtStylePreferencePage.h index 444722f8246..872008cfc7a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtStylePreferencePage.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtStylePreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTSTYLEPREFERENCEPAGE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtTracker.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtTracker.cpp index d63a3699ef1..456b947984a 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtTracker.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtTracker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTweaklets.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtTracker.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtTracker.h index c99320faebb..c079c492bba 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtTracker.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtTracker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTTRACKER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetController.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetController.cpp index bfe5d095425..a0c57d97030 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetController.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetController.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtWidgetController.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetController.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetController.h index 370d1d73385..07818c7f715 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetController.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetController.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIQTCONTROLWIDGET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweaklet.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweaklet.cpp index db9039acfa8..68f52322919 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweaklet.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweaklet.cpp @@ -1,19 +1,15 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweaklet.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweaklet.h index 745b412dbbe..b6ea262bbad 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweaklet.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweaklet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTWIDGETSTWEAKLET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweakletImpl.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweakletImpl.cpp index 67ad7e11f17..b251d0d7eec 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweakletImpl.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweakletImpl.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweakletImpl.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweakletImpl.h index 44cfcf8d074..9c09a2a2008 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweakletImpl.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWidgetsTweakletImpl.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTWIDGETSTWEAKLETIMPL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchPageTweaklet.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchPageTweaklet.cpp index 12d3fb0ac1b..795a3bfa6b9 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchPageTweaklet.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchPageTweaklet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtWorkbenchPageTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchPageTweaklet.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchPageTweaklet.h index 3d33819127c..89300ab2c30 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchPageTweaklet.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchPageTweaklet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTWORKBENCHPAGETWEAKLET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchTweaklet.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchTweaklet.cpp index a4d4cf55f37..bcad47163ad 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchTweaklet.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchTweaklet.cpp @@ -1,19 +1,15 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtWorkbenchTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchTweaklet.h b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchTweaklet.h index 9d93a59a7db..56619e2025b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchTweaklet.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryQtWorkbenchTweaklet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTWORKBENCHTWEAKLET_H_ #define BERRYQTWORKBENCHTWEAKLET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryReferenceCounter.h b/Plugins/org.blueberry.ui.qt/src/internal/berryReferenceCounter.h index c2f15814e9a..5d9268578b1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryReferenceCounter.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryReferenceCounter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREFERENCECOUNTER_H_ #define BERRYREFERENCECOUNTER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryPersistence.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryPersistence.cpp index cf03e19e7b7..bf88cb1c5f9 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryPersistence.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryPersistence.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryRegistryPersistence.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryPersistence.h b/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryPersistence.h index 6790c1a53c8..a3b5a542ad4 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryPersistence.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryPersistence.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYPERSISTENCE_H #define BERRYREGISTRYPERSISTENCE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryReader.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryReader.cpp index 9f9044d5cc2..bc823946749 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryReader.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryReader.h b/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryReader.h index 83f3993bec1..1a966dd9d5a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryReader.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryRegistryReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREGISTRYREADER_H_ #define BERRYREGISTRYREADER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryReopenEditorMenu.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryReopenEditorMenu.cpp index 27425a117c6..7ef43c54f05 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryReopenEditorMenu.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryReopenEditorMenu.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryReopenEditorMenu.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryReopenEditorMenu.h b/Plugins/org.blueberry.ui.qt/src/internal/berryReopenEditorMenu.h index e9db24de65d..4f57d226358 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryReopenEditorMenu.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryReopenEditorMenu.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREOPENEDITORMENU_H #define BERRYREOPENEDITORMENU_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySaveablesList.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berrySaveablesList.cpp index 78f2e6dc834..9a7fda57654 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySaveablesList.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySaveablesList.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySaveablesList.h" #include "berryWorkbenchPlugin.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySaveablesList.h b/Plugins/org.blueberry.ui.qt/src/internal/berrySaveablesList.h index 79dbcfc87ec..4322719707c 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySaveablesList.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySaveablesList.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAVEABLESLIST_H_ #define BERRYSAVEABLESLIST_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocator.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocator.cpp index 58c358f54c6..12cfa3d348c 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocator.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryServiceLocator.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocator.h b/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocator.h index 0f05febaf27..5dd7b74bb31 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocator.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSERVICELOCATOR_H_ #define BERRYSERVICELOCATOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocatorCreator.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocatorCreator.cpp index 37c9b39987f..de6abcd6e8f 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocatorCreator.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocatorCreator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryServiceLocatorCreator.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocatorCreator.h b/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocatorCreator.h index 6e98dc442aa..9f7a703e11d 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocatorCreator.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryServiceLocatorCreator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSERVICELOCATORCREATOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryShellPool.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryShellPool.cpp index cba2e92b23f..b9bedf81d3d 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryShellPool.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryShellPool.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryShellPool.h b/Plugins/org.blueberry.ui.qt/src/internal/berryShellPool.h index b80d5e0fee6..9bb22b249f1 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryShellPool.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryShellPool.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSHELLPOOL_H_ #define BERRYSHELLPOOL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryShowViewMenu.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryShowViewMenu.cpp index f6acd873196..155db010749 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryShowViewMenu.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryShowViewMenu.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryShowViewMenu.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryShowViewMenu.h b/Plugins/org.blueberry.ui.qt/src/internal/berryShowViewMenu.h index d4437d7ef2b..0005571337e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryShowViewMenu.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryShowViewMenu.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSHOWVIEWMENU_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveCommandService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveCommandService.cpp index ba0c55d1c99..50073899825 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveCommandService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveCommandService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySlaveCommandService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveCommandService.h b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveCommandService.h index 373f76f824c..78968481f86 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveCommandService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveCommandService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSLAVECOMMANDSERVICE_H #define BERRYSLAVECOMMANDSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveHandlerService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveHandlerService.cpp index a5bc13a0dd4..20177c46888 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveHandlerService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveHandlerService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySlaveHandlerService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveHandlerService.h b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveHandlerService.h index 66fd344ff36..1785432283c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveHandlerService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveHandlerService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSLAVEHANDLERSERVICE_H #define BERRYSLAVEHANDLERSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveMenuService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveMenuService.cpp index 77afd096995..2d5f7a91435 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveMenuService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveMenuService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySlaveMenuService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveMenuService.h b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveMenuService.h index d832dce1f31..1abd246caa0 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveMenuService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySlaveMenuService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSLAVEMENUSERVICE_H #define BERRYSLAVEMENUSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySourcePriorityNameMapping.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berrySourcePriorityNameMapping.cpp index 0fcc25990fc..99242a69c33 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySourcePriorityNameMapping.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySourcePriorityNameMapping.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySourcePriorityNameMapping.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySourcePriorityNameMapping.h b/Plugins/org.blueberry.ui.qt/src/internal/berrySourcePriorityNameMapping.h index 989127a8635..d92f9f1d8e9 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySourcePriorityNameMapping.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySourcePriorityNameMapping.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSOURCEPRIORITYNAMEMAPPING_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySourceProviderService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berrySourceProviderService.cpp index 3e1586f5ae7..f0ce866065c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySourceProviderService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySourceProviderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySourceProviderService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySourceProviderService.h b/Plugins/org.blueberry.ui.qt/src/internal/berrySourceProviderService.h index 6af9463e264..5126af1cbd1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySourceProviderService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySourceProviderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSOURCEPROVIDERSERVICE_H #define BERRYSOURCEPROVIDERSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryStatusUtil.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryStatusUtil.cpp index 209d0176725..8d995b33474 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryStatusUtil.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryStatusUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStatusUtil.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryStatusUtil.h b/Plugins/org.blueberry.ui.qt/src/internal/berryStatusUtil.h index 53dfcab0d3d..1eac1de2c79 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryStatusUtil.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryStatusUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSTATUSUTIL_H #define BERRYSTATUSUTIL_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewDescriptor.cpp index e72e1a77fea..c306a9fde08 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStickyViewDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewDescriptor.h b/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewDescriptor.h index ae7affc9050..b7a99f11d90 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSTICKYVIEWDESCRIPTOR_H_ #define BERRYSTICKYVIEWDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewManager.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewManager.cpp index 57e785cdee4..f2c35ad3db3 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStickyViewManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewManager.h b/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewManager.h index b3884c474aa..34d2a3bbe9b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewManager.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryStickyViewManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSTICKYVIEWMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySwitchToWindowMenu.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berrySwitchToWindowMenu.cpp index dfe85ecf6e2..9622cd5b328 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySwitchToWindowMenu.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySwitchToWindowMenu.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySwitchToWindowMenu.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berrySwitchToWindowMenu.h b/Plugins/org.blueberry.ui.qt/src/internal/berrySwitchToWindowMenu.h index fd3be4092d7..765c2b4d080 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berrySwitchToWindowMenu.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berrySwitchToWindowMenu.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSWITCHTOWINDOWMENU_H #define BERRYSWITCHTOWINDOWMENU_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryTestDropLocation.h b/Plugins/org.blueberry.ui.qt/src/internal/berryTestDropLocation.h index 769f914e560..55a7f1252f7 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryTestDropLocation.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryTestDropLocation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTESTDROPLOCATION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryTweaklets.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryTweaklets.cpp index 1b8295c6177..a9cf35fb087 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryTweaklets.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryTweaklets.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTweaklets.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryTweaklets.h b/Plugins/org.blueberry.ui.qt/src/internal/berryTweaklets.h index 56dc77baf0b..d288d069af9 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryTweaklets.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryTweaklets.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTWEAKLETS_H_ #define BERRYTWEAKLETS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryUIExtensionTracker.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryUIExtensionTracker.cpp index c02cd9a2b7c..89e398a445d 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryUIExtensionTracker.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryUIExtensionTracker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUIExtensionTracker.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryUIExtensionTracker.h b/Plugins/org.blueberry.ui.qt/src/internal/berryUIExtensionTracker.h index 884f5f8adb1..92d7d3aeea2 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryUIExtensionTracker.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryUIExtensionTracker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUIEXTENSIONTRACKER_H #define BERRYUIEXTENSIONTRACKER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryUiUtil.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryUiUtil.cpp index 3ef0ddb2f17..e974f3cb0be 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryUiUtil.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryUiUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUiUtil.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryUiUtil.h b/Plugins/org.blueberry.ui.qt/src/internal/berryUiUtil.h index a0d56cb57b0..921b070acb5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryUiUtil.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryUiUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUIUTIL_H #define BERRYUIUTIL_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryUtil.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryUtil.cpp index 61581c3668f..7df5adbd3dd 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryUtil.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUtil.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryUtil.h b/Plugins/org.blueberry.ui.qt/src/internal/berryUtil.h index 5e256879658..e94a5440dab 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryUtil.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUTIL_H_ #define BERRYUTIL_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryViewDescriptor.cpp index eeefbfbb6a7..f0a5255a501 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewDescriptor.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewDescriptor.h index 4b9446a7ec0..4ed4499d679 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWDESCRIPTOR_H_ #define BERRYVIEWDESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewFactory.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryViewFactory.cpp index 582977a7247..d44649af72b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewFactory.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewFactory.h index b910fea2b7d..d41da54392b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWFACTORY_H_ #define BERRYVIEWFACTORY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayout.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayout.cpp index 71a7feb03fd..cfc40e630cb 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayout.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewLayout.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayout.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayout.h index 399ea4a9259..80a1732bdc5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayout.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWLAYOUT_H_ #define BERRYVIEWLAYOUT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayoutRec.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayoutRec.h index 0a3565e81ec..5862d21fa87 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayoutRec.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewLayoutRec.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWLAYOUTREC_H_ #define BERRYVIEWLAYOUTREC_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewReference.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryViewReference.cpp index 5ad626a291e..fe216887c67 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewReference.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewReference.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewReference.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewReference.h index 167fe67c9cf..93d41b2bfbb 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewReference.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWREFERENCE_H_ #define BERRYVIEWREFERENCE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistry.cpp index 13d85e43e45..309967e985a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistry.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistry.h index 729ea5d5980..91e010688b8 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWREGISTRY_H_ #define BERRYVIEWREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistryReader.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistryReader.cpp index e2aabe5e099..9c15c1f283e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistryReader.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistryReader.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewRegistryReader.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistryReader.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistryReader.h index 550ac4709dc..97e75637077 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistryReader.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewRegistryReader.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWREGISTRYREADER_H_ #define BERRYVIEWREGISTRYREADER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewSashContainer.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryViewSashContainer.cpp index d41e6deb935..ec5ee318eba 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewSashContainer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewSashContainer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewSashContainer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewSashContainer.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewSashContainer.h index be117212bdc..74634f1669e 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewSashContainer.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewSashContainer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWSASHCONTAINER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewSite.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryViewSite.cpp index 5db82bc497c..91a4f9ee9e3 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryViewSite.h b/Plugins/org.blueberry.ui.qt/src/internal/berryViewSite.h index d8f4885a164..6870701bf35 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryViewSite.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryViewSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWSITE_H_ #define BERRYVIEWSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWWinActionBars.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWWinActionBars.cpp index 670a01e4bbf..ebefea22b05 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWWinActionBars.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWWinActionBars.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWWinActionBars.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWWinActionBars.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWWinActionBars.h index 319dca6cd13..e3f49d13983 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWWinActionBars.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWWinActionBars.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWWINACTIONBARS_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWWinPartService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWWinPartService.cpp index c1fdb68ade7..3df291a540b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWWinPartService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWWinPartService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWWinPartService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWWinPartService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWWinPartService.h index 0e6de33b7a3..268725b61b5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWWinPartService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWWinPartService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWWINPARTSERVICE_H_ #define BERRYWWINPARTSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowManager.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowManager.cpp index 94ac3de1bea..b9d638a836d 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWindowManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowManager.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowManager.h index c56db9d4467..02d6e57ede5 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowManager.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWINDOWMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowPartSelectionTracker.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowPartSelectionTracker.cpp index 08241aa7a43..fda442e8cf6 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowPartSelectionTracker.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowPartSelectionTracker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWindowPartSelectionTracker.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowPartSelectionTracker.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowPartSelectionTracker.h index 4f40230bff4..62a56067343 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowPartSelectionTracker.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowPartSelectionTracker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWINDOWPARTSELECTIONTRACKER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowSelectionService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowSelectionService.cpp index 684d0588cbb..2f9447288f6 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowSelectionService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowSelectionService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWindowSelectionService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowSelectionService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowSelectionService.h index c6ba1e77ca4..036229c49be 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWindowSelectionService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWindowSelectionService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWINDOWSELECTIONSERVICE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbench.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbench.cpp index 0126c88cdee..11d19bdfe79 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbench.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbench.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbench.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbench.h index a23ec738c1b..6e06e3dd94b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbench.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbench.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCH_H_ #define BERRYWORKBENCH_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConfigurer.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConfigurer.cpp index 6457babb82e..66a07564216 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConfigurer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConfigurer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchConfigurer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConfigurer.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConfigurer.h index d359c132153..64dd57cdfc9 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConfigurer.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConfigurer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHCONFIGURER_H_ #define BERRYWORKBENCHCONFIGURER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConstants.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConstants.cpp index 7b7fdbe541d..16eb4a8a52b 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConstants.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConstants.h index ac485f2272f..3609cc3b8a8 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHCONSTANTS_H_ #define BERRYWORKBENCHCONSTANTS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchLocationService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchLocationService.cpp index 5dbf9b41500..dfc336d38af 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchLocationService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchLocationService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchLocationService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchLocationService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchLocationService.h index 1501b290de3..37bd9630f25 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchLocationService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchLocationService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHLOCATIONSERVICE_H #define BERRYWORKBENCHLOCATIONSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchMenuService.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchMenuService.cpp index f3b2f271434..eab4111d2f1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchMenuService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchMenuService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchMenuService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchMenuService.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchMenuService.h index 03f139aa223..12885e20610 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchMenuService.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchMenuService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHMENUSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPage.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPage.cpp index 5448457f4f1..76a1a1f3ef2 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPage.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPage.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPage.h index 868764bd6c1..31464d9020c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPage.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHPAGE_H_ #define BERRYWORKBENCHPAGE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPagePartList.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPagePartList.cpp index 3aebebe2bab..578f58f22ff 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPagePartList.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPagePartList.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchPagePartList.h" #include "berryPartPane.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPagePartList.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPagePartList.h index 7e8d451fb3f..5978662c7f9 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPagePartList.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPagePartList.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHPAGEPARTLIST_H_ #define BERRYWORKBENCHPAGEPARTLIST_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPartReference.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPartReference.cpp index cc6c2d5d78f..5e3a2ecaeda 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPartReference.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPartReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchPartReference.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPartReference.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPartReference.h index db91309b4c3..2e9c88e202c 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPartReference.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchPartReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHPARTREFERENCE_H_ #define BERRYWORKBENCHPARTREFERENCE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchRegistryConstants.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchRegistryConstants.cpp index 521bd7f09da..73b8bb6c8c7 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchRegistryConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchRegistryConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchRegistryConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchRegistryConstants.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchRegistryConstants.h index a952f07e5cb..3f79b5fe2de 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchRegistryConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchRegistryConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __BERRY_WORKBENCH_REGISTRY_CONSTANTS__ #define __BERRY_WORKBENCH_REGISTRY_CONSTANTS__ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchServiceRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchServiceRegistry.cpp index 48886362297..b16323f74fa 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchServiceRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchServiceRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchServiceRegistry.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchServiceRegistry.h index b3153047058..f598b058d0b 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchServiceRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchServiceRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHSERVICEREGISTRY_H_ #define BERRYWORKBENCHSERVICEREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchSourceProvider.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchSourceProvider.cpp index 2cd7aab4a0a..4111eb6068e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchSourceProvider.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchSourceProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchSourceProvider.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchSourceProvider.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchSourceProvider.h index 3959b77be0c..14473d46d35 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchSourceProvider.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchSourceProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHSOURCEPROVIDER_H #define BERRYWORKBENCHSOURCEPROVIDER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchTestable.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchTestable.cpp index 32da274bc09..6b74f520c6a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchTestable.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchTestable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchTestable.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchTestable.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchTestable.h index b33378db055..a9a5bb88d6a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchTestable.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchTestable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHTESTABLE_H_ #define BERRYWORKBENCHTESTABLE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindow.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindow.cpp index 97539eaa4c0..64a74090fe6 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindow.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "tweaklets/berryGuiWidgetsTweaklet.h" #include "tweaklets/berryWorkbenchTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindow.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindow.h index 831df20af96..ebc3763f93b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindow.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHWINDOW_H_ #define BERRYWORKBENCHWINDOW_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowConfigurer.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowConfigurer.cpp index 4da56b3685e..49d0b76b8e1 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowConfigurer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowConfigurer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchWindowConfigurer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowConfigurer.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowConfigurer.h index caa0b2a0b1c..ef6b30291ab 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowConfigurer.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowConfigurer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHWINDOWCONFIGURER_H_ #define BERRYWORKBENCHWINDOWCONFIGURER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowExpression.cpp b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowExpression.cpp index 3b6ddf87f3e..f204d5f3b48 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowExpression.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowExpression.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchWindowExpression.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowExpression.h b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowExpression.h index 4621f06497f..48c71737f2b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowExpression.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/berryWorkbenchWindowExpression.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHWINDOWEXPRESSION_H #define BERRYWORKBENCHWINDOWEXPRESSION_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabFolder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabFolder.cpp index 88e3ef4dc52..a37656b3898 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabFolder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabFolder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEmptyTabFolder.h" #include "berryEmptyTabItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabFolder.h b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabFolder.h index 41c678104ce..b1a99e4261e 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabFolder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabFolder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEMPTYTABFOLDER_H_ #define BERRYEMPTYTABFOLDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabItem.cpp b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabItem.cpp index 8ff33fc5f0c..7737d445b9f 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEmptyTabItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabItem.h b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabItem.h index 3ee969e7613..4c6b0d96fde 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabItem.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryEmptyTabItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEMPTYTABITEM_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabFolder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabFolder.cpp index b3e99f26088..49adf8fbdf6 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabFolder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabFolder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNativeTabFolder.h" #include "berryNativeTabItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabFolder.h b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabFolder.h index 5da3746924c..69615eeed99 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabFolder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabFolder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYNATIVETABFOLDER_H_ #define BERRYNATIVETABFOLDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabItem.cpp b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabItem.cpp index e3a8dfcdae4..7e2eeaf26d6 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNativeTabItem.h" @@ -94,7 +90,7 @@ void NativeTabItem::SetShowClose(bool close) QWidget* NativeTabItem::GetCloseButton() { if (!closeButton) - { + { QIcon iconCloseTab = QtStyleManager::ThemeIcon(QStringLiteral(":/org.blueberry.ui.qt/tab_close.svg")); closeButton = new QToolButton(parent->GetControl()); closeButton->setObjectName("TabCloseButton"); diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabItem.h b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabItem.h index 0f5acf683d9..f5d72387942 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabItem.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryNativeTabItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYNATIVETABITEM_H_ #define BERRYNATIVETABITEM_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQCTabBar.cpp b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQCTabBar.cpp index a7d8f39462a..a76bf29bb21 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQCTabBar.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQCTabBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQCTabBar.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQCTabBar.h b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQCTabBar.h index f23c3e9d730..533abc52026 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQCTabBar.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQCTabBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQCTABBAR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.cpp b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.cpp index f84c1d786b4..0230db2f38d 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQtWorkbenchPresentationFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.h b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.h index 791011eff4e..319654b2a81 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/defaultpresentation/berryQtWorkbenchPresentationFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQTWORKBENCHPRESENTATIONFACTORY_H_ #define BERRYQTWORKBENCHPRESENTATIONFACTORY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryMessageDialogWithToggle.cpp b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryMessageDialogWithToggle.cpp index 11a5fbb4af8..cda478f780a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryMessageDialogWithToggle.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryMessageDialogWithToggle.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryMessageDialogWithToggle.h" #include "ui_berryMessageDialogWithToggle.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryMessageDialogWithToggle.h b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryMessageDialogWithToggle.h index 7f40247efbb..1a28cf28461 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryMessageDialogWithToggle.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryMessageDialogWithToggle.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYMESSAGEDIALOGWITHTOGGLE_H #define BERRYMESSAGEDIALOGWITHTOGGLE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryPerspectivesPreferencePage.cpp b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryPerspectivesPreferencePage.cpp index 5aefe230fe2..ea3d0eabd9f 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryPerspectivesPreferencePage.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryPerspectivesPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPerspectivesPreferencePage.h" #include "ui_berryPerspectivesPreferencePage.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryPerspectivesPreferencePage.h b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryPerspectivesPreferencePage.h index 1a819d49d58..b3b3991761b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryPerspectivesPreferencePage.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berryPerspectivesPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVESPREFERENCEPAGE_H #define BERRYPERSPECTIVESPREFERENCEPAGE_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berrySavePerspectiveDialog.cpp b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berrySavePerspectiveDialog.cpp index 6d3673fb24a..1f001d2b606 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berrySavePerspectiveDialog.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berrySavePerspectiveDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySavePerspectiveDialog.h" #include "berryPerspectiveListModel.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berrySavePerspectiveDialog.h b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berrySavePerspectiveDialog.h index 2be60758edf..69fb460e9fd 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berrySavePerspectiveDialog.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/dialogs/berrySavePerspectiveDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAVEPERSPECTIVEDIALOG_H #define BERRYSAVEPERSPECTIVEDIALOG_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryCloseAllPerspectivesHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryCloseAllPerspectivesHandler.cpp index 76b877991f8..16f560e1cc7 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryCloseAllPerspectivesHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryCloseAllPerspectivesHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryCloseAllPerspectivesHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryCloseAllPerspectivesHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryCloseAllPerspectivesHandler.h index 3c37eb3f6a9..9a5d096ba5a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryCloseAllPerspectivesHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryCloseAllPerspectivesHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCLOSEALLPERSPECTIVESHANDLER_H #define BERRYCLOSEALLPERSPECTIVESHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryClosePerspectiveHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryClosePerspectiveHandler.cpp index 7eb0582294d..718d6e84cb6 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryClosePerspectiveHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryClosePerspectiveHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryClosePerspectiveHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryClosePerspectiveHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryClosePerspectiveHandler.h index 1fecf40ad6c..4c3542ef623 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryClosePerspectiveHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryClosePerspectiveHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYCLOSEPERSPECTIVEHANDLER_H #define BERRYCLOSEPERSPECTIVEHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryDynamicHelpHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryDynamicHelpHandler.cpp index fb801e94c93..bbab2667882 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryDynamicHelpHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryDynamicHelpHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryDynamicHelpHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryDynamicHelpHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryDynamicHelpHandler.h index 8a24cf38c37..3a71d6c9575 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryDynamicHelpHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryDynamicHelpHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYDYNAMICHELPHANDLER_H #define BERRYDYNAMICHELPHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryHelpContentsHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryHelpContentsHandler.cpp index 58ca2876e28..417878adfc8 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryHelpContentsHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryHelpContentsHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryHelpContentsHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryHelpContentsHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryHelpContentsHandler.h index 220c6a358fc..88f8626d8ad 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryHelpContentsHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryHelpContentsHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYHELPCONTENTSHANDLER_H #define BERRYHELPCONTENTSHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryIntroHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryIntroHandler.cpp index 456894ea27d..27de2cd0b6b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryIntroHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryIntroHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIntroHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryIntroHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryIntroHandler.h index f782942eaf1..ceb6f781058 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryIntroHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryIntroHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINTROHANDLER_H #define BERRYINTROHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryNewEditorHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryNewEditorHandler.cpp index e6c2cab2ca2..2458d6f2997 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryNewEditorHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryNewEditorHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryNewEditorHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryNewEditorHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryNewEditorHandler.h index c07bb35883f..3bac8d65cc2 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryNewEditorHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryNewEditorHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYNEWEDITORHANDLER_H #define BERRYNEWEDITORHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryOpenInNewWindowHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryOpenInNewWindowHandler.cpp index f5d85dbac6d..641066fc6ce 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryOpenInNewWindowHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryOpenInNewWindowHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryOpenInNewWindowHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryOpenInNewWindowHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryOpenInNewWindowHandler.h index ede19643a7c..421945c0032 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryOpenInNewWindowHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryOpenInNewWindowHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYOPENINNEWWINDOWHANDLER_H #define BERRYOPENINNEWWINDOWHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryQuitHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryQuitHandler.cpp index 9c15d9a455f..eb3090f143e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryQuitHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryQuitHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryQuitHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryQuitHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryQuitHandler.h index 6a120e894f9..7f152970bca 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryQuitHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryQuitHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQUITHANDLER_H #define BERRYQUITHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryResetPerspectiveHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryResetPerspectiveHandler.cpp index 6241e8d7f14..325e2ba3ec2 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryResetPerspectiveHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryResetPerspectiveHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryResetPerspectiveHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryResetPerspectiveHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryResetPerspectiveHandler.h index 3d6acad6d1b..df51a888a25 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryResetPerspectiveHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryResetPerspectiveHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYRESETPERSPECTIVEHANDLER_H #define BERRYRESETPERSPECTIVEHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berrySavePerspectiveHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berrySavePerspectiveHandler.cpp index 6a4ea714bf8..6b9884c461a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berrySavePerspectiveHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berrySavePerspectiveHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySavePerspectiveHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berrySavePerspectiveHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berrySavePerspectiveHandler.h index cf478bf16ef..73f627bf1af 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berrySavePerspectiveHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berrySavePerspectiveHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAVEPERSPECTIVEHANDLER_H #define BERRYSAVEPERSPECTIVEHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowPerspectiveHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowPerspectiveHandler.cpp index 463f822533b..fd441126b08 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowPerspectiveHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowPerspectiveHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryShowPerspectiveHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowPerspectiveHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowPerspectiveHandler.h index c3532501d71..5383a4476e0 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowPerspectiveHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowPerspectiveHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSHOWPERSPECTIVEHANDLER_H #define BERRYSHOWPERSPECTIVEHANDLER_H diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowViewHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowViewHandler.cpp index 0291b9b1595..3422f361336 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowViewHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowViewHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryShowViewHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowViewHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowViewHandler.h index 84890c7a880..3334b1216fa 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowViewHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/handlers/berryShowViewHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSHOWVIEWHANDLER_H_ #define BERRYSHOWVIEWHANDLER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryEditorIntroAdapterPart.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryEditorIntroAdapterPart.cpp index fb60427eeb8..76b2f22b911 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryEditorIntroAdapterPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryEditorIntroAdapterPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEditorIntroAdapterPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryEditorIntroAdapterPart.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryEditorIntroAdapterPart.h index 425f1d15e97..68e11c09e4e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryEditorIntroAdapterPart.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryEditorIntroAdapterPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEDITORINTROADAPTERPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroDescriptor.cpp index 0c9c319ae07..35456279132 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIIntroDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroDescriptor.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroDescriptor.h index 67e1259de3a..743050d05e3 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIINTRODESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroRegistry.cpp index c3ec95e3009..c4e56cda193 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIIntroRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroRegistry.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroRegistry.h index 5f3bc8a9abc..1f225d83015 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIIntroRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIINTROREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroConstants.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroConstants.cpp index 43b6e5b6805..96d5fb1751f 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroConstants.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIntroConstants.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroConstants.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroConstants.h index 3713c06225e..24e5132f812 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroConstants.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINTROCONSTANTS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroDescriptor.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroDescriptor.cpp index 9039300fd90..fd51f78cd7e 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroDescriptor.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIntroDescriptor.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroDescriptor.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroDescriptor.h index d22f2b737db..444605453f0 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroDescriptor.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINTRODESCRIPTOR_H_ #define BERRYINTRODESCRIPTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroPartAdapterSite.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroPartAdapterSite.cpp index e03cbbd2194..06858480151 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroPartAdapterSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroPartAdapterSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIntroPartAdapterSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroPartAdapterSite.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroPartAdapterSite.h index 118839d550c..6a4305211cf 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroPartAdapterSite.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroPartAdapterSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWINTROADAPTERSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroRegistry.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroRegistry.cpp index 70f3b3aa51b..2baf46185ac 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroRegistry.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIntroRegistry.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroRegistry.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroRegistry.h index 986931b9d7e..57bea50e1b5 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroRegistry.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryIntroRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINTROREGISTRY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryViewIntroAdapterPart.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryViewIntroAdapterPart.cpp index ff523f11e6e..74e75d4f0bf 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryViewIntroAdapterPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryViewIntroAdapterPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewIntroAdapterPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryViewIntroAdapterPart.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryViewIntroAdapterPart.h index b4b42f2e7cc..eddf03eaf9b 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryViewIntroAdapterPart.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryViewIntroAdapterPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWINTROADAPTERPART_H_ #define BERRYVIEWINTROADAPTERPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryWorkbenchIntroManager.cpp b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryWorkbenchIntroManager.cpp index a8fd270c2c7..1e012d56839 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryWorkbenchIntroManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryWorkbenchIntroManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchIntroManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryWorkbenchIntroManager.h b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryWorkbenchIntroManager.h index f8e86ad88e2..bfaeeb2019a 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/intro/berryWorkbenchIntroManager.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/intro/berryWorkbenchIntroManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHINTROMANAGER_H_ #define BERRYWORKBENCHINTROMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabFolder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabFolder.cpp index db52dce12fe..113e7d2c191 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabFolder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabFolder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractTabFolder.h" #include "berryAbstractTabItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabFolder.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabFolder.h index 7a2e6b6ac95..fb98b040a34 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabFolder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabFolder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTTABFOLDER_H_ #define BERRYABSTRACTTABFOLDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabItem.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabItem.cpp index 91b9fe4f865..f7915cb9fbb 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabItem.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryAbstractTabItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabItem.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabItem.h index 2bd09dc2b2c..20b48760953 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabItem.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryAbstractTabItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYABSTRACTTABITEM_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryIPresentablePartList.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryIPresentablePartList.cpp index 52abba3f0f0..f35931fb4ab 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryIPresentablePartList.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryIPresentablePartList.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPresentablePartList.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryIPresentablePartList.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryIPresentablePartList.h index 7421bcb23b0..357ff37753f 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryIPresentablePartList.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryIPresentablePartList.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPRESENTABLEPARTLIST_H_ #define BERRYIPRESENTABLEPARTLIST_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryLeftToRightTabOrder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryLeftToRightTabOrder.cpp index 00baf6e0f23..3106158b285 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryLeftToRightTabOrder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryLeftToRightTabOrder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLeftToRightTabOrder.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryLeftToRightTabOrder.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryLeftToRightTabOrder.h index 35a2e7e565b..4774785f4ec 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryLeftToRightTabOrder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryLeftToRightTabOrder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYLEFTTORIGHTTABORDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryPartInfo.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryPartInfo.cpp index d534fb38a24..474341b1071 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryPartInfo.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryPartInfo.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPartInfo.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryPartInfo.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryPartInfo.h index 15adb7070e3..a02242b950b 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryPartInfo.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryPartInfo.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPARTINFO_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryPresentablePartFolder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryPresentablePartFolder.cpp index 880d958f888..07b5e49e5a0 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryPresentablePartFolder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryPresentablePartFolder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "internal/berryQtWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryPresentablePartFolder.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryPresentablePartFolder.h index 0cba0b45a92..426332922ee 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryPresentablePartFolder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryPresentablePartFolder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPRESENTABLEPARTFOLDER_H_ #define BERRYPRESENTABLEPARTFOLDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryReplaceDragHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryReplaceDragHandler.cpp index 299f04203d6..41832afcc67 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryReplaceDragHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryReplaceDragHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryReplaceDragHandler.h" #include "berryAbstractTabItem.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryReplaceDragHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryReplaceDragHandler.h index f77539cd86b..cb6cf27880b 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryReplaceDragHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryReplaceDragHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYREPLACEDRAGHANDLER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabDragHandler.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabDragHandler.cpp index c07731c0c89..f11eded1935 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabDragHandler.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabDragHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTabDragHandler.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabDragHandler.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabDragHandler.h index e1caa5786a1..1fd54bdbae5 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabDragHandler.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabDragHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTABDRAGHANDLER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabFolderEvent.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabFolderEvent.cpp index d152a2f9c75..aa7bc55a48a 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabFolderEvent.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabFolderEvent.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTabFolderEvent.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabFolderEvent.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabFolderEvent.h index c98e013c014..bca92d9a502 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabFolderEvent.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabFolderEvent.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTABFOLDEREVENT_H_ #define BERRYTABFOLDEREVENT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabOrder.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabOrder.cpp index 74d0ad52770..b3afe8d3966 100644 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabOrder.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabOrder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTabOrder.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabOrder.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabOrder.h index 0205511e44a..844d7601e3c 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabOrder.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabOrder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTABORDER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabbedStackPresentation.cpp b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabbedStackPresentation.cpp index 3b4e341b8c7..7a4f8792724 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabbedStackPresentation.cpp +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabbedStackPresentation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryLog.h" diff --git a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabbedStackPresentation.h b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabbedStackPresentation.h index 551ac57c6b6..0ea39863473 100755 --- a/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabbedStackPresentation.h +++ b/Plugins/org.blueberry.ui.qt/src/internal/util/berryTabbedStackPresentation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTABBEDSTACKPRESENTATION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroManager.cpp b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroManager.cpp index 5032240e7c0..14e8dcb0566 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroManager.cpp +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIIntroManager.h" diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroManager.h b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroManager.h index e2026c437b8..697703c32e6 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroManager.h +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIINTROMANAGER_H_ #define BERRYIINTROMANAGER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroPart.cpp b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroPart.cpp index c46d212229e..d7931b7b2cf 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIIntroPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroPart.h b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroPart.h index 7d507833ca2..cf862aac412 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroPart.h +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIINTROPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroSite.cpp b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroSite.cpp index 2625a595155..b48b47df687 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIIntroSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroSite.h b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroSite.h index 3ddc93374c9..61dd9663732 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroSite.h +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIIntroSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIINTROSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIntroContentDetector.h b/Plugins/org.blueberry.ui.qt/src/intro/berryIntroContentDetector.h index 6be0adfa52f..1d8b1aac346 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIntroContentDetector.h +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIntroContentDetector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINTROCONTENTDETECTOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIntroPart.cpp b/Plugins/org.blueberry.ui.qt/src/intro/berryIntroPart.cpp index 7f63b06a555..8e503c1df62 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIntroPart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIntroPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIntroPart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/intro/berryIntroPart.h b/Plugins/org.blueberry.ui.qt/src/intro/berryIntroPart.h index b54c104a900..3f1dc73399f 100644 --- a/Plugins/org.blueberry.ui.qt/src/intro/berryIntroPart.h +++ b/Plugins/org.blueberry.ui.qt/src/intro/berryIntroPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINTROPART_H_ #define BERRYINTROPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/model/berryPerspectiveListModel.cpp b/Plugins/org.blueberry.ui.qt/src/model/berryPerspectiveListModel.cpp index 10703a31ce8..a86ff3d902f 100644 --- a/Plugins/org.blueberry.ui.qt/src/model/berryPerspectiveListModel.cpp +++ b/Plugins/org.blueberry.ui.qt/src/model/berryPerspectiveListModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPerspectiveListModel.h" diff --git a/Plugins/org.blueberry.ui.qt/src/model/berryPerspectiveListModel.h b/Plugins/org.blueberry.ui.qt/src/model/berryPerspectiveListModel.h index 12643de9e36..ecd3dd600f4 100644 --- a/Plugins/org.blueberry.ui.qt/src/model/berryPerspectiveListModel.h +++ b/Plugins/org.blueberry.ui.qt/src/model/berryPerspectiveListModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPERSPECTIVELISTMODEL_H #define BERRYPERSPECTIVELISTMODEL_H diff --git a/Plugins/org.blueberry.ui.qt/src/model/berryViewTreeModel.cpp b/Plugins/org.blueberry.ui.qt/src/model/berryViewTreeModel.cpp index 96cb98c40ee..59113669708 100644 --- a/Plugins/org.blueberry.ui.qt/src/model/berryViewTreeModel.cpp +++ b/Plugins/org.blueberry.ui.qt/src/model/berryViewTreeModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryViewTreeModel.h" diff --git a/Plugins/org.blueberry.ui.qt/src/model/berryViewTreeModel.h b/Plugins/org.blueberry.ui.qt/src/model/berryViewTreeModel.h index f458e086c49..5997b7fff4b 100644 --- a/Plugins/org.blueberry.ui.qt/src/model/berryViewTreeModel.h +++ b/Plugins/org.blueberry.ui.qt/src/model/berryViewTreeModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYVIEWTREEMODEL_H #define BERRYVIEWTREEMODEL_H diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentablePart.cpp b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentablePart.cpp index 97c565cf982..37df59584bc 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentablePart.cpp +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentablePart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPresentablePart.h" diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentablePart.h b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentablePart.h index 3cb32125e2e..2afa0f8f57a 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentablePart.h +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentablePart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPRESENTABLEPART_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationFactory.cpp b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationFactory.cpp index 1d776e1b26a..8c5bd6a3b4a 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPresentationFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationFactory.h b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationFactory.h index 37b4a505202..710933f8c76 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPRESENTATIONFACTORY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationSerializer.cpp b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationSerializer.cpp index d21fe3f3174..b9d26a3d8e9 100644 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationSerializer.cpp +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationSerializer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIPresentationSerializer.h" diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationSerializer.h b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationSerializer.h index 09f0f0f8843..973ba9de2ac 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationSerializer.h +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryIPresentationSerializer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIPRESENTATIONSERIALIZER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryIStackPresentationSite.cpp b/Plugins/org.blueberry.ui.qt/src/presentations/berryIStackPresentationSite.cpp index 8ba3911edeb..fce22e1cbdf 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryIStackPresentationSite.cpp +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryIStackPresentationSite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIStackPresentationSite.h" diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryIStackPresentationSite.h b/Plugins/org.blueberry.ui.qt/src/presentations/berryIStackPresentationSite.h index e1b30fc0804..b35f35d3942 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryIStackPresentationSite.h +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryIStackPresentationSite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISTACKPRESENTATIONSITE_H_ #define BERRYISTACKPRESENTATIONSITE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryStackDropResult.cpp b/Plugins/org.blueberry.ui.qt/src/presentations/berryStackDropResult.cpp index 0c2967a3950..1bf085ea560 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryStackDropResult.cpp +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryStackDropResult.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStackDropResult.h" diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryStackDropResult.h b/Plugins/org.blueberry.ui.qt/src/presentations/berryStackDropResult.h index 20c38c5dd70..79e95879234 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryStackDropResult.h +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryStackDropResult.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSTACKDROPRESULT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryStackPresentation.cpp b/Plugins/org.blueberry.ui.qt/src/presentations/berryStackPresentation.cpp index f1f18fe0a1f..deac1bc8d4f 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryStackPresentation.cpp +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryStackPresentation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryStackPresentation.h" diff --git a/Plugins/org.blueberry.ui.qt/src/presentations/berryStackPresentation.h b/Plugins/org.blueberry.ui.qt/src/presentations/berryStackPresentation.h index d0479b13c73..4d1dc06e214 100755 --- a/Plugins/org.blueberry.ui.qt/src/presentations/berryStackPresentation.h +++ b/Plugins/org.blueberry.ui.qt/src/presentations/berryStackPresentation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSTACKPRESENTATION_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIDisposable.cpp b/Plugins/org.blueberry.ui.qt/src/services/berryIDisposable.cpp index 7ddd007b937..23681b168e5 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIDisposable.cpp +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIDisposable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIDisposable.h" diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIDisposable.h b/Plugins/org.blueberry.ui.qt/src/services/berryIDisposable.h index 6e1d56502eb..64c9054b9f0 100755 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIDisposable.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIDisposable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIDISPOSABLE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationReference.h b/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationReference.h index a676d1cfcad..e6c1ac01e1b 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationReference.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEVALUATIONREFERENCE_H diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationService.cpp b/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationService.cpp index 9caa8668a2c..c68a4c8d9c6 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIEvaluationService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationService.h b/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationService.h index 2054fd66ee3..42be600949a 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationService.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIEvaluationService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYIEVALUATIONSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryINestable.cpp b/Plugins/org.blueberry.ui.qt/src/services/berryINestable.cpp index 5d67747c113..e917f52e16b 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryINestable.cpp +++ b/Plugins/org.blueberry.ui.qt/src/services/berryINestable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryINestable.h" diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryINestable.h b/Plugins/org.blueberry.ui.qt/src/services/berryINestable.h index 1af2b39d157..604796cfe76 100755 --- a/Plugins/org.blueberry.ui.qt/src/services/berryINestable.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryINestable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYINESTABLE_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceFactory.cpp b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceFactory.cpp index a5d986b6110..ef440309a00 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceFactory.cpp +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIServiceFactory.h" diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceFactory.h b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceFactory.h index 7c1497ac929..e805576c546 100755 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceFactory.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISERVICEFACTORY_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceLocator.cpp b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceLocator.cpp index f6843d258f4..8f1c1361901 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceLocator.cpp +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceLocator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIServiceLocator.h" diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceLocator.h b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceLocator.h index 3931e61b0b3..bfaf0d13284 100755 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceLocator.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceLocator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISERVICELOCATOR_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceScopes.cpp b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceScopes.cpp index db53afe4d9f..4d25b102e65 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceScopes.cpp +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceScopes.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIServiceScopes.h" diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceScopes.h b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceScopes.h index 327d828f2a4..85ccc77cab8 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceScopes.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceScopes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISERVICESCOPES_H #define BERRYISERVICESCOPES_H diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceWithSources.cpp b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceWithSources.cpp index ef5a1ab0efa..8f21caebf52 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceWithSources.cpp +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceWithSources.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryIServiceWithSources.h" diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceWithSources.h b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceWithSources.h index a9c59e93137..68227e9a547 100755 --- a/Plugins/org.blueberry.ui.qt/src/services/berryIServiceWithSources.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryIServiceWithSources.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISERVICEWITHSOURCES_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryISourceProviderService.cpp b/Plugins/org.blueberry.ui.qt/src/services/berryISourceProviderService.cpp index e535b391bb3..ae647f1c549 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryISourceProviderService.cpp +++ b/Plugins/org.blueberry.ui.qt/src/services/berryISourceProviderService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISourceProviderService.h" diff --git a/Plugins/org.blueberry.ui.qt/src/services/berryISourceProviderService.h b/Plugins/org.blueberry.ui.qt/src/services/berryISourceProviderService.h index a4f2a77f2f3..6a0c339276c 100644 --- a/Plugins/org.blueberry.ui.qt/src/services/berryISourceProviderService.h +++ b/Plugins/org.blueberry.ui.qt/src/services/berryISourceProviderService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISOURCEPROVIDERSERVICE_H #define BERRYISOURCEPROVIDERSERVICE_H diff --git a/Plugins/org.blueberry.ui.qt/src/testing/berryITestHarness.h b/Plugins/org.blueberry.ui.qt/src/testing/berryITestHarness.h index abda2c67c63..cbd878bf253 100644 --- a/Plugins/org.blueberry.ui.qt/src/testing/berryITestHarness.h +++ b/Plugins/org.blueberry.ui.qt/src/testing/berryITestHarness.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYITESTHARNESS_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/testing/berryTestableObject.cpp b/Plugins/org.blueberry.ui.qt/src/testing/berryTestableObject.cpp index 9ec3d430a26..87bcdbc5cff 100644 --- a/Plugins/org.blueberry.ui.qt/src/testing/berryTestableObject.cpp +++ b/Plugins/org.blueberry.ui.qt/src/testing/berryTestableObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryTestableObject.h" diff --git a/Plugins/org.blueberry.ui.qt/src/testing/berryTestableObject.h b/Plugins/org.blueberry.ui.qt/src/testing/berryTestableObject.h index 51e491b8338..3c1f3924c00 100644 --- a/Plugins/org.blueberry.ui.qt/src/testing/berryTestableObject.h +++ b/Plugins/org.blueberry.ui.qt/src/testing/berryTestableObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYTESTABLEOBJECT_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryGuiWidgetsTweaklet.cpp b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryGuiWidgetsTweaklet.cpp index 105f9b65cdf..f6a8de16846 100755 --- a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryGuiWidgetsTweaklet.cpp +++ b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryGuiWidgetsTweaklet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryGuiWidgetsTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryGuiWidgetsTweaklet.h b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryGuiWidgetsTweaklet.h index b6b6bf170fa..a5a8a7288cb 100755 --- a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryGuiWidgetsTweaklet.h +++ b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryGuiWidgetsTweaklet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYGUIWIDGETSTWEAKLET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchPageTweaklet.cpp b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchPageTweaklet.cpp index 0354d793b58..4f96bbaf787 100755 --- a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchPageTweaklet.cpp +++ b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchPageTweaklet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchPageTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchPageTweaklet.h b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchPageTweaklet.h index d81c887a927..b8cd503e104 100755 --- a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchPageTweaklet.h +++ b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchPageTweaklet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHPAGETWEAKLET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchTweaklet.cpp b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchTweaklet.cpp index bbdd0ffd142..cdea190dadc 100755 --- a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchTweaklet.cpp +++ b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchTweaklet.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryWorkbenchTweaklet.h" diff --git a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchTweaklet.h b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchTweaklet.h index 0268b431432..a322b4813fb 100755 --- a/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchTweaklet.h +++ b/Plugins/org.blueberry.ui.qt/src/tweaklets/berryWorkbenchTweaklet.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYWORKBENCHTWEAKLET_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/util/berryISafeRunnableRunner.cpp b/Plugins/org.blueberry.ui.qt/src/util/berryISafeRunnableRunner.cpp index a17cbfa1fb4..5531ebaf330 100644 --- a/Plugins/org.blueberry.ui.qt/src/util/berryISafeRunnableRunner.cpp +++ b/Plugins/org.blueberry.ui.qt/src/util/berryISafeRunnableRunner.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryISafeRunnableRunner.h" diff --git a/Plugins/org.blueberry.ui.qt/src/util/berryISafeRunnableRunner.h b/Plugins/org.blueberry.ui.qt/src/util/berryISafeRunnableRunner.h index edcaae018c3..694a00c1553 100644 --- a/Plugins/org.blueberry.ui.qt/src/util/berryISafeRunnableRunner.h +++ b/Plugins/org.blueberry.ui.qt/src/util/berryISafeRunnableRunner.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYISAFERUNNABLERUNNER_H_ diff --git a/Plugins/org.blueberry.ui.qt/src/util/berrySafeRunnable.cpp b/Plugins/org.blueberry.ui.qt/src/util/berrySafeRunnable.cpp index 169299d0560..e2712d24c1e 100644 --- a/Plugins/org.blueberry.ui.qt/src/util/berrySafeRunnable.cpp +++ b/Plugins/org.blueberry.ui.qt/src/util/berrySafeRunnable.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySafeRunnable.h" diff --git a/Plugins/org.blueberry.ui.qt/src/util/berrySafeRunnable.h b/Plugins/org.blueberry.ui.qt/src/util/berrySafeRunnable.h index 509585b8022..9767321c4c7 100644 --- a/Plugins/org.blueberry.ui.qt/src/util/berrySafeRunnable.h +++ b/Plugins/org.blueberry.ui.qt/src/util/berrySafeRunnable.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYSAFERUNNABLE_H_ diff --git a/Plugins/org.blueberry.uitest/manifest_headers.cmake b/Plugins/org.blueberry.uitest/manifest_headers.cmake index 2d9e380cd01..01f620b32f6 100644 --- a/Plugins/org.blueberry.uitest/manifest_headers.cmake +++ b/Plugins/org.blueberry.uitest/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "BlueBerry Automated UI Testing") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.test org.blueberry.ui.qt) diff --git a/Plugins/org.blueberry.uitest/src/berryUITestApplication.cpp b/Plugins/org.blueberry.uitest/src/berryUITestApplication.cpp index 2ac1ed66f60..f083a5ea8b4 100644 --- a/Plugins/org.blueberry.uitest/src/berryUITestApplication.cpp +++ b/Plugins/org.blueberry.uitest/src/berryUITestApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUITestApplication.h" diff --git a/Plugins/org.blueberry.uitest/src/berryUITestApplication.h b/Plugins/org.blueberry.uitest/src/berryUITestApplication.h index 2493c9f40dd..46cc9bb663a 100644 --- a/Plugins/org.blueberry.uitest/src/berryUITestApplication.h +++ b/Plugins/org.blueberry.uitest/src/berryUITestApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUITESTAPPLICATION_H_ #define BERRYUITESTAPPLICATION_H_ diff --git a/Plugins/org.blueberry.uitest/src/harness/berryUITestCase.cpp b/Plugins/org.blueberry.uitest/src/harness/berryUITestCase.cpp index 19d4df9803e..e95afec4c4f 100644 --- a/Plugins/org.blueberry.uitest/src/harness/berryUITestCase.cpp +++ b/Plugins/org.blueberry.uitest/src/harness/berryUITestCase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUITestCase.h" diff --git a/Plugins/org.blueberry.uitest/src/harness/berryUITestCase.h b/Plugins/org.blueberry.uitest/src/harness/berryUITestCase.h index 9b609864016..ef1275ce989 100644 --- a/Plugins/org.blueberry.uitest/src/harness/berryUITestCase.h +++ b/Plugins/org.blueberry.uitest/src/harness/berryUITestCase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUITESTCASE_H_ #define BERRYUITESTCASE_H_ diff --git a/Plugins/org.blueberry.uitest/src/internal/berryPluginActivator.cpp b/Plugins/org.blueberry.uitest/src/internal/berryPluginActivator.cpp index 0aec9bf90fa..1840dbac6ad 100644 --- a/Plugins/org.blueberry.uitest/src/internal/berryPluginActivator.cpp +++ b/Plugins/org.blueberry.uitest/src/internal/berryPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryPluginActivator.h" diff --git a/Plugins/org.blueberry.uitest/src/internal/berryPluginActivator.h b/Plugins/org.blueberry.uitest/src/internal/berryPluginActivator.h index f1b7cfffc5f..357ad53b61b 100644 --- a/Plugins/org.blueberry.uitest/src/internal/berryPluginActivator.h +++ b/Plugins/org.blueberry.uitest/src/internal/berryPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYPLUGINACTIVATOR_H diff --git a/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchAdvisor.cpp b/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchAdvisor.cpp index 747826b9ab4..9e90c3af1c9 100644 --- a/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchAdvisor.cpp +++ b/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUITestWorkbenchAdvisor.h" #include "berryUITestWorkbenchWindowAdvisor.h" diff --git a/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchAdvisor.h b/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchAdvisor.h index 25f67997e77..af8c7791d31 100644 --- a/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchAdvisor.h +++ b/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUITESTWORKBENCHADVISOR_H_ diff --git a/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchWindowAdvisor.cpp b/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchWindowAdvisor.cpp index f52fa720170..86a2be6874e 100644 --- a/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchWindowAdvisor.cpp +++ b/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchWindowAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryUITestWorkbenchWindowAdvisor.h" diff --git a/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchWindowAdvisor.h b/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchWindowAdvisor.h index 2315abefc76..8f347eb1454 100644 --- a/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchWindowAdvisor.h +++ b/Plugins/org.blueberry.uitest/src/internal/berryUITestWorkbenchWindowAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUITESTWORKBENCHWINDOWADVISOR_H_ diff --git a/Plugins/org.blueberry.uitest/src/util/berryEmptyPerspective.cpp b/Plugins/org.blueberry.uitest/src/util/berryEmptyPerspective.cpp index c39ec2c9deb..49f7d7436d8 100644 --- a/Plugins/org.blueberry.uitest/src/util/berryEmptyPerspective.cpp +++ b/Plugins/org.blueberry.uitest/src/util/berryEmptyPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berryEmptyPerspective.h" diff --git a/Plugins/org.blueberry.uitest/src/util/berryEmptyPerspective.h b/Plugins/org.blueberry.uitest/src/util/berryEmptyPerspective.h index 6325dae8c99..19b25838c9c 100644 --- a/Plugins/org.blueberry.uitest/src/util/berryEmptyPerspective.h +++ b/Plugins/org.blueberry.uitest/src/util/berryEmptyPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYEMPTYPERSPECTIVE_H_ #define BERRYEMPTYPERSPECTIVE_H_ diff --git a/Plugins/org.blueberry.uitest/src/util/berryUITestCaller.h b/Plugins/org.blueberry.uitest/src/util/berryUITestCaller.h index 89d948bfe7e..39bea304847 100644 --- a/Plugins/org.blueberry.uitest/src/util/berryUITestCaller.h +++ b/Plugins/org.blueberry.uitest/src/util/berryUITestCaller.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ -BlueBerry Platform +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYUITESTCALLER_H_ diff --git a/Plugins/org.mitk.core.ext/manifest_headers.cmake b/Plugins/org.mitk.core.ext/manifest_headers.cmake index f900ff64fdf..584066de754 100644 --- a/Plugins/org.mitk.core.ext/manifest_headers.cmake +++ b/Plugins/org.mitk.core.ext/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Extensions") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.core.runtime) diff --git a/Plugins/org.mitk.core.ext/schema/inputdevice.exsd b/Plugins/org.mitk.core.ext/schema/inputdevice.exsd index a3221e094cf..6fc8bb6533e 100644 --- a/Plugins/org.mitk.core.ext/schema/inputdevice.exsd +++ b/Plugins/org.mitk.core.ext/schema/inputdevice.exsd @@ -45,7 +45,7 @@ - + @@ -76,7 +76,7 @@ - a fully qualified name of the class that implements + a fully qualified name of the class that implements <samp>mitk::IInputDevice</samp>. @@ -103,17 +103,17 @@ - The following is an example of the extension point: + The following is an example of the extension point: <p> <pre> - <extension point="org.mitk.core.ext.inputdevices"> + <extension point="org.mitk.core.ext.inputdevices"> <inputdevice - id="com.xyz.inputdevice.XYZDevice" - name="XYZ Device" + id="com.xyz.inputdevice.XYZDevice" + name="XYZ Device" class="ns::XYZDevice" > <description>My new 20-dimensional input device</description> </inputdevice> - </extension> + </extension> </pre> </p> @@ -124,8 +124,8 @@ - The value of the <samp>class</samp> attribute must be a -fully qualified name of the class that implements + The value of the <samp>class</samp> attribute must be a +fully qualified name of the class that implements <samp>mitk::IInputDevice</samp>. @@ -145,7 +145,7 @@ fully qualified name of the class that implements - Copyright (c) 2010 Medical and Biological Informatics, DKFZ<br> + Copyright (c) German Cancer Research Center (DKFZ)<br> All rights reserved. diff --git a/Plugins/org.mitk.core.ext/src/internal/mitkCoreExtActivator.cpp b/Plugins/org.mitk.core.ext/src/internal/mitkCoreExtActivator.cpp index dbfc2ff719d..0c5b39723af 100644 --- a/Plugins/org.mitk.core.ext/src/internal/mitkCoreExtActivator.cpp +++ b/Plugins/org.mitk.core.ext/src/internal/mitkCoreExtActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkCoreExtActivator.h" diff --git a/Plugins/org.mitk.core.ext/src/internal/mitkCoreExtActivator.h b/Plugins/org.mitk.core.ext/src/internal/mitkCoreExtActivator.h index 493170dc439..7e02480365e 100755 --- a/Plugins/org.mitk.core.ext/src/internal/mitkCoreExtActivator.h +++ b/Plugins/org.mitk.core.ext/src/internal/mitkCoreExtActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOREEXTACTIVATOR_H_ diff --git a/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceDescriptor.cpp b/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceDescriptor.cpp index 306040bcc68..d4c056a44a6 100644 --- a/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceDescriptor.cpp +++ b/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceDescriptor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkInputDeviceDescriptor.h" #include "mitkCoreExtConstants.h" diff --git a/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceDescriptor.h b/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceDescriptor.h index 527860f1488..ffef15ad7be 100644 --- a/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceDescriptor.h +++ b/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKINPUTDEVICEDESCRIPTOR_H_ #define MITKINPUTDEVICEDESCRIPTOR_H_ diff --git a/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceRegistry.cpp b/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceRegistry.cpp index 41e8f9fb86b..c4dd08483db 100644 --- a/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceRegistry.cpp +++ b/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceRegistry.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceRegistry.h b/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceRegistry.h index e74120af301..4ed01711e9f 100644 --- a/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceRegistry.h +++ b/Plugins/org.mitk.core.ext/src/internal/mitkInputDeviceRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKSPACENAVIGATORREGISTRY_H_ #define MITKSPACENAVIGATORREGISTRY_H_ diff --git a/Plugins/org.mitk.core.ext/src/mitkCoreExtConstants.cpp b/Plugins/org.mitk.core.ext/src/mitkCoreExtConstants.cpp index a4ecf10c7fc..b88cd9ec1bd 100644 --- a/Plugins/org.mitk.core.ext/src/mitkCoreExtConstants.cpp +++ b/Plugins/org.mitk.core.ext/src/mitkCoreExtConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.core.ext/src/mitkCoreExtConstants.h b/Plugins/org.mitk.core.ext/src/mitkCoreExtConstants.h index 0054a695ace..158eac68be6 100644 --- a/Plugins/org.mitk.core.ext/src/mitkCoreExtConstants.h +++ b/Plugins/org.mitk.core.ext/src/mitkCoreExtConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCOREEXTCONSTANTS_H_ #define MITKCOREEXTCONSTANTS_H_ diff --git a/Plugins/org.mitk.core.ext/src/mitkIInputDevice.h b/Plugins/org.mitk.core.ext/src/mitkIInputDevice.h index 7d0212f8566..18bb978df66 100644 --- a/Plugins/org.mitk.core.ext/src/mitkIInputDevice.h +++ b/Plugins/org.mitk.core.ext/src/mitkIInputDevice.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIINPUTDEVICE_H_ #define MITKIINPUTDEVICE_H_ diff --git a/Plugins/org.mitk.core.ext/src/mitkIInputDeviceDescriptor.h b/Plugins/org.mitk.core.ext/src/mitkIInputDeviceDescriptor.h index 412f75a3d44..6e19ae1279f 100644 --- a/Plugins/org.mitk.core.ext/src/mitkIInputDeviceDescriptor.h +++ b/Plugins/org.mitk.core.ext/src/mitkIInputDeviceDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIINPUTDEVICEDESCRIPTOR_H_ #define MITKIINPUTDEVICEDESCRIPTOR_H_ diff --git a/Plugins/org.mitk.core.ext/src/mitkIInputDeviceRegistry.h b/Plugins/org.mitk.core.ext/src/mitkIInputDeviceRegistry.h index af4b1625185..6606d54f905 100644 --- a/Plugins/org.mitk.core.ext/src/mitkIInputDeviceRegistry.h +++ b/Plugins/org.mitk.core.ext/src/mitkIInputDeviceRegistry.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIINPUTDEVICEREGISTRY_H_ #define MITKIINPUTDEVICEREGISTRY_H_ diff --git a/Plugins/org.mitk.core.ext/src/mitkInputDeviceDescriptor.h b/Plugins/org.mitk.core.ext/src/mitkInputDeviceDescriptor.h index 742e445f24f..4914653d492 100644 --- a/Plugins/org.mitk.core.ext/src/mitkInputDeviceDescriptor.h +++ b/Plugins/org.mitk.core.ext/src/mitkInputDeviceDescriptor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKINPUTDEVICEDESCRIPTOR_H_ #define MITKINPUTDEVICEDESCRIPTOR_H_ diff --git a/Plugins/org.mitk.core.jobs/manifest_headers.cmake b/Plugins/org.mitk.core.jobs/manifest_headers.cmake index 1c6b184f23d..7405b9a76ab 100644 --- a/Plugins/org.mitk.core.jobs/manifest_headers.cmake +++ b/Plugins/org.mitk.core.jobs/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Job Plug-in") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.core.jobs) diff --git a/Plugins/org.mitk.core.jobs/src/internal/mitkDataStorageAccessRule.cpp b/Plugins/org.mitk.core.jobs/src/internal/mitkDataStorageAccessRule.cpp index 199ecfd25bc..4efe4c3ca70 100644 --- a/Plugins/org.mitk.core.jobs/src/internal/mitkDataStorageAccessRule.cpp +++ b/Plugins/org.mitk.core.jobs/src/internal/mitkDataStorageAccessRule.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataStorageAccessRule.h" #include diff --git a/Plugins/org.mitk.core.jobs/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.core.jobs/src/internal/mitkPluginActivator.cpp index 9051a46c8f8..624b129461a 100644 --- a/Plugins/org.mitk.core.jobs/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.core.jobs/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" diff --git a/Plugins/org.mitk.core.jobs/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.core.jobs/src/internal/mitkPluginActivator.h index e611aa6a588..ff3ce611573 100644 --- a/Plugins/org.mitk.core.jobs/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.core.jobs/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.core.jobs/src/mitkDataStorageAccessRule.h b/Plugins/org.mitk.core.jobs/src/mitkDataStorageAccessRule.h index a24e658d25a..94faf5cb648 100644 --- a/Plugins/org.mitk.core.jobs/src/mitkDataStorageAccessRule.h +++ b/Plugins/org.mitk.core.jobs/src/mitkDataStorageAccessRule.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDATASTORAGEACCESSRULE_H_HEADER_INCLUDED_ #define MITKDATASTORAGEACCESSRULE_H_HEADER_INCLUDED_ diff --git a/Plugins/org.mitk.core.services/manifest_headers.cmake b/Plugins/org.mitk.core.services/manifest_headers.cmake index 6661dcb2a8b..6646f1ee0a7 100644 --- a/Plugins/org.mitk.core.services/manifest_headers.cmake +++ b/Plugins/org.mitk.core.services/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Core Plugin") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.core.runtime) diff --git a/Plugins/org.mitk.core.services/src/internal/mitkDataStorageReference.cpp b/Plugins/org.mitk.core.services/src/internal/mitkDataStorageReference.cpp index 5cf9904b0f2..f1e2f0867bf 100644 --- a/Plugins/org.mitk.core.services/src/internal/mitkDataStorageReference.cpp +++ b/Plugins/org.mitk.core.services/src/internal/mitkDataStorageReference.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataStorageReference.h" diff --git a/Plugins/org.mitk.core.services/src/internal/mitkDataStorageReference.h b/Plugins/org.mitk.core.services/src/internal/mitkDataStorageReference.h index 04818d5573b..bbba3f84637 100644 --- a/Plugins/org.mitk.core.services/src/internal/mitkDataStorageReference.h +++ b/Plugins/org.mitk.core.services/src/internal/mitkDataStorageReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDATASTORAGEREFERENCE_H_ #define MITKDATASTORAGEREFERENCE_H_ diff --git a/Plugins/org.mitk.core.services/src/internal/mitkDataStorageService.cpp b/Plugins/org.mitk.core.services/src/internal/mitkDataStorageService.cpp index e26c0e80d59..cdc5903d8b8 100644 --- a/Plugins/org.mitk.core.services/src/internal/mitkDataStorageService.cpp +++ b/Plugins/org.mitk.core.services/src/internal/mitkDataStorageService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataStorageService.h" diff --git a/Plugins/org.mitk.core.services/src/internal/mitkDataStorageService.h b/Plugins/org.mitk.core.services/src/internal/mitkDataStorageService.h index 842260359b9..efdba15ad43 100644 --- a/Plugins/org.mitk.core.services/src/internal/mitkDataStorageService.h +++ b/Plugins/org.mitk.core.services/src/internal/mitkDataStorageService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDATASTORAGESERVICE_H_ #define MITKDATASTORAGESERVICE_H_ diff --git a/Plugins/org.mitk.core.services/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.core.services/src/internal/mitkPluginActivator.cpp index d3b4ed4a76d..fb3e6f8aecf 100644 --- a/Plugins/org.mitk.core.services/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.core.services/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" diff --git a/Plugins/org.mitk.core.services/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.core.services/src/internal/mitkPluginActivator.h index e9005f937bd..9bd9bc24f59 100644 --- a/Plugins/org.mitk.core.services/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.core.services/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKCORESERVICESPLUGIN_H_ #define MITKCORESERVICESPLUGIN_H_ diff --git a/Plugins/org.mitk.core.services/src/mitkIDataStorageReference.h b/Plugins/org.mitk.core.services/src/mitkIDataStorageReference.h index 7991df342cc..a60853185e3 100644 --- a/Plugins/org.mitk.core.services/src/mitkIDataStorageReference.h +++ b/Plugins/org.mitk.core.services/src/mitkIDataStorageReference.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIDATASTORAGEREFERENCE_H_ #define MITKIDATASTORAGEREFERENCE_H_ diff --git a/Plugins/org.mitk.core.services/src/mitkIDataStorageService.cpp b/Plugins/org.mitk.core.services/src/mitkIDataStorageService.cpp index e88cacd0d77..06113368cd1 100644 --- a/Plugins/org.mitk.core.services/src/mitkIDataStorageService.cpp +++ b/Plugins/org.mitk.core.services/src/mitkIDataStorageService.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIDataStorageService.h" diff --git a/Plugins/org.mitk.core.services/src/mitkIDataStorageService.h b/Plugins/org.mitk.core.services/src/mitkIDataStorageService.h index 8f9997a2a7b..4ee2cdb921b 100644 --- a/Plugins/org.mitk.core.services/src/mitkIDataStorageService.h +++ b/Plugins/org.mitk.core.services/src/mitkIDataStorageService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIDATASTORAGESERVICE_H_ #define MITKIDATASTORAGESERVICE_H_ diff --git a/Plugins/org.mitk.gui.common/manifest_headers.cmake b/Plugins/org.mitk.gui.common/manifest_headers.cmake index 4dfb13fb962..44f38af1987 100644 --- a/Plugins/org.mitk.gui.common/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.common/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Qt User Interface Plugin") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.ui.qt org.mitk.core.services) diff --git a/Plugins/org.mitk.gui.common/src/internal/mitkDataStorageEditorInputFactory.cpp b/Plugins/org.mitk.gui.common/src/internal/mitkDataStorageEditorInputFactory.cpp index 7fd446a9336..dbb80e0ed34 100644 --- a/Plugins/org.mitk.gui.common/src/internal/mitkDataStorageEditorInputFactory.cpp +++ b/Plugins/org.mitk.gui.common/src/internal/mitkDataStorageEditorInputFactory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataStorageEditorInputFactory.h" diff --git a/Plugins/org.mitk.gui.common/src/internal/mitkDataStorageEditorInputFactory.h b/Plugins/org.mitk.gui.common/src/internal/mitkDataStorageEditorInputFactory.h index 5c60927485d..c21d6b65099 100644 --- a/Plugins/org.mitk.gui.common/src/internal/mitkDataStorageEditorInputFactory.h +++ b/Plugins/org.mitk.gui.common/src/internal/mitkDataStorageEditorInputFactory.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDATASTORAGEEDITORINPUTFACTORY_H #define MITKDATASTORAGEEDITORINPUTFACTORY_H diff --git a/Plugins/org.mitk.gui.common/src/internal/org_mitk_gui_common_Activator.cpp b/Plugins/org.mitk.gui.common/src/internal/org_mitk_gui_common_Activator.cpp index 28df8550e16..d305cbe8321 100644 --- a/Plugins/org.mitk.gui.common/src/internal/org_mitk_gui_common_Activator.cpp +++ b/Plugins/org.mitk.gui.common/src/internal/org_mitk_gui_common_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_common_Activator.h" diff --git a/Plugins/org.mitk.gui.common/src/internal/org_mitk_gui_common_Activator.h b/Plugins/org.mitk.gui.common/src/internal/org_mitk_gui_common_Activator.h index 5296b00c811..ce9a94e5c36 100644 --- a/Plugins/org.mitk.gui.common/src/internal/org_mitk_gui_common_Activator.h +++ b/Plugins/org.mitk.gui.common/src/internal/org_mitk_gui_common_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.common/src/mitkDataNodeObject.cpp b/Plugins/org.mitk.gui.common/src/mitkDataNodeObject.cpp index dae648d1a79..8b344de92ce 100644 --- a/Plugins/org.mitk.gui.common/src/mitkDataNodeObject.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkDataNodeObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataNodeObject.h" diff --git a/Plugins/org.mitk.gui.common/src/mitkDataNodeObject.h b/Plugins/org.mitk.gui.common/src/mitkDataNodeObject.h index 7f48d80d9d1..c9048e95706 100644 --- a/Plugins/org.mitk.gui.common/src/mitkDataNodeObject.h +++ b/Plugins/org.mitk.gui.common/src/mitkDataNodeObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDATATREENODEOBJECT_H_ diff --git a/Plugins/org.mitk.gui.common/src/mitkDataNodeSelection.cpp b/Plugins/org.mitk.gui.common/src/mitkDataNodeSelection.cpp index 5a66ac3ce24..79056f008f4 100644 --- a/Plugins/org.mitk.gui.common/src/mitkDataNodeSelection.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkDataNodeSelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataNodeSelection.h" diff --git a/Plugins/org.mitk.gui.common/src/mitkDataNodeSelection.h b/Plugins/org.mitk.gui.common/src/mitkDataNodeSelection.h index 18f78b3a985..97543d8d5b1 100644 --- a/Plugins/org.mitk.gui.common/src/mitkDataNodeSelection.h +++ b/Plugins/org.mitk.gui.common/src/mitkDataNodeSelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDATATREENODESELECTION_H_ diff --git a/Plugins/org.mitk.gui.common/src/mitkDataStorageEditorInput.cpp b/Plugins/org.mitk.gui.common/src/mitkDataStorageEditorInput.cpp index 5da57f15bda..c70d201bff2 100644 --- a/Plugins/org.mitk.gui.common/src/mitkDataStorageEditorInput.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkDataStorageEditorInput.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDataStorageEditorInput.h" diff --git a/Plugins/org.mitk.gui.common/src/mitkDataStorageEditorInput.h b/Plugins/org.mitk.gui.common/src/mitkDataStorageEditorInput.h index b6aecdae074..d7f1c48e9ee 100644 --- a/Plugins/org.mitk.gui.common/src/mitkDataStorageEditorInput.h +++ b/Plugins/org.mitk.gui.common/src/mitkDataStorageEditorInput.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKDATASTORAGEEDITORINPUT_H_ #define MITKDATASTORAGEEDITORINPUT_H_ diff --git a/Plugins/org.mitk.gui.common/src/mitkILifecycleAwarePart.cpp b/Plugins/org.mitk.gui.common/src/mitkILifecycleAwarePart.cpp index 2da9e18b6e0..55e242083d1 100644 --- a/Plugins/org.mitk.gui.common/src/mitkILifecycleAwarePart.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkILifecycleAwarePart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkILifecycleAwarePart.h" namespace mitk { diff --git a/Plugins/org.mitk.gui.common/src/mitkILifecycleAwarePart.h b/Plugins/org.mitk.gui.common/src/mitkILifecycleAwarePart.h index c66d74fbb6d..7ab665e47d7 100644 --- a/Plugins/org.mitk.gui.common/src/mitkILifecycleAwarePart.h +++ b/Plugins/org.mitk.gui.common/src/mitkILifecycleAwarePart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKILIFECYCLEAWAREPART_H diff --git a/Plugins/org.mitk.gui.common/src/mitkILinkedRenderWindowPart.cpp b/Plugins/org.mitk.gui.common/src/mitkILinkedRenderWindowPart.cpp index c8a8bdb8f40..da6d7ff07fe 100644 --- a/Plugins/org.mitk.gui.common/src/mitkILinkedRenderWindowPart.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkILinkedRenderWindowPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkILinkedRenderWindowPart.h" namespace mitk { diff --git a/Plugins/org.mitk.gui.common/src/mitkILinkedRenderWindowPart.h b/Plugins/org.mitk.gui.common/src/mitkILinkedRenderWindowPart.h index 8a0b38640cb..f7468ae8580 100644 --- a/Plugins/org.mitk.gui.common/src/mitkILinkedRenderWindowPart.h +++ b/Plugins/org.mitk.gui.common/src/mitkILinkedRenderWindowPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKILINKEDRENDERWINDOWPART_H #define MITKILINKEDRENDERWINDOWPART_H diff --git a/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPart.cpp b/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPart.cpp index e9933b82999..fd7112e9747 100644 --- a/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPart.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIRenderWindowPart.h" diff --git a/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPart.h b/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPart.h index 8d9890d42c9..93efdf749a9 100644 --- a/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPart.h +++ b/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIRENDERWINDOWPART_H #define MITKIRENDERWINDOWPART_H diff --git a/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPartListener.cpp b/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPartListener.cpp index b3411534b48..543f317bf63 100644 --- a/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPartListener.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPartListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIRenderWindowPartListener.h" diff --git a/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPartListener.h b/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPartListener.h index 8f72eb2cb54..5539d507661 100644 --- a/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPartListener.h +++ b/Plugins/org.mitk.gui.common/src/mitkIRenderWindowPartListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIRENDERWINDOWPARTLISTENER_H #define MITKIRENDERWINDOWPARTLISTENER_H diff --git a/Plugins/org.mitk.gui.common/src/mitkIRenderingManager.cpp b/Plugins/org.mitk.gui.common/src/mitkIRenderingManager.cpp index cab2d80f9de..f161ae9e2f1 100644 --- a/Plugins/org.mitk.gui.common/src/mitkIRenderingManager.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkIRenderingManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIRenderingManager.h" @@ -180,4 +176,4 @@ IRenderingManager* MakeRenderingManagerInterface(RenderingManager::Pointer manag { return new RenderingManagerInterface(manager); } -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.common/src/mitkIRenderingManager.h b/Plugins/org.mitk.gui.common/src/mitkIRenderingManager.h index 4437ff160e7..245b39e3a85 100644 --- a/Plugins/org.mitk.gui.common/src/mitkIRenderingManager.h +++ b/Plugins/org.mitk.gui.common/src/mitkIRenderingManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIRENDERINGMANAGER_H #define MITKIRENDERINGMANAGER_H diff --git a/Plugins/org.mitk.gui.common/src/mitkIZombieViewPart.cpp b/Plugins/org.mitk.gui.common/src/mitkIZombieViewPart.cpp index 95d83ab4f7b..d286707ba51 100644 --- a/Plugins/org.mitk.gui.common/src/mitkIZombieViewPart.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkIZombieViewPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkIZombieViewPart.h" namespace mitk { diff --git a/Plugins/org.mitk.gui.common/src/mitkIZombieViewPart.h b/Plugins/org.mitk.gui.common/src/mitkIZombieViewPart.h index f167701a25c..fd01cac57a8 100644 --- a/Plugins/org.mitk.gui.common/src/mitkIZombieViewPart.h +++ b/Plugins/org.mitk.gui.common/src/mitkIZombieViewPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIZOMBIEVIEWPART_H diff --git a/Plugins/org.mitk.gui.common/src/mitkWorkbenchCommandConstants.cpp b/Plugins/org.mitk.gui.common/src/mitkWorkbenchCommandConstants.cpp index 7b8f5734487..220c4f4dc3c 100644 --- a/Plugins/org.mitk.gui.common/src/mitkWorkbenchCommandConstants.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkWorkbenchCommandConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkWorkbenchCommandConstants.h" diff --git a/Plugins/org.mitk.gui.common/src/mitkWorkbenchCommandConstants.h b/Plugins/org.mitk.gui.common/src/mitkWorkbenchCommandConstants.h index a44d2ab239b..ff971d61b61 100644 --- a/Plugins/org.mitk.gui.common/src/mitkWorkbenchCommandConstants.h +++ b/Plugins/org.mitk.gui.common/src/mitkWorkbenchCommandConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKWORKBENCHCOMMANDCONSTANTS_H #define MITKWORKBENCHCOMMANDCONSTANTS_H diff --git a/Plugins/org.mitk.gui.common/src/mitkWorkbenchUtil.cpp b/Plugins/org.mitk.gui.common/src/mitkWorkbenchUtil.cpp index 7c569071d6c..15e460609a7 100644 --- a/Plugins/org.mitk.gui.common/src/mitkWorkbenchUtil.cpp +++ b/Plugins/org.mitk.gui.common/src/mitkWorkbenchUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkWorkbenchUtil.h" diff --git a/Plugins/org.mitk.gui.common/src/mitkWorkbenchUtil.h b/Plugins/org.mitk.gui.common/src/mitkWorkbenchUtil.h index 238d8fc94d8..6c692229b6b 100644 --- a/Plugins/org.mitk.gui.common/src/mitkWorkbenchUtil.h +++ b/Plugins/org.mitk.gui.common/src/mitkWorkbenchUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKWORKBENCHUTIL_H diff --git a/Plugins/org.mitk.gui.qt.aicpregistration/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.aicpregistration/manifest_headers.cmake index 90b4a677d87..281594ec5d7 100644 --- a/Plugins/org.mitk.gui.qt.aicpregistration/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.aicpregistration/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "AICPRegistration") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/QmitkAICPRegistrationView.cpp b/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/QmitkAICPRegistrationView.cpp index d31d572edaf..367ce3599e1 100644 --- a/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/QmitkAICPRegistrationView.cpp +++ b/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/QmitkAICPRegistrationView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/QmitkAICPRegistrationView.h b/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/QmitkAICPRegistrationView.h index df81fa7a9ff..0c1c2c58e99 100644 --- a/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/QmitkAICPRegistrationView.h +++ b/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/QmitkAICPRegistrationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAICPRegistrationView_h diff --git a/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/org_mitk_gui_qt_aicpregistration_Activator.cpp b/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/org_mitk_gui_qt_aicpregistration_Activator.cpp index 228bf954cf7..1e02db5c7e0 100644 --- a/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/org_mitk_gui_qt_aicpregistration_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/org_mitk_gui_qt_aicpregistration_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_aicpregistration_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/org_mitk_gui_qt_aicpregistration_Activator.h b/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/org_mitk_gui_qt_aicpregistration_Activator.h index 62b719e05d3..65ac8b9bcbf 100644 --- a/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/org_mitk_gui_qt_aicpregistration_Activator.h +++ b/Plugins/org.mitk.gui.qt.aicpregistration/src/internal/org_mitk_gui_qt_aicpregistration_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_aicpregistration_Activator_h #define org_mitk_gui_qt_aicpregistration_Activator_h diff --git a/Plugins/org.mitk.gui.qt.application/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.application/manifest_headers.cmake index 26537411150..19ca7c69d61 100644 --- a/Plugins/org.mitk.gui.qt.application/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.application/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Qt CoreApp application") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.common) diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkAbstractDataNodeAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkAbstractDataNodeAction.cpp index 5e3d31bc274..decbec00041 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkAbstractDataNodeAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkAbstractDataNodeAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkAbstractDataNodeAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkAbstractDataNodeAction.h index b259da9abc9..128b81179fe 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkAbstractDataNodeAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkAbstractDataNodeAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTDATANODEACTION_H #define QMITKABSTRACTDATANODEACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkCloseProjectAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkCloseProjectAction.cpp index 98ca2a5e199..7d30be57aae 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkCloseProjectAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkCloseProjectAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCloseProjectAction.h" #include "internal/org_mitk_gui_qt_application_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkCloseProjectAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkCloseProjectAction.h index e8512b7c920..8b59baff1eb 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkCloseProjectAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkCloseProjectAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCloseProjectAction_H_ #define QmitkCloseProjectAction_H_ diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorAction.cpp index 66ab598b864..0079f4b921d 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorAction.h index 7b59c33b8e6..a48edda326b 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODECOLORACTION_H #define QMITKDATANODECOLORACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorMapAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorMapAction.cpp index f085fe0793c..076eb3d29bd 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorMapAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorMapAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorMapAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorMapAction.h index a673de8a749..9645994164b 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorMapAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeColorMapAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODECOLORMAPACTION_H #define QMITKDATANODECOLORMAPACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeComponentAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeComponentAction.cpp index 18585a37bfa..b87c7f28667 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeComponentAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeComponentAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeComponentAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeComponentAction.h index dbc5678bc2e..3934945f73b 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeComponentAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeComponentAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODECOMPONENTACTION_H #define QMITKDATANODECOMPONENTACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeContextMenu.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeContextMenu.cpp index 30ba7e157f1..e10ca0235cc 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeContextMenu.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeContextMenu.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataNodeContextMenu.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeContextMenu.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeContextMenu.h index aeec00a4eaa..764a40b498a 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeContextMenu.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeContextMenu.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODECONTEXTMENU_H #define QMITKDATANODECONTEXTMENU_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeGlobalReinitAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeGlobalReinitAction.cpp index 67a41d937ac..1d86c3658a2 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeGlobalReinitAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeGlobalReinitAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeGlobalReinitAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeGlobalReinitAction.h index debc4440b26..949a681a469 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeGlobalReinitAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeGlobalReinitAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEGLOBALREINITACTION_H #define QMITKDATANODEGLOBALREINITACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeHideAllAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeHideAllAction.cpp index 3d1649525bc..128961634ac 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeHideAllAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeHideAllAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeHideAllAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeHideAllAction.h index 82cbf772d28..37b162aa9ab 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeHideAllAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeHideAllAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEHIDEALLACTION_H #define QMITKDATANODEHIDEALLACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpacityAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpacityAction.cpp index 94f8d317f66..fe022d46cf5 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpacityAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpacityAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpacityAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpacityAction.h index 327e8ae9181..d3030cf61ce 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpacityAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpacityAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEOPACITYACTION_H #define QMITKDATANODEOPACITYACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpenInAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpenInAction.cpp index 00bfa08f146..56c18336b44 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpenInAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpenInAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk gui qt application plugin #include "QmitkDataNodeOpenInAction.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpenInAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpenInAction.h index 56011b7d645..60cba39afca 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpenInAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeOpenInAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEOPENINACTION_H #define QMITKDATANODEOPENINACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeReinitAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeReinitAction.cpp index 0521aad9fd9..cb3606e661c 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeReinitAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeReinitAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeReinitAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeReinitAction.h index 39ceb98a31e..1858aec56f9 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeReinitAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeReinitAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEREINITACTION_H #define QMITKDATANODEREINITACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeRemoveAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeRemoveAction.cpp index 545d48daab1..bd7020d5d10 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeRemoveAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeRemoveAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeRemoveAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeRemoveAction.h index 69b25dcb33e..fb5dadb9124 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeRemoveAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeRemoveAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEREMOVEACTION_H #define QMITKDATANODEREMOVEACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowDetailsAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowDetailsAction.cpp index 2430171a0e6..167ef27098a 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowDetailsAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowDetailsAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowDetailsAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowDetailsAction.h index 4e4fe4359a5..68a80aaf7e6 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowDetailsAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowDetailsAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODESHOWDETAILSACTION_H #define QMITKDATANODESHOWDETAILSACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowSelectedNodesAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowSelectedNodesAction.cpp index 883a9ec0b31..368f6d289d1 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowSelectedNodesAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowSelectedNodesAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowSelectedNodesAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowSelectedNodesAction.h index e77e97c317e..e92d2782c41 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowSelectedNodesAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeShowSelectedNodesAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODESHOWSELECTEDNODESACTION_H #define QMITKDATANODESHOWSELECTEDNODESACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeSurfaceRepresentationAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeSurfaceRepresentationAction.cpp index b4f71f7d97c..13c988c181b 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeSurfaceRepresentationAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeSurfaceRepresentationAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeSurfaceRepresentationAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeSurfaceRepresentationAction.h index 9b62af99884..a5271fa48ee 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeSurfaceRepresentationAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeSurfaceRepresentationAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODESURFACEREPRESENTATIONACTION_H #define QMITKDATANODESURFACEREPRESENTATIONACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeTextureInterpolationAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeTextureInterpolationAction.cpp index 2f1190363cb..fea8a8598ca 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeTextureInterpolationAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeTextureInterpolationAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeTextureInterpolationAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeTextureInterpolationAction.h index b4a8a1ac9cb..86cbb5d8237 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeTextureInterpolationAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeTextureInterpolationAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODETEXTUREINTERPOLATIONACTION_H #define QMITKDATANODETEXTUREINTERPOLATIONACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeToggleVisibilityAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeToggleVisibilityAction.cpp index 3a6478271fd..c06967fb8e0 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeToggleVisibilityAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeToggleVisibilityAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeToggleVisibilityAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeToggleVisibilityAction.h index 5fdbb3a8414..d28d856e5d8 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeToggleVisibilityAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDataNodeToggleVisibilityAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODETOGGLEVISIBILITYACTION_H #define QMITKDATANODETOGGLEVISIBILITYACTION_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDefaultDropTargetListener.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkDefaultDropTargetListener.cpp index 3217de4bf71..b7cb4038359 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDefaultDropTargetListener.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDefaultDropTargetListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDefaultDropTargetListener.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkDefaultDropTargetListener.h b/Plugins/org.mitk.gui.qt.application/src/QmitkDefaultDropTargetListener.h index ae485ab0c4c..cc4d0387a1a 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkDefaultDropTargetListener.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkDefaultDropTargetListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDEFAULTDROPTARGETLISTENER_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkFileExitAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkFileExitAction.cpp index e61eb353259..6e350316be8 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkFileExitAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkFileExitAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileExitAction.h" #include "internal/org_mitk_gui_qt_application_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkFileExitAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkFileExitAction.h index 7b52029d14c..314e571bf4a 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkFileExitAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkFileExitAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFILEEXITACTION_H_ #define QMITKFILEEXITACTION_H_ diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkFileOpenAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkFileOpenAction.cpp index 9531656d721..7ce48eaa8a3 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkFileOpenAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkFileOpenAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileOpenAction.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkFileOpenAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkFileOpenAction.h index 6351ce357af..9cce6c253ea 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkFileOpenAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkFileOpenAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFILEOPENACTION_H_ #define QMITKFILEOPENACTION_H_ diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkFileSaveAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkFileSaveAction.cpp index 01e7f01ba10..2902c411684 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkFileSaveAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkFileSaveAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileSaveAction.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkFileSaveAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkFileSaveAction.h index c4446468438..db5bcce6297 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkFileSaveAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkFileSaveAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFILESAVEACTION_H_ #define QMITKFILESAVEACTION_H_ diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkPreferencesDialog.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkPreferencesDialog.cpp index aa09757e03b..c033a7d94fa 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkPreferencesDialog.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkPreferencesDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPreferencesDialog.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkPreferencesDialog.h b/Plugins/org.mitk.gui.qt.application/src/QmitkPreferencesDialog.h index 2a1c32958c7..0f97f836596 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkPreferencesDialog.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkPreferencesDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef BERRYQMITKPREFERENCESDIALOG_H_ diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkRedoAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkRedoAction.cpp index 10f18abdfe4..cd85eba2036 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkRedoAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkRedoAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRedoAction.h" @@ -85,4 +81,4 @@ void QmitkRedoAction::Run() { MITK_ERROR << "No undo model instantiated"; } -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkRedoAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkRedoAction.h index 0ba700c582e..0ac47e1da9e 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkRedoAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkRedoAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkRedoAction_H_ #define QmitkRedoAction_H_ diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkStatusBar.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkStatusBar.cpp index afeef190488..6bb46e064d7 100755 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkStatusBar.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkStatusBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStatusBar.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkStatusBar.h b/Plugins/org.mitk.gui.qt.application/src/QmitkStatusBar.h index 2d47310634a..280c169aeed 100755 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkStatusBar.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkStatusBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSTATUSBAR_H diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkUndoAction.cpp b/Plugins/org.mitk.gui.qt.application/src/QmitkUndoAction.cpp index ee39f76729e..d43c6aa19b3 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkUndoAction.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkUndoAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUndoAction.h" @@ -85,4 +81,4 @@ void QmitkUndoAction::Run() { MITK_ERROR << "No undo model instantiated"; } -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.application/src/QmitkUndoAction.h b/Plugins/org.mitk.gui.qt.application/src/QmitkUndoAction.h index 65e93ce0fe0..a41af661f00 100644 --- a/Plugins/org.mitk.gui.qt.application/src/QmitkUndoAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/QmitkUndoAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUndoAction_H_ #define QmitkUndoAction_H_ diff --git a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkEditorsPreferencePage.cpp b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkEditorsPreferencePage.cpp index 3fbfa3a53cd..f4687375866 100644 --- a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkEditorsPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkEditorsPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkEditorsPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkEditorsPreferencePage.h b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkEditorsPreferencePage.h index 3421cee154b..43e79726cdf 100644 --- a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkEditorsPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkEditorsPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEDITORSPREFERENCEPAGE_H_ diff --git a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkGeneralPreferencePage.cpp b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkGeneralPreferencePage.cpp index 02afc531fd7..3d282cdf42a 100644 --- a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkGeneralPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkGeneralPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkGeneralPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkGeneralPreferencePage.h b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkGeneralPreferencePage.h index 31882e5f013..4c9af6f8900 100644 --- a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkGeneralPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkGeneralPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKGENERALPREFERENCEPAGE_H #define QMITKGENERALPREFERENCEPAGE_H diff --git a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkShowPreferencePageHandler.cpp b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkShowPreferencePageHandler.cpp index 82bdb03f305..5a5bc921753 100644 --- a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkShowPreferencePageHandler.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkShowPreferencePageHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkShowPreferencePageHandler.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkShowPreferencePageHandler.h b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkShowPreferencePageHandler.h index ed4c7049bf9..775a1a0db55 100644 --- a/Plugins/org.mitk.gui.qt.application/src/internal/QmitkShowPreferencePageHandler.h +++ b/Plugins/org.mitk.gui.qt.application/src/internal/QmitkShowPreferencePageHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSHOWPREFERENCEPAGEHANDLER_H #define QMITKSHOWPREFERENCEPAGEHANDLER_H diff --git a/Plugins/org.mitk.gui.qt.application/src/internal/org_mitk_gui_qt_application_Activator.cpp b/Plugins/org.mitk.gui.qt.application/src/internal/org_mitk_gui_qt_application_Activator.cpp index acc9147abc6..e8061f172f5 100644 --- a/Plugins/org.mitk.gui.qt.application/src/internal/org_mitk_gui_qt_application_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.application/src/internal/org_mitk_gui_qt_application_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_application_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.application/src/internal/org_mitk_gui_qt_application_Activator.h b/Plugins/org.mitk.gui.qt.application/src/internal/org_mitk_gui_qt_application_Activator.h index 58b57091121..f566d7c236e 100644 --- a/Plugins/org.mitk.gui.qt.application/src/internal/org_mitk_gui_qt_application_Activator.h +++ b/Plugins/org.mitk.gui.qt.application/src/internal/org_mitk_gui_qt_application_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.application/src/mitkIContextMenuAction.h b/Plugins/org.mitk.gui.qt.application/src/mitkIContextMenuAction.h index 18133dcdd57..ce1cd58e889 100644 --- a/Plugins/org.mitk.gui.qt.application/src/mitkIContextMenuAction.h +++ b/Plugins/org.mitk.gui.qt.application/src/mitkIContextMenuAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkIContextMenuAction_H_ #define mitkIContextMenuAction_H_ diff --git a/Plugins/org.mitk.gui.qt.basicimageprocessing/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.basicimageprocessing/manifest_headers.cmake index 1276fbfbfed..64dd130fc3c 100644 --- a/Plugins/org.mitk.gui.qt.basicimageprocessing/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.basicimageprocessing/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Basic Image Processing") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ; Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/QmitkBasicImageProcessingView.cpp b/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/QmitkBasicImageProcessingView.cpp index 99cac567200..521b2da18ac 100644 --- a/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/QmitkBasicImageProcessingView.cpp +++ b/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/QmitkBasicImageProcessingView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkBasicImageProcessingView.h" diff --git a/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/QmitkBasicImageProcessingView.h b/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/QmitkBasicImageProcessingView.h index 4b46841ef2f..b25c6f7448d 100644 --- a/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/QmitkBasicImageProcessingView.h +++ b/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/QmitkBasicImageProcessingView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QmitkBasicImageProcessingView_H__INCLUDED) #define QmitkBasicImageProcessingView_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/mitkBasicImageProcessingActivator.cpp b/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/mitkBasicImageProcessingActivator.cpp index 103d68d889e..ff7d01a472a 100644 --- a/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/mitkBasicImageProcessingActivator.cpp +++ b/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/mitkBasicImageProcessingActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBasicImageProcessingActivator.h" #include "QmitkBasicImageProcessingView.h" diff --git a/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/mitkBasicImageProcessingActivator.h b/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/mitkBasicImageProcessingActivator.h index 97571654be5..6046207f983 100644 --- a/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/mitkBasicImageProcessingActivator.h +++ b/Plugins/org.mitk.gui.qt.basicimageprocessing/src/internal/mitkBasicImageProcessingActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKBASICIMAGEPROCESSINGACTIVATOR_H #define MITKBASICIMAGEPROCESSINGACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTNormalizeView.cpp b/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTNormalizeView.cpp index 60d76076057..05c8fb560a6 100644 --- a/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTNormalizeView.cpp +++ b/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTNormalizeView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCESTNormalizeView.h" diff --git a/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTNormalizeView.h b/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTNormalizeView.h index b80b5633954..d5d08397870 100644 --- a/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTNormalizeView.h +++ b/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTNormalizeView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCESTNormalizeView_h #define QmitkCESTNormalizeView_h @@ -75,4 +71,4 @@ protected slots: mitk::NodePredicateBase::Pointer m_IsCESTImagePredicate; }; -#endif \ No newline at end of file +#endif diff --git a/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTStatisticsView.cpp b/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTStatisticsView.cpp index 7894ae0f055..8c7f134f547 100644 --- a/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTStatisticsView.cpp +++ b/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTStatisticsView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // itk #include "itksys/SystemTools.hxx" diff --git a/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTStatisticsView.h b/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTStatisticsView.h index 885e07898bd..aacc637cecf 100644 --- a/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTStatisticsView.h +++ b/Plugins/org.mitk.gui.qt.cest/src/internal/QmitkCESTStatisticsView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCESTStatisticsView_h diff --git a/Plugins/org.mitk.gui.qt.cest/src/internal/org_mitk_gui_qt_cest_Activator.cpp b/Plugins/org.mitk.gui.qt.cest/src/internal/org_mitk_gui_qt_cest_Activator.cpp index 7585ff884a2..5ad510bd5af 100644 --- a/Plugins/org.mitk.gui.qt.cest/src/internal/org_mitk_gui_qt_cest_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.cest/src/internal/org_mitk_gui_qt_cest_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_cest_Activator.h" #include "QmitkCESTStatisticsView.h" diff --git a/Plugins/org.mitk.gui.qt.cest/src/internal/org_mitk_gui_qt_cest_Activator.h b/Plugins/org.mitk.gui.qt.cest/src/internal/org_mitk_gui_qt_cest_Activator.h index 13f38cd035d..af9fdb3cc1d 100644 --- a/Plugins/org.mitk.gui.qt.cest/src/internal/org_mitk_gui_qt_cest_Activator.h +++ b/Plugins/org.mitk.gui.qt.cest/src/internal/org_mitk_gui_qt_cest_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_cest_Activator_h #define org_mitk_gui_qt_cest_Activator_h diff --git a/Plugins/org.mitk.gui.qt.chartExample/src/internal/QmitkChartExampleView.cpp b/Plugins/org.mitk.gui.qt.chartExample/src/internal/QmitkChartExampleView.cpp index 7b8d8d66cb5..efb4bc2fdf9 100644 --- a/Plugins/org.mitk.gui.qt.chartExample/src/internal/QmitkChartExampleView.cpp +++ b/Plugins/org.mitk.gui.qt.chartExample/src/internal/QmitkChartExampleView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include @@ -409,7 +405,7 @@ std::string QmitkChartExampleView::ConvertToText(std::vector numbers, std::string QmitkChartExampleView::ConvertToText(QVariantList list, std::string delimiter) const { std::ostringstream oss; - + if (!list.isEmpty()) { for (auto element : list) diff --git a/Plugins/org.mitk.gui.qt.chartExample/src/internal/QmitkChartExampleView.h b/Plugins/org.mitk.gui.qt.chartExample/src/internal/QmitkChartExampleView.h index d070a16f8d8..e691b6e0b8d 100644 --- a/Plugins/org.mitk.gui.qt.chartExample/src/internal/QmitkChartExampleView.h +++ b/Plugins/org.mitk.gui.qt.chartExample/src/internal/QmitkChartExampleView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkChartExample_h #define QmitkChartExample_h diff --git a/Plugins/org.mitk.gui.qt.chartExample/src/internal/org_mitk_gui_qt_chartExample_Activator.cpp b/Plugins/org.mitk.gui.qt.chartExample/src/internal/org_mitk_gui_qt_chartExample_Activator.cpp index 73ec95bf091..c511d873a83 100644 --- a/Plugins/org.mitk.gui.qt.chartExample/src/internal/org_mitk_gui_qt_chartExample_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.chartExample/src/internal/org_mitk_gui_qt_chartExample_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_chartExample_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.chartExample/src/internal/org_mitk_gui_qt_chartExample_Activator.h b/Plugins/org.mitk.gui.qt.chartExample/src/internal/org_mitk_gui_qt_chartExample_Activator.h index 88a0b4803cd..46ef88f8d01 100644 --- a/Plugins/org.mitk.gui.qt.chartExample/src/internal/org_mitk_gui_qt_chartExample_Activator.h +++ b/Plugins/org.mitk.gui.qt.chartExample/src/internal/org_mitk_gui_qt_chartExample_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_chartExample_Activator_h diff --git a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationRegionGrow.cpp b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationRegionGrow.cpp index adb6b346505..a64a782ba3d 100644 --- a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationRegionGrow.cpp +++ b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationRegionGrow.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // STD #include diff --git a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationRegionGrow.h b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationRegionGrow.h index 4e469251217..bca9dcd73e6 100644 --- a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationRegionGrow.h +++ b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationRegionGrow.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ClassificationRegionGrow_h #define ClassificationRegionGrow_h diff --git a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationSegmentation.cpp b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationSegmentation.cpp index 14ed589883e..1b466f9f583 100644 --- a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationSegmentation.cpp +++ b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationSegmentation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationSegmentation.h b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationSegmentation.h index cae4a59347f..3fce603c7d4 100644 --- a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationSegmentation.h +++ b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/ClassificationSegmentation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ClassificationSegmentation_h #define ClassificationSegmentation_h diff --git a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationregiongrow_Activator.cpp b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationregiongrow_Activator.cpp index fa6ce8555fe..d039ab6d190 100644 --- a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationregiongrow_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationregiongrow_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_classificationregiongrow_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationregiongrow_Activator.h b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationregiongrow_Activator.h index 3d5e22157c9..1edb59a1b80 100644 --- a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationregiongrow_Activator.h +++ b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationregiongrow_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_classificationregiongrow_Activator_h diff --git a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationsegmentation_Activator.cpp b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationsegmentation_Activator.cpp index c796fd6af2b..f32c3f30743 100644 --- a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationsegmentation_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationsegmentation_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_classificationsegmentation_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationsegmentation_Activator.h b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationsegmentation_Activator.h index d9c47656e92..31cb539b20e 100644 --- a/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationsegmentation_Activator.h +++ b/Plugins/org.mitk.gui.qt.classificationsegmentation/src/internal/org_mitk_gui_qt_classificationsegmentation_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_classificationsegmentation_Activator_h diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/QmitkCmdLineModuleMenuComboBox.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/QmitkCmdLineModuleMenuComboBox.cpp index aefae8f52d8..9cebf03f759 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/QmitkCmdLineModuleMenuComboBox.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/QmitkCmdLineModuleMenuComboBox.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCmdLineModuleMenuComboBox.h" #include diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/QmitkCmdLineModuleMenuComboBox.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/QmitkCmdLineModuleMenuComboBox.h index 881b532a81a..a861f55157a 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/QmitkCmdLineModuleMenuComboBox.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/QmitkCmdLineModuleMenuComboBox.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCMDLINEMODULEMENUCOMBOBOX_H #define QMITKCMDLINEMODULEMENUCOMBOBOX_H diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesPreferencesPage.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesPreferencesPage.cpp index 78dd99e8779..6f5b9ee3a56 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesPreferencesPage.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesPreferencesPage.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "CommandLineModulesPreferencesPage.h" #include "CommandLineModulesViewConstants.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesPreferencesPage.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesPreferencesPage.h index 118435bbecb..91e5e1eb9fc 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesPreferencesPage.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesPreferencesPage.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef COMMANDLINEMODULESPREFERENCESPAGE_H #define COMMANDLINEMODULESPREFERENCESPAGE_H diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesView.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesView.cpp index 27d6059f2fa..deccce88e06 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesView.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesView.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesView.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesView.h index c44f3865aaf..4207c1781d1 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesView.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesView.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CommandLineModulesView_h #define CommandLineModulesView_h diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewConstants.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewConstants.cpp index 4ea62240426..8b2532e75e3 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewConstants.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewConstants.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "CommandLineModulesViewConstants.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewConstants.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewConstants.h index 4b309f33443..4fedb1104e9 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewConstants.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewConstants.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CommandLineModulesViewConstants_h #define CommandLineModulesViewConstants_h diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewControls.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewControls.cpp index 3055c4d660c..0cfa06f4758 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewControls.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewControls.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "CommandLineModulesViewControls.h" #include diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewControls.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewControls.h index 5f9f5fcb508..f4bec90d4e2 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewControls.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/CommandLineModulesViewControls.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef CommandLineModulesViewControls_h #define CommandLineModulesViewControls_h diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleFactoryGui.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleFactoryGui.cpp index 5b64de29b22..07ec529af62 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleFactoryGui.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleFactoryGui.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCmdLineModuleFactoryGui.h" #include "QmitkCmdLineModuleGui.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleFactoryGui.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleFactoryGui.h index e4cd3ac66a3..7b273c407fb 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleFactoryGui.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleFactoryGui.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCmdLineModuleFactoryGui_h #define QmitkCmdLineModuleFactoryGui_h diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleGui.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleGui.cpp index 1a5b915d4a4..0aae6cd5708 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleGui.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleGui.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCmdLineModuleGui.h" #include "QmitkUiLoader.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleGui.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleGui.h index 3948d042987..62c1a91bf19 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleGui.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleGui.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkCmdLineModuleGui_h #define QmitkCmdLineModuleGui_h diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleRunner.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleRunner.cpp index 70d436e6873..e78f9b212b5 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleRunner.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleRunner.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCmdLineModuleRunner.h" #include "ui_QmitkCmdLineModuleProgressWidget.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleRunner.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleRunner.h index d1cdecfcef3..c638c1f18c8 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleRunner.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkCmdLineModuleRunner.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCMDLINEMODULERUNNER_H #define QMITKCMDLINEMODULERUNNER_H diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkDirectoryListWidget.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkDirectoryListWidget.cpp index a275a4108c7..1b47794cf09 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkDirectoryListWidget.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkDirectoryListWidget.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDirectoryListWidget.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkDirectoryListWidget.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkDirectoryListWidget.h index 34483c30987..fa4c7baa759 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkDirectoryListWidget.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkDirectoryListWidget.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDIRECTORYLISTWIDGET_H #define QMITKDIRECTORYLISTWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkFileListWidget.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkFileListWidget.cpp index a1bf1bdec23..90fb7991cf0 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkFileListWidget.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkFileListWidget.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileListWidget.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkFileListWidget.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkFileListWidget.h index 31fa33081ca..b90ff8c2a81 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkFileListWidget.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkFileListWidget.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFILELISTWIDGET_H #define QMITKFILELISTWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkUiLoader.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkUiLoader.cpp index 896840a49a5..715a42da4ec 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkUiLoader.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkUiLoader.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUiLoader.h" #include "QmitkDataStorageComboBoxWithSelectNone.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkUiLoader.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkUiLoader.h index bcd225048cb..27711571b47 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkUiLoader.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/QmitkUiLoader.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUiLoader_h #define QmitkUiLoader_h diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/org_mitk_gui_qt_cmdlinemodules_Activator.cpp b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/org_mitk_gui_qt_cmdlinemodules_Activator.cpp index cb7ad3a54ae..f6213a83dc9 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/org_mitk_gui_qt_cmdlinemodules_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/org_mitk_gui_qt_cmdlinemodules_Activator.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_cmdlinemodules_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/org_mitk_gui_qt_cmdlinemodules_Activator.h b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/org_mitk_gui_qt_cmdlinemodules_Activator.h index ce32167ca00..5e58f00e7aa 100644 --- a/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/org_mitk_gui_qt_cmdlinemodules_Activator.h +++ b/Plugins/org.mitk.gui.qt.cmdlinemodules/src/internal/org_mitk_gui_qt_cmdlinemodules_Activator.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_cmdlinemodules_Activator_h diff --git a/Plugins/org.mitk.gui.qt.common.legacy/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.common.legacy/manifest_headers.cmake index b9d31fb32e5..525768d8037 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.common.legacy/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "Legacy Plug-in for QmitkStdMultiWidgetEditor") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.stdmultiwidgeteditor) diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality.cpp b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality.cpp index c723116ce4b..a18f8f3b53c 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality.cpp +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFunctionality.h" #include "internal/QmitkFunctionalityUtil.h" diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality.h b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality.h index 1ddd364998a..0565457e636 100755 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality.h +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFUNCTIONALITY_H_ #define QMITKFUNCTIONALITY_H_ diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality2.cpp b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality2.cpp index e00d9f49000..cc16019d2fa 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality2.cpp +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionality2.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFunctionality.h" #include "internal/QmitkFunctionalityUtil.h" diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionalityCoordinator.cpp b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionalityCoordinator.cpp index 4da27d32527..8caec50f338 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionalityCoordinator.cpp +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionalityCoordinator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFunctionalityCoordinator.h" #include "QmitkFunctionality.h" diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionalityCoordinator.h b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionalityCoordinator.h index 34b7a2ee7b1..c8b10752226 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionalityCoordinator.h +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/QmitkFunctionalityCoordinator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkFunctionalityCoordinator_h diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkCommonLegacyActivator.cpp b/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkCommonLegacyActivator.cpp index 05cef478b44..38dd4642cd1 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkCommonLegacyActivator.cpp +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkCommonLegacyActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCommonLegacyActivator.h" #include diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkCommonLegacyActivator.h b/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkCommonLegacyActivator.h index 2d416649869..49407c0bc39 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkCommonLegacyActivator.h +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkCommonLegacyActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCOMMONLEGACYACTIVATOR_H_ diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkFunctionalityUtil.cpp b/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkFunctionalityUtil.cpp index 3d63594e208..dcff198c77b 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkFunctionalityUtil.cpp +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkFunctionalityUtil.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFunctionalityUtil.h" diff --git a/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkFunctionalityUtil.h b/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkFunctionalityUtil.h index 86c952e934d..c59c55b8bb6 100644 --- a/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkFunctionalityUtil.h +++ b/Plugins/org.mitk.gui.qt.common.legacy/src/internal/QmitkFunctionalityUtil.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFUNCTIONALITYUTIL_H diff --git a/Plugins/org.mitk.gui.qt.common/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.common/manifest_headers.cmake index 785ba2d40fc..b7e17e79ce7 100644 --- a/Plugins/org.mitk.gui.qt.common/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.common/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "Common MITK Qt classes") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.common) diff --git a/Plugins/org.mitk.gui.qt.common/src/ImporterUtil.h b/Plugins/org.mitk.gui.qt.common/src/ImporterUtil.h index bb269e9556c..483df419f14 100644 --- a/Plugins/org.mitk.gui.qt.common/src/ImporterUtil.h +++ b/Plugins/org.mitk.gui.qt.common/src/ImporterUtil.h @@ -1,4 +1,45 @@ -#pragma once +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +#ifndef ImporterUtil_h +#define ImporterUtil_h #include @@ -11,3 +52,5 @@ class ImporterUtil { return string.toLocal8Bit().toStdString(); } }; + +#endif diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractMultiWidgetEditor.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractMultiWidgetEditor.cpp index f5d57b8c9ab..f0f320bfb75 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractMultiWidgetEditor.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractMultiWidgetEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAbstractMultiWidgetEditor.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractMultiWidgetEditor.h b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractMultiWidgetEditor.h index f90972722e7..435b6b5b229 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractMultiWidgetEditor.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractMultiWidgetEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTMULTIWIDGETEDITOR_H #define QMITKABSTRACTMULTIWIDGETEDITOR_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractNodeSelectionWidget.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractNodeSelectionWidget.cpp index 68c91e55f0d..8b94a368198 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractNodeSelectionWidget.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractNodeSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAbstractNodeSelectionWidget.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractNodeSelectionWidget.h b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractNodeSelectionWidget.h index e146771e288..f3cfb28a2bf 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractNodeSelectionWidget.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractNodeSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_ABSTRACT_NODE_SELECTION_WIDGET_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractRenderEditor.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractRenderEditor.cpp index 472c8358c34..ab915d6eb44 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractRenderEditor.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractRenderEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAbstractRenderEditor.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractRenderEditor.h b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractRenderEditor.h index 6e105a38cb0..6b53464b0b9 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractRenderEditor.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractRenderEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTRENDEREDITOR_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractView.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractView.cpp index fc92092b268..e333ed3532a 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractView.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAbstractView.h" #include "QmitkDataNodeSelectionProvider.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractView.h b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractView.h index 75fff110117..9cd2453c304 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractView.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkAbstractView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABSTRACTVIEW_H_ #define QMITKABSTRACTVIEW_H_ diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkDataNodeSelectionProvider.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkDataNodeSelectionProvider.cpp index 2d953ff82dc..71fa6b79524 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkDataNodeSelectionProvider.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkDataNodeSelectionProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataNodeSelectionProvider.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkDataNodeSelectionProvider.h b/Plugins/org.mitk.gui.qt.common/src/QmitkDataNodeSelectionProvider.h index 2775a80e779..eece92e440b 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkDataNodeSelectionProvider.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkDataNodeSelectionProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATATREENODESELECTIONPROVIDER_H_ diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkDnDFrameWidget.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkDnDFrameWidget.cpp index 25ff56a5436..f48338737fb 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkDnDFrameWidget.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkDnDFrameWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkDnDFrameWidget.h b/Plugins/org.mitk.gui.qt.common/src/QmitkDnDFrameWidget.h index acc5620398c..f5f493415f9 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkDnDFrameWidget.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkDnDFrameWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDndFrameWidget_h #define QmitkDndFrameWidget_h diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkMultiNodeSelectionWidget.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkMultiNodeSelectionWidget.cpp index ac829d2695f..4184b3183a0 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkMultiNodeSelectionWidget.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkMultiNodeSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMultiNodeSelectionWidget.h" @@ -251,4 +247,4 @@ void QmitkMultiNodeSelectionWidget::NodeRemovedFromStorage(const mitk::DataNode* { this->OnClearSelection(node); } -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkMultiNodeSelectionWidget.h b/Plugins/org.mitk.gui.qt.common/src/QmitkMultiNodeSelectionWidget.h index 1c798cabe22..0662c56f30a 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkMultiNodeSelectionWidget.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkMultiNodeSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_MULTI_NODE_SELECTION_WIDGET_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkMultiWidgetDecorationManager.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkMultiWidgetDecorationManager.cpp index 991254cf53c..a337cd5ad75 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkMultiWidgetDecorationManager.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkMultiWidgetDecorationManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMultiWidgetDecorationManager.h" @@ -123,7 +119,7 @@ void QmitkMultiWidgetDecorationManager::ShowDecorations(bool show, const QString } bool QmitkMultiWidgetDecorationManager::IsDecorationVisible(const QString& decoration) const -{ +{ if (mitk::IRenderWindowPart::DECORATION_BORDER == decoration) { return AreAllColoredRectanglesVisible(); diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkMultiWidgetDecorationManager.h b/Plugins/org.mitk.gui.qt.common/src/QmitkMultiWidgetDecorationManager.h index c0f60c5d545..e48319e7bb3 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkMultiWidgetDecorationManager.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkMultiWidgetDecorationManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMULTIWIDGETDECORATIONMANAGER_H #define QMITKMULTIWIDGETDECORATIONMANAGER_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionButton.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionButton.cpp index 981651861d7..0cd02b3ae49 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionButton.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionButton.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeSelectionButton.h" @@ -140,7 +136,7 @@ void QmitkNodeSelectionButton::paintEvent(QPaintEvent *p) auto styleManager = context->getService(styleManagerRef); stylesheet = styleManager->GetStylesheet(); } - + QPushButton::paintEvent(p); QPainter painter(this); diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionButton.h b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionButton.h index 8214b978e4e..376877677d1 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionButton.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionButton.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_NODE_SELECTION_BUTTON_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionDialog.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionDialog.cpp index aff51535dce..e98c808a832 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionDialog.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeSelectionDialog.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionDialog.h b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionDialog.h index 480655c53c1..2d48d7e0473 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionDialog.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_NODE_SELECTION_DIALOG_H #define QMITK_NODE_SELECTION_DIALOG_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionPreferenceHelper.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionPreferenceHelper.cpp index 1e739cc7056..442e8f9a379 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionPreferenceHelper.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionPreferenceHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeSelectionPreferenceHelper.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionPreferenceHelper.h b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionPreferenceHelper.h index 09bc4a719c2..ecfdc573f01 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionPreferenceHelper.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkNodeSelectionPreferenceHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __QMITK_NODE_SELECTION_PREFERENCE_HELPER_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkSelectionServiceConnector.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkSelectionServiceConnector.cpp index c670a53cad7..674d0e97588 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkSelectionServiceConnector.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkSelectionServiceConnector.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk gui qt common plugin #include "QmitkSelectionServiceConnector.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkSelectionServiceConnector.h b/Plugins/org.mitk.gui.qt.common/src/QmitkSelectionServiceConnector.h index e784ff80d7d..f79dfa3420a 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkSelectionServiceConnector.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkSelectionServiceConnector.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSELECTIONSERVICECONNECTOR_H #define QMITKSELECTIONSERVICECONNECTOR_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkSimpleTextOverlayWidget.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkSimpleTextOverlayWidget.cpp index 56c58277792..c8832a3fa5e 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkSimpleTextOverlayWidget.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkSimpleTextOverlayWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSimpleTextOverlayWidget.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkSimpleTextOverlayWidget.h b/Plugins/org.mitk.gui.qt.common/src/QmitkSimpleTextOverlayWidget.h index 53491633671..d7ae90f67af 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkSimpleTextOverlayWidget.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkSimpleTextOverlayWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_SIMPLE_TEXT_OVERLAY_WIDGET_H #define QMITK_SIMPLE_TEXT_OVERLAY_WIDGET_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkSingleNodeSelectionWidget.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkSingleNodeSelectionWidget.cpp index 737924a397d..9042b293978 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkSingleNodeSelectionWidget.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkSingleNodeSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSingleNodeSelectionWidget.h" @@ -246,4 +242,4 @@ void QmitkSingleNodeSelectionWidget::NodeRemovedFromStorage(const mitk::DataNode emit CurrentSelectionChanged(newEmission); this->UpdateInfo(); } -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkSingleNodeSelectionWidget.h b/Plugins/org.mitk.gui.qt.common/src/QmitkSingleNodeSelectionWidget.h index 36499a12a8f..f2d67dffbb9 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkSingleNodeSelectionWidget.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkSingleNodeSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_SINGLE_NODE_SELECTION_WIDGET_H diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkSliceNavigationListener.cpp b/Plugins/org.mitk.gui.qt.common/src/QmitkSliceNavigationListener.cpp index 24c80c153d4..4e8df798a0b 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkSliceNavigationListener.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkSliceNavigationListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkRenderWindow.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/QmitkSliceNavigationListener.h b/Plugins/org.mitk.gui.qt.common/src/QmitkSliceNavigationListener.h index 63adab41f32..10ffebfe756 100644 --- a/Plugins/org.mitk.gui.qt.common/src/QmitkSliceNavigationListener.h +++ b/Plugins/org.mitk.gui.qt.common/src/QmitkSliceNavigationListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_SLICE_NAVIGATION_LISTENER_H diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkCommonActivator.cpp b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkCommonActivator.cpp index 188d1d67385..bf8b062bb7c 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkCommonActivator.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkCommonActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCommonActivator.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkCommonActivator.h b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkCommonActivator.h index 2a99aaa98dc..9b6e2138ccc 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkCommonActivator.h +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkCommonActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCOMMONACTIVATOR_H_ diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeItemModel.cpp b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeItemModel.cpp index dd87ed4af83..9732c6a322e 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeItemModel.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeItemModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataNodeItemModel.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeItemModel.h b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeItemModel.h index 01ff652957b..3b250d58f94 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeItemModel.h +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeItemModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEITEMMODEL_H diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeSelection.cpp b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeSelection.cpp index b3d11c79a4d..944bf65b656 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeSelection.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeSelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataNodeSelection.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeSelection.h b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeSelection.h index 7992ef19894..2581c697579 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeSelection.h +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkDataNodeSelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionConstants.cpp b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionConstants.cpp index 2f6a3ceaf1a..4692c11a9ee 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionConstants.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeSelectionConstants.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionConstants.h b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionConstants.h index 11195635af1..61196de2612 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionConstants.h +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITK_NODE_SELECTION_CONSTANTS_H_ #define _QMITK_NODE_SELECTION_CONSTANTS_H_ diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionListItemWidget.cpp b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionListItemWidget.cpp index 4f3c1429557..a18f4f833af 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionListItemWidget.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionListItemWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeSelectionListItemWidget.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionListItemWidget.h b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionListItemWidget.h index 94d40eea398..95278236030 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionListItemWidget.h +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionListItemWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_NODE_SELECTION_LIST_ITEM_WIDGET_H diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionPreferencePage.cpp b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionPreferencePage.cpp index d70886a4e70..3223a49e832 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeSelectionPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionPreferencePage.h b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionPreferencePage.h index 45269a4b8c2..679b365b076 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkNodeSelectionPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __QMITK_NODE_SELECTION_PREFERENCE_PAGE_H diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkViewCoordinator.cpp b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkViewCoordinator.cpp index ec3c8cc14ed..76604ed0033 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkViewCoordinator.cpp +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkViewCoordinator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkViewCoordinator.h" #include "QmitkAbstractView.h" diff --git a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkViewCoordinator.h b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkViewCoordinator.h index 1be33f4a812..6d057627385 100644 --- a/Plugins/org.mitk.gui.qt.common/src/internal/QmitkViewCoordinator.h +++ b/Plugins/org.mitk.gui.qt.common/src/internal/QmitkViewCoordinator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkViewCoordinator_h diff --git a/Plugins/org.mitk.gui.qt.common/testing/manifest.cpp b/Plugins/org.mitk.gui.qt.common/testing/manifest.cpp index 1506c2ff1ff..53232370939 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/manifest.cpp +++ b/Plugins/org.mitk.gui.qt.common/testing/manifest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.common/testing/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.common/testing/manifest_headers.cmake index 7b73fbce224..43e03a0eb8a 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.common/testing/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Common GUI Qt Tests") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.blueberry.uitest org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/QmitkQtCommonTestSuite.cpp b/Plugins/org.mitk.gui.qt.common/testing/src/QmitkQtCommonTestSuite.cpp index 415de7200c0..b134a8221cf 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/QmitkQtCommonTestSuite.cpp +++ b/Plugins/org.mitk.gui.qt.common/testing/src/QmitkQtCommonTestSuite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkQtCommonTestSuite.h" diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/QmitkQtCommonTestSuite.h b/Plugins/org.mitk.gui.qt.common/testing/src/QmitkQtCommonTestSuite.h index 80697e6967b..86b28a4edc7 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/QmitkQtCommonTestSuite.h +++ b/Plugins/org.mitk.gui.qt.common/testing/src/QmitkQtCommonTestSuite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKQTCOMMONTESTSUITE_H_ #define QMITKQTCOMMONTESTSUITE_H_ diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkFunctionalityTest.cpp b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkFunctionalityTest.cpp index e64a0a2894f..542ac391607 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkFunctionalityTest.cpp +++ b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkFunctionalityTest.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFunctionalityTest.h" diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkFunctionalityTest.h b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkFunctionalityTest.h index fd95e52fcba..66395f8a998 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkFunctionalityTest.h +++ b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkFunctionalityTest.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFUNCTIONALITYTEST_H_ diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkMockFunctionality.cpp b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkMockFunctionality.cpp index cdcd75c3c3d..0a2f9b11526 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkMockFunctionality.cpp +++ b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkMockFunctionality.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMockFunctionality.h" diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkMockFunctionality.h b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkMockFunctionality.h index 9d2ae6af756..f419eaf1d31 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkMockFunctionality.h +++ b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkMockFunctionality.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMOCKFUNCTIONALITY_H_ diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkUiApiTestSuite.cpp b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkUiApiTestSuite.cpp index dd4fa62de5a..f35fa6e463f 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkUiApiTestSuite.cpp +++ b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkUiApiTestSuite.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUiApiTestSuite.h" diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkUiApiTestSuite.h b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkUiApiTestSuite.h index 2c2e8611470..6791905d4cf 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkUiApiTestSuite.h +++ b/Plugins/org.mitk.gui.qt.common/testing/src/api/QmitkUiApiTestSuite.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUIAPITESTSUITE_H_ diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.common/testing/src/internal/mitkPluginActivator.cpp index 1d72542426b..ca10365e4c0 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.common/testing/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "../QmitkQtCommonTestSuite.h" diff --git a/Plugins/org.mitk.gui.qt.common/testing/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.common/testing/src/internal/mitkPluginActivator.h index 17edf0f815e..f188e754ae6 100644 --- a/Plugins/org.mitk.gui.qt.common/testing/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.common/testing/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.coreapplication/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.coreapplication/manifest_headers.cmake index ab0cc3127cb..cb1d3dfe7d0 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.coreapplication/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK Qt CoreApp application") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.application) diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkActionBarAdvisor.cpp b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkActionBarAdvisor.cpp index c08a3fbb1e9..0cf1e7fd6f2 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkActionBarAdvisor.cpp +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkActionBarAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkActionBarAdvisor.h" diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkActionBarAdvisor.h b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkActionBarAdvisor.h index 73a777cb5d4..43d30bc909f 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkActionBarAdvisor.h +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkActionBarAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKACTIONBARADVISOR_H_ #define QMITKACTIONBARADVISOR_H_ diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkCoreApplication.cpp b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkCoreApplication.cpp index ea4773e84a8..415eb1f0bb2 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkCoreApplication.cpp +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkCoreApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCoreApplication.h" diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkCoreApplication.h b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkCoreApplication.h index 7d5dbe92057..879ec77ef10 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkCoreApplication.h +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkCoreApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCOREAPPLICATION_H_ #define QMITKCOREAPPLICATION_H_ diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkDefaultPerspective.cpp b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkDefaultPerspective.cpp index cf73d673098..4e260859035 100755 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkDefaultPerspective.cpp +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkDefaultPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDefaultPerspective.h" diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkDefaultPerspective.h b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkDefaultPerspective.h index 0f141e59b50..7b0acb02429 100755 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkDefaultPerspective.h +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkDefaultPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDEFAULTPERSPECTIVE_H_ diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchAdvisor.cpp b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchAdvisor.cpp index 610202e7884..be05bb4ccff 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchAdvisor.cpp +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkWorkbenchAdvisor.h" diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchAdvisor.h b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchAdvisor.h index 931ee761bdc..5136c8f2811 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchAdvisor.h +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKWORKBENCHADVISOR_H_ #define QMITKWORKBENCHADVISOR_H_ diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchWindowAdvisor.cpp b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchWindowAdvisor.cpp index 463b5888be0..fd3456a711f 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchWindowAdvisor.cpp +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchWindowAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkWorkbenchWindowAdvisor.h" #include "QmitkActionBarAdvisor.h" diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchWindowAdvisor.h b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchWindowAdvisor.h index 2b6e84e5cc5..91479e6aca9 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchWindowAdvisor.h +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/QmitkWorkbenchWindowAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKWORKBENCHWINDOWADVISOR_H_ #define QMITKWORKBENCHWINDOWADVISOR_H_ diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/org_mitk_gui_qt_coreapplication_Activator.cpp b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/org_mitk_gui_qt_coreapplication_Activator.cpp index e6f3cc34823..90ff7b09de1 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/org_mitk_gui_qt_coreapplication_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/org_mitk_gui_qt_coreapplication_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_coreapplication_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/org_mitk_gui_qt_coreapplication_Activator.h b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/org_mitk_gui_qt_coreapplication_Activator.h index bc596873e19..376927bacba 100644 --- a/Plugins/org.mitk.gui.qt.coreapplication/src/internal/org_mitk_gui_qt_coreapplication_Activator.h +++ b/Plugins/org.mitk.gui.qt.coreapplication/src/internal/org_mitk_gui_qt_coreapplication_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.datamanager/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.datamanager/manifest_headers.cmake index c72b4ecb981..e431f308400 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.datamanager/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Data Manager") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.application org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerHotkeysPrefPage.cpp b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerHotkeysPrefPage.cpp index 336a07e7993..7f1ac11d7a1 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerHotkeysPrefPage.cpp +++ b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerHotkeysPrefPage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataManagerHotkeysPrefPage.h" diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerHotkeysPrefPage.h b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerHotkeysPrefPage.h index 42d5b1e1ff8..ea2f5d3efcc 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerHotkeysPrefPage.h +++ b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerHotkeysPrefPage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATAMANAGERHOTKEYSPREFPAGE_H #define QMITKDATAMANAGERHOTKEYSPREFPAGE_H diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerPreferencePage.cpp b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerPreferencePage.cpp index 8e58ac714b5..cc3a9aab2d0 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataManagerPreferencePage.h" #include "QmitkDataManagerView.h" diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerPreferencePage.h b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerPreferencePage.h index ea80139eea7..19dcb176cd6 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATAMANAGERPREFERENCEPAGE_H_ diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerView.cpp b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerView.cpp index 489f8367d9b..d1ac5f23f57 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerView.cpp +++ b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataManagerView.h" diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerView.h b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerView.h index 8974d8a1de6..cf6e3fd0d16 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerView.h +++ b/Plugins/org.mitk.gui.qt.datamanager/src/QmitkDataManagerView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATAMANAGERVIEW_H #define QMITKDATAMANAGERVIEW_H diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/berrySingleNodeSelection.cpp b/Plugins/org.mitk.gui.qt.datamanager/src/berrySingleNodeSelection.cpp index 7fae9602999..ac7f18198c4 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/berrySingleNodeSelection.cpp +++ b/Plugins/org.mitk.gui.qt.datamanager/src/berrySingleNodeSelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "berrySingleNodeSelection.h" diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/berrySingleNodeSelection.h b/Plugins/org.mitk.gui.qt.datamanager/src/berrySingleNodeSelection.h index f9ce9d5b88d..6ae632ca386 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/berrySingleNodeSelection.h +++ b/Plugins/org.mitk.gui.qt.datamanager/src/berrySingleNodeSelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSINGLENODESELECTION_H_ #define QMITKSINGLENODESELECTION_H_ diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkDataManagerItemDelegate.cpp b/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkDataManagerItemDelegate.cpp index e092f348393..fc48fd63123 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkDataManagerItemDelegate.cpp +++ b/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkDataManagerItemDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "QmitkDataManagerItemDelegate.h" diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkDataManagerItemDelegate.h b/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkDataManagerItemDelegate.h index 82eefdaec44..937925a3eb8 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkDataManagerItemDelegate.h +++ b/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkDataManagerItemDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDataManagerItemDelegate_h #define QmitkDataManagerItemDelegate_h diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkNodeTableViewKeyFilter.cpp b/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkNodeTableViewKeyFilter.cpp index f9c90b8740e..3360f2b2769 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkNodeTableViewKeyFilter.cpp +++ b/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkNodeTableViewKeyFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkNodeTableViewKeyFilter.h" #include "../QmitkDataManagerView.h" diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkNodeTableViewKeyFilter.h b/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkNodeTableViewKeyFilter.h index c42fdf2fc4b..8c3c619dda6 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkNodeTableViewKeyFilter.h +++ b/Plugins/org.mitk.gui.qt.datamanager/src/internal/QmitkNodeTableViewKeyFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKNODETABLEVIEWKEYFILTER_H #define QMITKNODETABLEVIEWKEYFILTER_H diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.datamanager/src/internal/mitkPluginActivator.cpp index a6e2cc69c87..c4608ab12a7 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.datamanager/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "../QmitkDataManagerHotkeysPrefPage.h" #include "../QmitkDataManagerPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.datamanager/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.datamanager/src/internal/mitkPluginActivator.h index ceaa69f2c09..8a3e2124ca0 100644 --- a/Plugins/org.mitk.gui.qt.datamanager/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.datamanager/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.datamanagerlight/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.datamanagerlight/manifest_headers.cmake index fe45140ebbb..34dbec6092d 100644 --- a/Plugins/org.mitk.gui.qt.datamanagerlight/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.datamanagerlight/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Data Manager Light") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/QmitkDataManagerLightView.cpp b/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/QmitkDataManagerLightView.cpp index 508b0b96d07..aa40acf34a4 100644 --- a/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/QmitkDataManagerLightView.cpp +++ b/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/QmitkDataManagerLightView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataManagerLightView.h" #include "mitkNodePredicateDataType.h" diff --git a/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/QmitkDataManagerLightView.h b/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/QmitkDataManagerLightView.h index b1cdae0b3f1..6bd2c1e7bc7 100644 --- a/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/QmitkDataManagerLightView.h +++ b/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/QmitkDataManagerLightView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDataManagerLightView_H_ #define QmitkDataManagerLightView_H_ diff --git a/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/mitkPluginActivator.cpp index cedf1082819..775899c73c2 100644 --- a/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkDataManagerLightView.h" diff --git a/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/mitkPluginActivator.h index fc3a679b01f..30ce98f6413 100644 --- a/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.datamanagerlight/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/QmitkDataStorageViewerTestView.cpp b/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/QmitkDataStorageViewerTestView.cpp index 902d116470e..16c0783ef53 100644 --- a/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/QmitkDataStorageViewerTestView.cpp +++ b/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/QmitkDataStorageViewerTestView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // data storage viewer test plugin #include "QmitkDataStorageViewerTestView.h" @@ -185,7 +181,7 @@ void QmitkDataStorageViewerTestView::SetAsSelectionListener3(bool checked) { if (checked) { - m_SelectionServiceConnector3->AddPostSelectionListener(GetSite()->GetWorkbenchWindow()->GetSelectionService()); + m_SelectionServiceConnector3->AddPostSelectionListener(GetSite()->GetWorkbenchWindow()->GetSelectionService()); connect(m_SelectionServiceConnector3.get(), &QmitkSelectionServiceConnector::ServiceSelectionChanged, m_Controls.singleSlot, &QmitkSingleNodeSelectionWidget::SetCurrentSelection); } else diff --git a/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/QmitkDataStorageViewerTestView.h b/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/QmitkDataStorageViewerTestView.h index 71d697cbeeb..ff4465af2e5 100644 --- a/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/QmitkDataStorageViewerTestView.h +++ b/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/QmitkDataStorageViewerTestView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASTORAGEVIEWERTESTVIEW_H #define QMITKDATASTORAGEVIEWERTESTVIEW_H diff --git a/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/mitkPluginActivator.cpp index deb5df0dc09..a25938f2559 100644 --- a/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkDataStorageViewerTestView.h" diff --git a/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/mitkPluginActivator.h index 080450ba33a..7bd41c87b1b 100644 --- a/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.datastorageviewertest/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.dicom/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.dicom/manifest_headers.cmake index 8e156520f99..bbb688b46e6 100644 --- a/Plugins/org.mitk.gui.qt.dicom/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.dicom/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "Dicom") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/DicomEventHandler.cpp b/Plugins/org.mitk.gui.qt.dicom/src/internal/DicomEventHandler.cpp index 38f1e9f0250..666878123a8 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/DicomEventHandler.cpp +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/DicomEventHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "DicomEventHandler.h" diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/DicomEventHandler.h b/Plugins/org.mitk.gui.qt.dicom/src/internal/DicomEventHandler.h index 22e6ca0b98f..0af96cadbb2 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/DicomEventHandler.h +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/DicomEventHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef DicomEventHandler_h #define DicomEventHandler_h @@ -62,4 +58,4 @@ class DicomEventHandler : public QObject */ void OnSignalRemoveSeriesFromStorage(const ctkEvent& ctkEvent); }; -#endif // QmitkDicomEventHandlerBuilder_h \ No newline at end of file +#endif // QmitkDicomEventHandlerBuilder_h diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomBrowser.cpp b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomBrowser.cpp index 6951b1e4986..c3fdd56d9dc 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomBrowser.cpp +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomBrowser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkDicomBrowser.h" diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomBrowser.h b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomBrowser.h index 92464315911..212073f4038 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomBrowser.h +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomBrowser.h @@ -1,18 +1,14 @@ -/*========================================================================= +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDicomBrowser_h #define QmitkDicomBrowser_h diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDataEventPublisher.cpp b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDataEventPublisher.cpp index 25ae2f29117..6e29e1169a6 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDataEventPublisher.cpp +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDataEventPublisher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDicomDataEventPublisher.h" #include @@ -50,4 +46,4 @@ void QmitkDicomDataEventPublisher::PublishSignals(ctkPluginContext* context) eventAdmin->publishSignal(this, SIGNAL(SignalAddSeriesToDataManager(ctkDictionary)), "org/mitk/gui/qt/dicom/DELETED"); } -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDataEventPublisher.h b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDataEventPublisher.h index 6399c04c561..f9a764f2c79 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDataEventPublisher.h +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDataEventPublisher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDicomDataEventPublisher_H #define QmitkDicomDataEventPublisher_H @@ -50,4 +46,4 @@ class QmitkDicomDataEventPublisher : public QObject void SignalRemoveSeriesFromStorage(const ctkDictionary&); }; -#endif // QmitkDicomDataEventPublisher_H \ No newline at end of file +#endif // QmitkDicomDataEventPublisher_H diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDirectoryListener.cpp b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDirectoryListener.cpp index d2674c05a70..50458cea84e 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDirectoryListener.cpp +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDirectoryListener.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDicomDirectoryListener.h" #include diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDirectoryListener.h b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDirectoryListener.h index d47d220f590..fa915ecc13e 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDirectoryListener.h +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomDirectoryListener.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDicomDirectoryListener_h #define QmitkDicomDirectoryListener_h @@ -121,4 +117,4 @@ public slots: bool m_IsListening; }; -#endif // QmitkDicomListener_h \ No newline at end of file +#endif // QmitkDicomListener_h diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomPreferencePage.cpp b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomPreferencePage.cpp index 87d082cd7ed..8bd55f20426 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDicomPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomPreferencePage.h b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomPreferencePage.h index 61ca149a60e..9e16364ea8a 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkDicomPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDicomPreferencePage_h #define QmitkDicomPreferencePage_h @@ -72,4 +68,4 @@ protected slots: void DefaultButtonPushed(); void PathSelectButtonPushed(); }; -#endif // QmitkQmitkDicomPreferencePage_h \ No newline at end of file +#endif // QmitkQmitkDicomPreferencePage_h diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncher.cpp b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncher.cpp index e20bca4babf..d632bb6237b 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncher.cpp +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncher.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStoreSCPLauncher.h" #include #include diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncher.h b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncher.h index 385d9dc20f6..77c00152ebc 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncher.h +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncher.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkStoreSCPLauncher_h #define QmitkStoreSCPLauncher_h @@ -114,4 +110,4 @@ public slots: QStringList m_ArgumentList; QStringList m_ImportFilesList; }; -#endif //QmitkStoreSCPLauncher_h \ No newline at end of file +#endif //QmitkStoreSCPLauncher_h diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncherBuilder.cpp b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncherBuilder.cpp index 39da9216da8..4ba5b568607 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncherBuilder.cpp +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncherBuilder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStoreSCPLauncherBuilder.h" @@ -106,4 +102,4 @@ QString* QmitkStoreSCPLauncherBuilder::GetMode() QString* QmitkStoreSCPLauncherBuilder::GetOutputDirectory() { return m_OutputDirectory; -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncherBuilder.h b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncherBuilder.h index 4a53c38dbfc..5d898d9219d 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncherBuilder.h +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/QmitkStoreSCPLauncherBuilder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkStoreSCPLauncherBuilder_h #define QmitkStoreSCPLauncherBuilder_h diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.dicom/src/internal/mitkPluginActivator.cpp index ec949f36a0e..e2ea8a3312a 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkDicomBrowser.h" diff --git a/Plugins/org.mitk.gui.qt.dicom/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.dicom/src/internal/mitkPluginActivator.h index 103c55b7cc2..e68ad3c52ee 100644 --- a/Plugins/org.mitk.gui.qt.dicom/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.dicom/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.dicominspector/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.dicominspector/manifest_headers.cmake index 745eb4447cf..314c6afa2c2 100644 --- a/Plugins/org.mitk.gui.qt.dicominspector/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.dicominspector/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "Dicom Inspector Plugin") set(Plugin-Version "1.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.dicominspector/src/internal/QmitkDicomInspectorView.cpp b/Plugins/org.mitk.gui.qt.dicominspector/src/internal/QmitkDicomInspectorView.cpp index 1c704996606..eff06bd45a1 100644 --- a/Plugins/org.mitk.gui.qt.dicominspector/src/internal/QmitkDicomInspectorView.cpp +++ b/Plugins/org.mitk.gui.qt.dicominspector/src/internal/QmitkDicomInspectorView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.dicominspector/src/internal/QmitkDicomInspectorView.h b/Plugins/org.mitk.gui.qt.dicominspector/src/internal/QmitkDicomInspectorView.h index d65a6cdf1c9..926eb5a5ac7 100644 --- a/Plugins/org.mitk.gui.qt.dicominspector/src/internal/QmitkDicomInspectorView.h +++ b/Plugins/org.mitk.gui.qt.dicominspector/src/internal/QmitkDicomInspectorView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDicomInspectorView_h diff --git a/Plugins/org.mitk.gui.qt.dicominspector/src/internal/mitkDicomInspectorActivator.cpp b/Plugins/org.mitk.gui.qt.dicominspector/src/internal/mitkDicomInspectorActivator.cpp index 1fb0e5a8562..5e0c0c9f2ea 100644 --- a/Plugins/org.mitk.gui.qt.dicominspector/src/internal/mitkDicomInspectorActivator.cpp +++ b/Plugins/org.mitk.gui.qt.dicominspector/src/internal/mitkDicomInspectorActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDicomInspectorActivator.h" diff --git a/Plugins/org.mitk.gui.qt.dicominspector/src/internal/mitkDicomInspectorActivator.h b/Plugins/org.mitk.gui.qt.dicominspector/src/internal/mitkDicomInspectorActivator.h index 1163b576c12..e28e0ea9bea 100644 --- a/Plugins/org.mitk.gui.qt.dicominspector/src/internal/mitkDicomInspectorActivator.h +++ b/Plugins/org.mitk.gui.qt.dicominspector/src/internal/mitkDicomInspectorActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkDicomInspectorActivator_h diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/DoseVisualizationPreferencePage.cpp b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/DoseVisualizationPreferencePage.cpp index c56f6221955..a17bf074c29 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/DoseVisualizationPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/DoseVisualizationPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "DoseVisualizationPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/DoseVisualizationPreferencePage.h b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/DoseVisualizationPreferencePage.h index 33192534ae1..01ebe27190d 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/DoseVisualizationPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/DoseVisualizationPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __DOSE_VISUALIZATION_PREFERENCE_PAGE_H diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTDoseVisualizer.cpp b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTDoseVisualizer.cpp index bfcf9fd0b90..675f3bdfe6b 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTDoseVisualizer.cpp +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTDoseVisualizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qt #include diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTDoseVisualizer.h b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTDoseVisualizer.h index 75eefd2a0c2..204f43c841e 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTDoseVisualizer.h +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTDoseVisualizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef RTDoseVisualizer_h diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTUIPreferencePage.cpp b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTUIPreferencePage.cpp index d5284131c33..60d8fcf3678 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTUIPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTUIPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "RTUIPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTUIPreferencePage.h b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTUIPreferencePage.h index cf16606c5fc..77d19dc2996 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTUIPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/RTUIPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __RT_UI_PREFERENCE_PAGE_H diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/mitkDoseVisPreferenceHelper.cpp b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/mitkDoseVisPreferenceHelper.cpp index 9b760479a4b..f22fab2b07d 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/mitkDoseVisPreferenceHelper.cpp +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/mitkDoseVisPreferenceHelper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkDoseVisPreferenceHelper.h" diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/mitkDoseVisPreferenceHelper.h b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/mitkDoseVisPreferenceHelper.h index a5416bdb44e..60658b60d4b 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/mitkDoseVisPreferenceHelper.h +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/mitkDoseVisPreferenceHelper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __DOSE_VIS_PREFERENCE_HELPER_H diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/org_mitk_gui_qt_dosevisualization_Activator.cpp b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/org_mitk_gui_qt_dosevisualization_Activator.cpp index 2a528f781d3..ee97ffa7df1 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/org_mitk_gui_qt_dosevisualization_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/org_mitk_gui_qt_dosevisualization_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_dosevisualization_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/org_mitk_gui_qt_dosevisualization_Activator.h b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/org_mitk_gui_qt_dosevisualization_Activator.h index 0f720a98536..cac8fdc34d9 100644 --- a/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/org_mitk_gui_qt_dosevisualization_Activator.h +++ b/Plugins/org.mitk.gui.qt.dosevisualization/src/internal/org_mitk_gui_qt_dosevisualization_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_dosevisualization_Activator_h diff --git a/Plugins/org.mitk.gui.qt.eventrecorder/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.eventrecorder/manifest_headers.cmake index f3074cf0d10..ea9bb6e6f3d 100644 --- a/Plugins/org.mitk.gui.qt.eventrecorder/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.eventrecorder/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "Eventrecorder") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/InteractionEventRecorder.cpp b/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/InteractionEventRecorder.cpp index 1c2ffc770ca..10ea7e15226 100644 --- a/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/InteractionEventRecorder.cpp +++ b/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/InteractionEventRecorder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/InteractionEventRecorder.h b/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/InteractionEventRecorder.h index 36ca689c955..c3a8fe5374e 100644 --- a/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/InteractionEventRecorder.h +++ b/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/InteractionEventRecorder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef InteractionEventRecorder_h diff --git a/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/org_mitk_gui_qt_eventrecorder_Activator.cpp b/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/org_mitk_gui_qt_eventrecorder_Activator.cpp index 1e7b09ad10c..ff11c49a72d 100644 --- a/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/org_mitk_gui_qt_eventrecorder_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/org_mitk_gui_qt_eventrecorder_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_eventrecorder_Activator.h" #include "InteractionEventRecorder.h" diff --git a/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/org_mitk_gui_qt_eventrecorder_Activator.h b/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/org_mitk_gui_qt_eventrecorder_Activator.h index aec961f7356..1f340d2b3d9 100644 --- a/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/org_mitk_gui_qt_eventrecorder_Activator.h +++ b/Plugins/org.mitk.gui.qt.eventrecorder/src/internal/org_mitk_gui_qt_eventrecorder_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_eventrecorder_Activator_h diff --git a/Plugins/org.mitk.gui.qt.ext/documentation/UserManual/MITKUserManual.dox b/Plugins/org.mitk.gui.qt.ext/documentation/UserManual/MITKUserManual.dox index 2085c661296..87b5f510511 100644 --- a/Plugins/org.mitk.gui.qt.ext/documentation/UserManual/MITKUserManual.dox +++ b/Plugins/org.mitk.gui.qt.ext/documentation/UserManual/MITKUserManual.dox @@ -1,13 +1,13 @@ /** \page MITKUserManualPage The MITK User Manual -Welcome to the basic MITK user manual. This document tries to give a concise overview of the basic functions of MITK and be an comprehensible guide on using them. +Welcome to the basic MITK user manual. This document tries to give a concise overview of the basic functions of MITK and be an comprehensible guide on using them. \tableofcontents \section MITKUserManualPageOverview About MITK -MITK is an open-source framework that was originally developed as a common framework for Ph.D. students in the Division of Medical and Biological Informatics (MBI) at the German Cancer Research Center. MITK aims at supporting the development of leading-edge medical imaging software with a high degree of interaction. +MITK is an open-source framework that was originally developed as a common framework for Ph.D. students at the German Cancer Research Center (DKFZ). MITK aims at supporting the development of leading-edge medical imaging software with a high degree of interaction. MITK re-uses virtually anything from VTK and ITK. Thus, it is not at all a competitor to VTK or ITK, but an extension, which tries to ease the combination of both and to add features not supported by VTK or ITK. @@ -30,12 +30,12 @@ The datamanager and the \ref MITKUserManualPagePerspectives have their own help - The \ref MITKUserManualPageMemoryUsage - The \ref MITKUserManualPageViews -\section MITKUserManualPageMultiWidget Four Window View - +\section MITKUserManualPageMultiWidget Four Window View + \subsection MITKUserManualPageMultiWidgetOverview Overview The four window view is the heart of the MITK image viewing. The standard layout is three 2D windows and one 3D window, with the axial window in the top left quarter, the sagittal window in the top right quarter, the coronal window in the lower left quarter and the 3D window in the lower right quarter. The different planes form a crosshair that can be seen in the 3D window. - + Once you select a point within the picture, informations about it are displayed at the bottom of the screen. \subsection MITKUserManualPageMultiWidgetNavigation Navigation @@ -50,7 +50,7 @@ By moving the cursor to the upper right corner of any window you can activate th \imageMacro{MITKUserManual_CrosshairModes.png,"Crosshair",8.72} -The crosshair button allows you toggle the crosshair, reset the view and change the behaviour of the planes. +The crosshair button allows you toggle the crosshair, reset the view and change the behaviour of the planes. Activating either of the rotation modes allows you to rotate the planes visible in a 2D window by moving the mouse cursor close to them and click and dragging once it changes to indicate that rotation can be done. @@ -62,11 +62,11 @@ The middle button expands the corresponding window to fullscreen within the four \imageMacro{MITKUserManual_ViewsChoices.png,"Layout Choices",5.19} The right button allows you to choose between many different layouts of the four window view to use the one most suited to your task. - + \section MITKUserManualPageMenu Menu \subsection MITKUserManualPageFile File -This dialog allows you to save, load and clear entire projects, this includes any nodes in the data manager. +This dialog allows you to save, load and clear entire projects, this includes any nodes in the data manager. \subsection MITKUserManualPageEdit Edit This dialog supports undo and redo operations as well as the image navigator, which gives you sliders to navigate through the data quickly. @@ -104,7 +104,7 @@ The System Load Indicator in the lower right hand corner of the screen gives inf Each solution for a specific problem that is self contained is realized as a single view. Thus you can create a workflow for your problem by combining the capabilities of different views to suit your needs. One elegant way to do this is by combining views in \ref MITKUserManualPagePerspectives. -By pressing and holding the left mouse button on a views tab you can move it around to suit your needs, even out of the application window. +By pressing and holding the left mouse button on a views tab you can move it around to suit your needs, even out of the application window. \section MITKUserManualPagePerspectives Perspectives diff --git a/Plugins/org.mitk.gui.qt.ext/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.ext/manifest_headers.cmake index d1f170d72ba..43b0579214c 100644 --- a/Plugins/org.mitk.gui.qt.ext/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.ext/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "Common Qt Ext Plugin") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.core.ext org.mitk.gui.qt.application) diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtActionBarAdvisor.cpp b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtActionBarAdvisor.cpp index 75bbcb0a447..fb4554579ab 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtActionBarAdvisor.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtActionBarAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkExtActionBarAdvisor.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtActionBarAdvisor.h b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtActionBarAdvisor.h index 4a2bfc156c0..1daefbb5a03 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtActionBarAdvisor.h +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtActionBarAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEXTACTIONBARADVISOR_H_ #define QMITKEXTACTIONBARADVISOR_H_ diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtFileSaveProjectAction.cpp b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtFileSaveProjectAction.cpp index db1bb6a3b9d..6f202930a08 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtFileSaveProjectAction.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtFileSaveProjectAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkExtFileSaveProjectAction.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtFileSaveProjectAction.h b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtFileSaveProjectAction.h index f1877c287ab..26e715d978e 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtFileSaveProjectAction.h +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtFileSaveProjectAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkExtFileSaveProjectAction_H_ #define QmitkExtFileSaveProjectAction_H_ diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchActionBuilder.cpp b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchActionBuilder.cpp index 3107afca56e..33d00cece4a 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchActionBuilder.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchActionBuilder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkExtWorkbenchActionBuilder.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchActionBuilder.h b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchActionBuilder.h index eadd96cb8e2..6e246e3fd04 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchActionBuilder.h +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchActionBuilder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEXTWORKBENCHACTIONBUILDER_H diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchWindowAdvisor.cpp b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchWindowAdvisor.cpp index e3887095133..a666920605c 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchWindowAdvisor.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchWindowAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkExtWorkbenchWindowAdvisor.h" #include "QmitkExtActionBarAdvisor.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchWindowAdvisor.h b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchWindowAdvisor.h index 76ed29e22bb..3d1613b0d73 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchWindowAdvisor.h +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkExtWorkbenchWindowAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEXTWORKBENCHWINDOWADVISOR_H_ #define QMITKEXTWORKBENCHWINDOWADVISOR_H_ diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenDicomEditorAction.cpp b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenDicomEditorAction.cpp index aa6d6786eeb..05b5ed870a7 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenDicomEditorAction.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenDicomEditorAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOpenDicomEditorAction.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenDicomEditorAction.h b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenDicomEditorAction.h index c55518e200d..fe1800bef6e 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenDicomEditorAction.h +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenDicomEditorAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKOPENDICOMEDITORACTION_H_ #define QMITKOPENDICOMEDITORACTION_H_ diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenMxNMultiWidgetEditorAction.cpp b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenMxNMultiWidgetEditorAction.cpp index 293f5e1fad2..c8ef3a2a4da 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenMxNMultiWidgetEditorAction.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenMxNMultiWidgetEditorAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOpenMxNMultiWidgetEditorAction.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenMxNMultiWidgetEditorAction.h b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenMxNMultiWidgetEditorAction.h index 2c159d761c2..e7ff020a620 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenMxNMultiWidgetEditorAction.h +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenMxNMultiWidgetEditorAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKOPENMXNMULTIWIDGETEDITORACTION_H #define QMITKOPENMXNMULTIWIDGETEDITORACTION_H diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenStdMultiWidgetEditorAction.cpp b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenStdMultiWidgetEditorAction.cpp index 459b8003d15..1c46f09643f 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenStdMultiWidgetEditorAction.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenStdMultiWidgetEditorAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOpenStdMultiWidgetEditorAction.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenStdMultiWidgetEditorAction.h b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenStdMultiWidgetEditorAction.h index ed0a4dbad8f..c2afd2a9ac3 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenStdMultiWidgetEditorAction.h +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenStdMultiWidgetEditorAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKOPENSTDMULTIWIDGETEDITORACTION_H #define QMITKOPENSTDMULTIWIDGETEDITORACTION_H diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenXnatEditorAction.cpp b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenXnatEditorAction.cpp index 1951421c5ab..59e65db1a47 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenXnatEditorAction.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenXnatEditorAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOpenXnatEditorAction.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenXnatEditorAction.h b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenXnatEditorAction.h index db7c5295079..270db896597 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenXnatEditorAction.h +++ b/Plugins/org.mitk.gui.qt.ext/src/QmitkOpenXnatEditorAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKOPENXNATEDITORACTION_H_ #define QMITKOPENXNATEDITORACTION_H_ diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAboutHandler.cpp b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAboutHandler.cpp index b99114b4549..3e766a803b2 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAboutHandler.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAboutHandler.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAboutHandler.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAboutHandler.h b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAboutHandler.h index 034e91de9c0..e6c25031d1d 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAboutHandler.h +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAboutHandler.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKABOUTHANDLER_H #define QMITKABOUTHANDLER_H diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAppInstancesPreferencePage.cpp b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAppInstancesPreferencePage.cpp index 4c67ff5085c..80dd10c054b 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAppInstancesPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAppInstancesPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAppInstancesPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAppInstancesPreferencePage.h b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAppInstancesPreferencePage.h index 790ce5b622b..80613fc0883 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAppInstancesPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkAppInstancesPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKAPPINSTANCESPREFERENCEPAGE_H_ diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkCommonExtPlugin.cpp b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkCommonExtPlugin.cpp index fa6cb2ff132..e8cce819541 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkCommonExtPlugin.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkCommonExtPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCommonExtPlugin.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkCommonExtPlugin.h b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkCommonExtPlugin.h index 726e31d707d..cc27dd1d249 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkCommonExtPlugin.h +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkCommonExtPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCOMMONEXTPLUGIN_H_ diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExtWorkbenchWindowAdvisorHack.h b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExtWorkbenchWindowAdvisorHack.h index de9a8682e0e..9e8077afdcd 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExtWorkbenchWindowAdvisorHack.h +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExtWorkbenchWindowAdvisorHack.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExternalProgramsPreferencePage.cpp b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExternalProgramsPreferencePage.cpp index 7d47e7eb83b..a2f12d5e089 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExternalProgramsPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExternalProgramsPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExternalProgramsPreferencePage.h b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExternalProgramsPreferencePage.h index b0317489bf4..68d936f44c5 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExternalProgramsPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkExternalProgramsPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkExternalProgramsPreferencePage_h #define QmitkExternalProgramsPreferencePage_h diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkInputDevicesPrefPage.cpp b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkInputDevicesPrefPage.cpp index 829e8987590..e532e8476a9 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkInputDevicesPrefPage.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkInputDevicesPrefPage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkInputDevicesPrefPage.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkInputDevicesPrefPage.h b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkInputDevicesPrefPage.h index 8ea035f4ab1..8af72603b00 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkInputDevicesPrefPage.h +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkInputDevicesPrefPage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_INPUTDEVICESPREFPAGE_H_ diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkModuleView.cpp b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkModuleView.cpp index 72d604831a6..29f1622c419 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkModuleView.cpp +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkModuleView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkModuleView.h" diff --git a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkModuleView.h b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkModuleView.h index 8aec73c36d9..0097bec5efa 100644 --- a/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkModuleView.h +++ b/Plugins/org.mitk.gui.qt.ext/src/internal/QmitkModuleView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMODULEVIEW_H diff --git a/Plugins/org.mitk.gui.qt.extapplication/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.extapplication/manifest_headers.cmake index b951506aa96..d77df2ad49e 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.extapplication/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Workbench") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.ext) diff --git a/Plugins/org.mitk.gui.qt.extapplication/resources/welcome/WelcomePresentation.html b/Plugins/org.mitk.gui.qt.extapplication/resources/welcome/WelcomePresentation.html index 9415670d450..386057ff4d7 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/resources/welcome/WelcomePresentation.html +++ b/Plugins/org.mitk.gui.qt.extapplication/resources/welcome/WelcomePresentation.html @@ -7,7 +7,7 @@ May I introduce you to MITK? - + @@ -250,7 +250,7 @@

Mouse Navigation

@@ -283,4 +283,4 @@

Mouse Navigation

- \ No newline at end of file + diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtAppWorkbenchAdvisor.cpp b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtAppWorkbenchAdvisor.cpp index c7d51f9fed8..1d340fb24c4 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtAppWorkbenchAdvisor.cpp +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtAppWorkbenchAdvisor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkExtAppWorkbenchAdvisor.h" #include "internal/QmitkExtApplicationPlugin.h" diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtAppWorkbenchAdvisor.h b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtAppWorkbenchAdvisor.h index 377264b12d2..a73c3164edd 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtAppWorkbenchAdvisor.h +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtAppWorkbenchAdvisor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEXTAPPWORKBENCHADVISOR_H_ #define QMITKEXTAPPWORKBENCHADVISOR_H_ diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplication.cpp b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplication.cpp index 673e62d4595..ab45edb7b70 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplication.cpp +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplication.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkExtApplication.h" diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplication.h b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplication.h index 927fd6b8eb8..e0527e417a0 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplication.h +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplication.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEXTAPPLICATION_H_ #define QMITKEXTAPPLICATION_H_ diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplicationPlugin.cpp b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplicationPlugin.cpp index 471674bf306..00d6bc63e23 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplicationPlugin.cpp +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplicationPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkExtApplicationPlugin.h" #include "perspectives/QmitkExtDefaultPerspective.h" diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplicationPlugin.h b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplicationPlugin.h index aa3260421e1..085cae4e9d5 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplicationPlugin.h +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkExtApplicationPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEXTAPPLICATIONPLUGIN_H_ diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkMitkWorkbenchIntroPart.cpp b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkMitkWorkbenchIntroPart.cpp index bdf60eeb202..c477eb1e96c 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkMitkWorkbenchIntroPart.cpp +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkMitkWorkbenchIntroPart.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMitkWorkbenchIntroPart.h" diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkMitkWorkbenchIntroPart.h b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkMitkWorkbenchIntroPart.h index 10d67d9c414..df259e59836 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkMitkWorkbenchIntroPart.h +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/QmitkMitkWorkbenchIntroPart.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKWORKBENCHINTROPART_H_ diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkEditorPerspective.cpp b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkEditorPerspective.cpp index e2d5e4fb23f..b422952e238 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkEditorPerspective.cpp +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkEditorPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkEditorPerspective.h" diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkEditorPerspective.h b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkEditorPerspective.h index 9d6224ee4ec..a2a3d8bfd1b 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkEditorPerspective.h +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkEditorPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEDITORPERSPECTIVE_H_ diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkExtDefaultPerspective.cpp b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkExtDefaultPerspective.cpp index 54eba4bd8ed..0cca148ebd6 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkExtDefaultPerspective.cpp +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkExtDefaultPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkExtDefaultPerspective.h" #include "berryIViewLayout.h" diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkExtDefaultPerspective.h b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkExtDefaultPerspective.h index c6d33409168..124a5a6af5e 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkExtDefaultPerspective.h +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkExtDefaultPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKEXTDEFAULTPERSPECTIVE_H_ diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkVisualizationPerspective.cpp b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkVisualizationPerspective.cpp index 851c3d1c5ef..0157b4d0a0f 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkVisualizationPerspective.cpp +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkVisualizationPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkVisualizationPerspective.h" #include "berryIViewLayout.h" diff --git a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkVisualizationPerspective.h b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkVisualizationPerspective.h index 8a167aebe76..14960322742 100644 --- a/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkVisualizationPerspective.h +++ b/Plugins/org.mitk.gui.qt.extapplication/src/internal/perspectives/QmitkVisualizationPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkVisualizationPerspective_H_ diff --git a/Plugins/org.mitk.gui.qt.fit.demo/src/internal/FitGeneratorDemoView.cpp b/Plugins/org.mitk.gui.qt.fit.demo/src/internal/FitGeneratorDemoView.cpp index 53ce61af0ff..899fbaee1a5 100644 --- a/Plugins/org.mitk.gui.qt.fit.demo/src/internal/FitGeneratorDemoView.cpp +++ b/Plugins/org.mitk.gui.qt.fit.demo/src/internal/FitGeneratorDemoView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "FitGeneratorDemoView.h" #include diff --git a/Plugins/org.mitk.gui.qt.fit.demo/src/internal/FitGeneratorDemoView.h b/Plugins/org.mitk.gui.qt.fit.demo/src/internal/FitGeneratorDemoView.h index 474cb81418e..8bc6f900261 100644 --- a/Plugins/org.mitk.gui.qt.fit.demo/src/internal/FitGeneratorDemoView.h +++ b/Plugins/org.mitk.gui.qt.fit.demo/src/internal/FitGeneratorDemoView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef FitGeneratorDemoView_h #define FitGeneratorDemoView_h diff --git a/Plugins/org.mitk.gui.qt.fit.demo/src/internal/org_mitk_FitGeneratorDemo_Activator.cpp b/Plugins/org.mitk.gui.qt.fit.demo/src/internal/org_mitk_FitGeneratorDemo_Activator.cpp index 6f17ef86ed4..17f1f82258d 100644 --- a/Plugins/org.mitk.gui.qt.fit.demo/src/internal/org_mitk_FitGeneratorDemo_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.fit.demo/src/internal/org_mitk_FitGeneratorDemo_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_FitGeneratorDemo_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.fit.demo/src/internal/org_mitk_FitGeneratorDemo_Activator.h b/Plugins/org.mitk.gui.qt.fit.demo/src/internal/org_mitk_FitGeneratorDemo_Activator.h index feda2f439d7..29df3f17bfd 100644 --- a/Plugins/org.mitk.gui.qt.fit.demo/src/internal/org_mitk_FitGeneratorDemo_Activator.h +++ b/Plugins/org.mitk.gui.qt.fit.demo/src/internal/org_mitk_FitGeneratorDemo_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_fit_demo_Activator_h #define org_mitk_gui_qt_fit_demo_Activator_h diff --git a/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/GenericDataFittingView.cpp b/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/GenericDataFittingView.cpp index ed49ea9c8a1..d61cc380657 100644 --- a/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/GenericDataFittingView.cpp +++ b/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/GenericDataFittingView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "GenericDataFittingView.h" @@ -379,7 +375,7 @@ bool GenericDataFittingView::CheckModelSettings() const //check wether any model is set at all. Otherwise exit with false if (m_selectedModelFactory.IsNotNull()) { - bool isGenericFactory = dynamic_cast(m_selectedModelFactory.GetPointer()) != nullptr; + bool isGenericFactory = dynamic_cast(m_selectedModelFactory.GetPointer()) != nullptr; if (isGenericFactory) { diff --git a/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/GenericDataFittingView.h b/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/GenericDataFittingView.h index c2ab96a93b6..755355ee05f 100644 --- a/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/GenericDataFittingView.h +++ b/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/GenericDataFittingView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef GenericDataFittingView_h #define GenericDataFittingView_h diff --git a/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/org_mitk_GenericDataFittingView_Activator.cpp b/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/org_mitk_GenericDataFittingView_Activator.cpp index a72124a9bc3..d1f9749bba1 100644 --- a/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/org_mitk_GenericDataFittingView_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/org_mitk_GenericDataFittingView_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_GenericDataFittingView_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/org_mitk_GenericDataFittingView_Activator.h b/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/org_mitk_GenericDataFittingView_Activator.h index 67f1239c7a0..f579f181e2a 100644 --- a/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/org_mitk_GenericDataFittingView_Activator.h +++ b/Plugins/org.mitk.gui.qt.fit.genericfitting/src/internal/org_mitk_GenericDataFittingView_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_GenericDataFittingView_Activator_h #define org_mitk_GenericDataFittingView_Activator_h diff --git a/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/ModelFitInspectorView.cpp b/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/ModelFitInspectorView.cpp index a2833d3f934..9c6ce2e6618 100644 --- a/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/ModelFitInspectorView.cpp +++ b/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/ModelFitInspectorView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/ModelFitInspectorView.h b/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/ModelFitInspectorView.h index baad94dd8cb..864bbc914cf 100644 --- a/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/ModelFitInspectorView.h +++ b/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/ModelFitInspectorView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ModelFitInspectorView_h diff --git a/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/org_mitk_gui_qt_fit_inspector_Activator.cpp b/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/org_mitk_gui_qt_fit_inspector_Activator.cpp index 666ee04f11c..09515cceb2e 100644 --- a/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/org_mitk_gui_qt_fit_inspector_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/org_mitk_gui_qt_fit_inspector_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_fit_inspector_Activator.h" @@ -28,7 +24,7 @@ See LICENSE.txt or http://www.mitk.org for details. void org_mitk_gui_qt_fit_inspector_Activator::start(ctkPluginContext* context) { BERRY_REGISTER_EXTENSION_CLASS(ModelFitInspectorView, context) - + QmitkNodeDescriptorManager* manager = QmitkNodeDescriptorManager::GetInstance(); mitk::StringProperty::Pointer parameterProp = mitk::StringProperty::New(mitk::ModelFitConstants::PARAMETER_TYPE_VALUE_PARAMETER().c_str()); @@ -46,7 +42,7 @@ void org_mitk_gui_qt_fit_inspector_Activator::start(ctkPluginContext* context) mitk::StringProperty::Pointer evalProp = mitk::StringProperty::New(mitk::ModelFitConstants::PARAMETER_TYPE_VALUE_EVALUATION_PARAMETER().c_str()); mitk::NodePredicateProperty::Pointer isModelFitEvaluation = mitk::NodePredicateProperty::New(mitk::ModelFitConstants::PARAMETER_TYPE_PROPERTY_NAME().c_str(), evalProp); manager->AddDescriptor(new QmitkNodeDescriptor(tr("Image"), QString(":/ModelFitVisualization/eval_image.png"), isModelFitEvaluation, manager)); - + } void org_mitk_gui_qt_fit_inspector_Activator::stop(ctkPluginContext* context) diff --git a/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/org_mitk_gui_qt_fit_inspector_Activator.h b/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/org_mitk_gui_qt_fit_inspector_Activator.h index 29164dbb34c..a2e404a0a42 100644 --- a/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/org_mitk_gui_qt_fit_inspector_Activator.h +++ b/Plugins/org.mitk.gui.qt.fit.inspector/src/internal/org_mitk_gui_qt_fit_inspector_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_fit_inspector_Activator_h diff --git a/Plugins/org.mitk.gui.qt.geometrytools/src/internal/QmitkGeometryToolsView.cpp b/Plugins/org.mitk.gui.qt.geometrytools/src/internal/QmitkGeometryToolsView.cpp index d2e20fde5be..79f79e07bed 100644 --- a/Plugins/org.mitk.gui.qt.geometrytools/src/internal/QmitkGeometryToolsView.cpp +++ b/Plugins/org.mitk.gui.qt.geometrytools/src/internal/QmitkGeometryToolsView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Blueberry diff --git a/Plugins/org.mitk.gui.qt.geometrytools/src/internal/QmitkGeometryToolsView.h b/Plugins/org.mitk.gui.qt.geometrytools/src/internal/QmitkGeometryToolsView.h index e1ef6ec8fa4..27b0ac7e16e 100644 --- a/Plugins/org.mitk.gui.qt.geometrytools/src/internal/QmitkGeometryToolsView.h +++ b/Plugins/org.mitk.gui.qt.geometrytools/src/internal/QmitkGeometryToolsView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkGeometryToolsView_h diff --git a/Plugins/org.mitk.gui.qt.geometrytools/src/internal/org_mitk_gui_qt_geometrytools_Activator.cpp b/Plugins/org.mitk.gui.qt.geometrytools/src/internal/org_mitk_gui_qt_geometrytools_Activator.cpp index 7e5e808c8d2..d57c5411e15 100644 --- a/Plugins/org.mitk.gui.qt.geometrytools/src/internal/org_mitk_gui_qt_geometrytools_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.geometrytools/src/internal/org_mitk_gui_qt_geometrytools_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_geometrytools_Activator.h" #include "QmitkGeometryToolsView.h" diff --git a/Plugins/org.mitk.gui.qt.geometrytools/src/internal/org_mitk_gui_qt_geometrytools_Activator.h b/Plugins/org.mitk.gui.qt.geometrytools/src/internal/org_mitk_gui_qt_geometrytools_Activator.h index e3b4e4ad19b..455d85d4bcf 100644 --- a/Plugins/org.mitk.gui.qt.geometrytools/src/internal/org_mitk_gui_qt_geometrytools_Activator.h +++ b/Plugins/org.mitk.gui.qt.geometrytools/src/internal/org_mitk_gui_qt_geometrytools_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_geometrytools_Activator_h diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/manifest_headers.cmake index 3c096ce558d..e4fbb21aaca 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "IGT APP: Hummel Protocol Measurements") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common.legacy) diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingDataEvaluationView.cpp b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingDataEvaluationView.cpp index 86335867848..37a99df5ab9 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingDataEvaluationView.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingDataEvaluationView.cpp @@ -1,18 +1,14 @@ -/*========================================================================= +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -=========================================================================*/ +============================================================================*/ #include // Blueberry diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingDataEvaluationView.h b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingDataEvaluationView.h index 51865eb5f14..fce8ea93d04 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingDataEvaluationView.h +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingDataEvaluationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTTrackingDataEvaluationView_h #define QmitkIGTTrackingDataEvaluationView_h diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingSemiAutomaticMeasurementView.cpp b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingSemiAutomaticMeasurementView.cpp index 79ae5c07590..4c14d4c3333 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingSemiAutomaticMeasurementView.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingSemiAutomaticMeasurementView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingSemiAutomaticMeasurementView.h b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingSemiAutomaticMeasurementView.h index 5b203cc7b85..f2de6c39d55 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingSemiAutomaticMeasurementView.h +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/QmitkIGTTrackingSemiAutomaticMeasurementView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTTrackingSemiAutomaticMeasurementView_h #define QmitkIGTTrackingSemiAutomaticMeasurementView_h diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkHummelProtocolEvaluation.cpp b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkHummelProtocolEvaluation.cpp index d30c2104d85..ebe843f9dc9 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkHummelProtocolEvaluation.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkHummelProtocolEvaluation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #define _USE_MATH_DEFINES #include "mitkHummelProtocolEvaluation.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkHummelProtocolEvaluation.h b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkHummelProtocolEvaluation.h index d08a7d1c8c0..4742f94273c 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkHummelProtocolEvaluation.h +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkHummelProtocolEvaluation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKHummelProtocolEvaluation_H_HEADER_INCLUDED_ diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkNavigationDataCSVSequentialPlayer.cpp b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkNavigationDataCSVSequentialPlayer.cpp index 2a28b4fb543..9a8c4c98d19 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkNavigationDataCSVSequentialPlayer.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkNavigationDataCSVSequentialPlayer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkNavigationDataCSVSequentialPlayer.h" #include diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkNavigationDataCSVSequentialPlayer.h b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkNavigationDataCSVSequentialPlayer.h index e41e125915e..d1f9457d9e4 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkNavigationDataCSVSequentialPlayer.h +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkNavigationDataCSVSequentialPlayer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKNavigationDataCSVSequentialPlayer_H_HEADER_INCLUDED_ diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkPluginActivator.cpp index 243f2652efc..a02daea4d27 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*========================================================================= +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -=========================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkIGTTrackingSemiAutomaticMeasurementView.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkPluginActivator.h index 40d97dfdd11..b5ab5143416 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.igt.app.hummelprotocolmeasurements/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_igtapphummelprotocolmeasurements_Activator_h #define org_mitk_gui_qt_igtapphummelprotocolmeasurements_Activator_h diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/manifest_headers.cmake index 32789a6fdc1..bf3e8c3a205 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "IGT APP: UltrasoundTracking Navigation") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.stdmultiwidgeteditor) diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkFloatingImageToUltrasoundRegistrationFilter.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkFloatingImageToUltrasoundRegistrationFilter.cpp index e765dee9479..00d897cea76 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkFloatingImageToUltrasoundRegistrationFilter.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkFloatingImageToUltrasoundRegistrationFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkFloatingImageToUltrasoundRegistrationFilter.h" #include @@ -54,8 +50,8 @@ void mitk::FloatingImageToUltrasoundRegistrationFilter::InitializeTransformation m_TransformMarkerCSToSensorCS->SetOffset(translationNDI); - // Quaternion (x, y, z, r) --> n = (0,0,1) --> q(0,0,sin(90°),cos(90°)) - mitk::Quaternion qNDI(0, 0, 1, 0); // corresponding to a rotation of 180° around the normal z-axis. + // Quaternion (x, y, z, r) --> n = (0,0,1) --> q(0,0,sin(90°),cos(90°)) + mitk::Quaternion qNDI(0, 0, 1, 0); // corresponding to a rotation of 180° around the normal z-axis. // .transpose() is needed for changing the rows and the columns of the returned rotation_matrix_transpose vnl_matrix_fixed vnl_rotation = qNDI.rotation_matrix_transpose().transpose(); // :-) mitk::Matrix3D rotationMatrix; @@ -80,8 +76,8 @@ void mitk::FloatingImageToUltrasoundRegistrationFilter::InitializeTransformation m_TransformMarkerCSToSensorCS->SetOffset(translationPolhemus); - // Quaternion (x, y, z, r) --> n = (1,0,0) --> q(sin(90°),0,0,cos(90°)) - mitk::Quaternion q1(1, 0, 0, 0); // corresponding to a rotation of 180° around the normal x-axis. + // Quaternion (x, y, z, r) --> n = (1,0,0) --> q(sin(90°),0,0,cos(90°)) + mitk::Quaternion q1(1, 0, 0, 0); // corresponding to a rotation of 180° around the normal x-axis. // .transpose() is needed for changing the rows and the columns of the returned rotation_matrix_transpose vnl_matrix_fixed vnl_rotation = q1.rotation_matrix_transpose().transpose(); // :-) mitk::Matrix3D rotationMatrix; diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkFloatingImageToUltrasoundRegistrationFilter.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkFloatingImageToUltrasoundRegistrationFilter.h index e2cc461cc12..80692c72b2c 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkFloatingImageToUltrasoundRegistrationFilter.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkFloatingImageToUltrasoundRegistrationFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKFLOATINGIMAGETOULTRASOUNDREGISTRATIONFILTER_H_HEADER_INCLUDED_ diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetIntersectionFilter.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetIntersectionFilter.cpp index 488388084a9..b093804f184 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetIntersectionFilter.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetIntersectionFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSNavigationTargetIntersectionFilter.h" #include "mitkSurface.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetIntersectionFilter.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetIntersectionFilter.h index a9ccb121e8b..a640f6ede82 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetIntersectionFilter.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetIntersectionFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSNAVIGATIONTARGETINTERSECTIONFILTER_H #define MITKUSNAVIGATIONTARGETINTERSECTIONFILTER_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetOcclusionFilter.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetOcclusionFilter.cpp index 3e13f28e3ba..443d2550183 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetOcclusionFilter.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetOcclusionFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // MITK #include "mitkUSNavigationTargetOcclusionFilter.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetOcclusionFilter.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetOcclusionFilter.h index de8ff81835d..05b713ba861 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetOcclusionFilter.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetOcclusionFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef USNAVIGATIONTARGETOCCLUSIONFILTER_H #define USNAVIGATIONTARGETOCCLUSIONFILTER_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetUpdateFilter.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetUpdateFilter.cpp index 645993242cd..ef6d5d0a671 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetUpdateFilter.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetUpdateFilter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSNavigationTargetUpdateFilter.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetUpdateFilter.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetUpdateFilter.h index bd84e643818..d2ad030be26 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetUpdateFilter.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Filter/mitkUSNavigationTargetUpdateFilter.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef USNAVIGATIONTARGETUPDATEFILTER_H #define USNAVIGATIONTARGETUPDATEFILTER_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationCombinedModalityPersistence.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationCombinedModalityPersistence.cpp index 50dfe9e4463..344f0f25de1 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationCombinedModalityPersistence.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationCombinedModalityPersistence.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSNavigationCombinedModalityPersistence.h" #include "mitkUSCombinedModality.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationCombinedModalityPersistence.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationCombinedModalityPersistence.h index 0fdec9ba108..8f58290f2ff 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationCombinedModalityPersistence.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationCombinedModalityPersistence.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef USCOMBINEDMODALITYPERSISTENCE_H #define USCOMBINEDMODALITYPERSISTENCE_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationExperimentLogging.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationExperimentLogging.cpp index 96d64ba56b2..e58df0d54bf 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationExperimentLogging.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationExperimentLogging.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSNavigationExperimentLogging.h" #include "mitkDataNode.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationExperimentLogging.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationExperimentLogging.h index 90ce8d9e5e9..2a625e6eb8b 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationExperimentLogging.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationExperimentLogging.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSNAVIGATIONEXPERIMENTLOGGING_H #define MITKUSNAVIGATIONEXPERIMENTLOGGING_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationLoggingBackend.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationLoggingBackend.cpp index a6d80160816..182ffa70d25 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationLoggingBackend.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationLoggingBackend.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSNavigationLoggingBackend.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationLoggingBackend.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationLoggingBackend.h index e8ab45b04c3..570068ec625 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationLoggingBackend.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationLoggingBackend.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSNAVIGATIONLOGGINGBACKEND_H #define MITKUSNAVIGATIONLOGGINGBACKEND_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationStepTimer.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationStepTimer.cpp index 5994a4396fa..216c679b9f0 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationStepTimer.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationStepTimer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSNavigationStepTimer.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationStepTimer.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationStepTimer.h index 65e908a8926..0f141ec4510 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationStepTimer.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/IO/mitkUSNavigationStepTimer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSNAVIGATIONSTEPTIMER_H #define MITKUSNAVIGATIONSTEPTIMER_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSPointMarkInteractor.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSPointMarkInteractor.cpp index 4d4b2df3d98..4573fda2c34 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSPointMarkInteractor.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSPointMarkInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSPointMarkInteractor.h" #include "mitkDataNode.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSPointMarkInteractor.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSPointMarkInteractor.h index ba1745ee194..48bf96a7b9e 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSPointMarkInteractor.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSPointMarkInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSPOINTMARKINTERACTOR_H #define MITKUSPOINTMARKINTERACTOR_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSZonesInteractor.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSZonesInteractor.cpp index 76cd7b419bd..de9cbc10b0a 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSZonesInteractor.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSZonesInteractor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSZonesInteractor.h" #include "mitkDataStorage.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSZonesInteractor.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSZonesInteractor.h index 59eaf79afb8..3d908b9bcb4 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSZonesInteractor.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Interactors/mitkUSZonesInteractor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSZONESINTERACTOR_H #define MITKUSZONESINTERACTOR_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSAbstractNavigationStep.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSAbstractNavigationStep.cpp index e7afbbd4bff..15978b07c44 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSAbstractNavigationStep.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSAbstractNavigationStep.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSAbstractNavigationStep.h" #include "ui_QmitkUSAbstractNavigationStep.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSAbstractNavigationStep.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSAbstractNavigationStep.h index 86ef1d882ff..c137a54ad4e 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSAbstractNavigationStep.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSAbstractNavigationStep.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSABSTRACTNAVIGATIONSTEP_H #define QMITKUSABSTRACTNAVIGATIONSTEP_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCombinedModality.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCombinedModality.cpp index 4495f02fcb9..0b2dd37865f 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCombinedModality.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCombinedModality.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationStepCombinedModality.h" #include "ui_QmitkUSNavigationStepCombinedModality.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCombinedModality.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCombinedModality.h index f0db5cc35a8..241d9a1060f 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCombinedModality.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCombinedModality.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONSTEPCOMBINEDMODALITY_H #define QMITKUSNAVIGATIONSTEPCOMBINEDMODALITY_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCtUsRegistration.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCtUsRegistration.cpp index 835864f7e07..456093d4208 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCtUsRegistration.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCtUsRegistration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationStepCtUsRegistration.h" #include "ui_QmitkUSNavigationStepCtUsRegistration.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCtUsRegistration.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCtUsRegistration.h index 9acc1472ce8..4968b12c54a 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCtUsRegistration.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepCtUsRegistration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONSTEPCTUSREGISTRATION_H #define QMITKUSNAVIGATIONSTEPCTUSREGISTRATION_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepMarkerIntervention.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepMarkerIntervention.cpp index 85fa3fb48c7..d7f76ed366f 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepMarkerIntervention.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepMarkerIntervention.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationStepMarkerIntervention.h" #include "ui_QmitkUSNavigationStepMarkerIntervention.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepMarkerIntervention.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepMarkerIntervention.h index c606a7862cc..2adb4974a77 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepMarkerIntervention.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepMarkerIntervention.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONSTEPMARKERINTERVENTION_H #define QMITKUSNAVIGATIONSTEPMARKERINTERVENTION_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPlacementPlanning.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPlacementPlanning.cpp index 45538ad89e0..fc40895eafd 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPlacementPlanning.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPlacementPlanning.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationStepPlacementPlanning.h" #include "ui_QmitkUSNavigationStepPlacementPlanning.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPlacementPlanning.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPlacementPlanning.h index 26403771c00..b46cd450572 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPlacementPlanning.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPlacementPlanning.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONSTEPPLACEMENTPLANNING_H #define QMITKUSNAVIGATIONSTEPPLACEMENTPLANNING_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPunctuationIntervention.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPunctuationIntervention.cpp index 86635094b7b..14450e93af6 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPunctuationIntervention.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPunctuationIntervention.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationStepPunctuationIntervention.h" #include "ui_QmitkUSNavigationStepPunctuationIntervention.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPunctuationIntervention.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPunctuationIntervention.h index b5e7a46f3b2..8d028269359 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPunctuationIntervention.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepPunctuationIntervention.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONSTEPPUNCTUATIONINTERVENTION_H #define QMITKUSNAVIGATIONSTEPPUNCTUATIONINTERVENTION_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepTumourSelection.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepTumourSelection.cpp index ba42253461c..132ed0cd3e1 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepTumourSelection.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepTumourSelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationStepTumourSelection.h" #include "ui_QmitkUSNavigationStepTumourSelection.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepTumourSelection.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepTumourSelection.h index f41b3d8fb02..6185ddc1069 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepTumourSelection.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepTumourSelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONSTEPTUMOURSELECTION_H #define QMITKUSNAVIGATIONSTEPTUMOURSELECTION_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepZoneMarking.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepZoneMarking.cpp index 652b537af5b..1c70f31224e 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepZoneMarking.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepZoneMarking.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationStepZoneMarking.h" #include "ui_QmitkUSNavigationStepZoneMarking.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepZoneMarking.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepZoneMarking.h index ce68c06865a..b93bebb09f0 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepZoneMarking.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/NavigationStepWidgets/QmitkUSNavigationStepZoneMarking.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONSTEPZONEMARKING_H #define QMITKUSNAVIGATIONSTEPZONEMARKING_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationRemoveDelegate.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationRemoveDelegate.cpp index 15433dec33b..8db3ca3ab5a 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationRemoveDelegate.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationRemoveDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationCalibrationRemoveDelegate.h" #include diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationRemoveDelegate.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationRemoveDelegate.h index 446534a8cc6..bd1a2e62818 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationRemoveDelegate.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationRemoveDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONCALIBRATIONREMOVEDELEGATE_H #define QMITKUSNAVIGATIONCALIBRATIONREMOVEDELEGATE_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationUpdateDepthDelegate.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationUpdateDepthDelegate.cpp index 7bc7759b4bc..bf2d42f4a32 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationUpdateDepthDelegate.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationUpdateDepthDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationCalibrationUpdateDepthDelegate.h" #include diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationUpdateDepthDelegate.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationUpdateDepthDelegate.h index 3088ea63540..99dde3488a3 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationUpdateDepthDelegate.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationUpdateDepthDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONCALIBRATIONUPDATEDEPTHDELEGATE_H #define QMITKUSNAVIGATIONCALIBRATIONUPDATEDEPTHDELEGATE_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationsDataModel.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationsDataModel.cpp index 8e6dbd4f09b..9e6f972eef7 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationsDataModel.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationsDataModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationCalibrationsDataModel.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationsDataModel.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationsDataModel.h index 995c1f0b0d9..17d4b1a0213 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationsDataModel.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationCalibrationsDataModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONCALIBRATIONSDATAMODEL_H #define QMITKUSNAVIGATIONCALIBRATIONSDATAMODEL_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationMarkerPlacement.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationMarkerPlacement.cpp index 44a059165e2..d6770949ec8 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationMarkerPlacement.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationMarkerPlacement.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationMarkerPlacement.h" #include "ui_QmitkUSNavigationMarkerPlacement.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationMarkerPlacement.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationMarkerPlacement.h index 558f0953722..f37fd2b8a23 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationMarkerPlacement.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationMarkerPlacement.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUSNAVIGATIONMARKERPLACEMENT_H #define QmitkUSNAVIGATIONMARKERPLACEMENT_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationPerspective.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationPerspective.cpp index aa06b99bf9d..7d2ddd25bcd 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationPerspective.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationPerspective.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationPerspective.h" QmitkUSNavigationPerspective::QmitkUSNavigationPerspective() diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationPerspective.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationPerspective.h index 6c148ec931d..1edd1e43d7c 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationPerspective.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSNavigationPerspective.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONPERSPECTIVE_H #define QMITKUSNAVIGATIONPERSPECTIVE_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZoneManagementColorDialogDelegate.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZoneManagementColorDialogDelegate.cpp index 8c9a5774035..79cccf74e75 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZoneManagementColorDialogDelegate.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZoneManagementColorDialogDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSZoneManagementColorDialogDelegate.h" #include diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZoneManagementColorDialogDelegate.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZoneManagementColorDialogDelegate.h index 0f80c625989..15f50f30a81 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZoneManagementColorDialogDelegate.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZoneManagementColorDialogDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSZONEMANAGEMENTCOLORDIALOGDELEGATE_H #define QMITKUSZONEMANAGEMENTCOLORDIALOGDELEGATE_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZonesDataModel.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZonesDataModel.cpp index 8986193342e..9325927588a 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZonesDataModel.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZonesDataModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSZonesDataModel.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZonesDataModel.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZonesDataModel.h index d50498247ba..8105784e5a3 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZonesDataModel.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUSZonesDataModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSZONESDATAMODEL_H #define QMITKUSZONESDATAMODEL_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUltrasoundCalibration.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUltrasoundCalibration.cpp index b405b82ad7f..a47d8aedf09 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUltrasoundCalibration.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUltrasoundCalibration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUltrasoundCalibration.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUltrasoundCalibration.h index d68c6384209..d351794e7d2 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUltrasoundCalibration.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/QmitkUltrasoundCalibration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUltrasoundCalibration_h #define QmitkUltrasoundCalibration_h diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationAbstractSettingsWidget.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationAbstractSettingsWidget.cpp index b2f4af2ad79..7572fcee1ed 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationAbstractSettingsWidget.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationAbstractSettingsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationAbstractSettingsWidget.h" #include "mitkCommon.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationAbstractSettingsWidget.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationAbstractSettingsWidget.h index c4b899882cc..44dbd80c203 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationAbstractSettingsWidget.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationAbstractSettingsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONABSTRACTSETTINGSWIDGET_H #define QMITKUSNAVIGATIONABSTRACTSETTINGSWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationCombinedSettingsWidget.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationCombinedSettingsWidget.cpp index fc8a4c22dde..d3c51d5ec9c 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationCombinedSettingsWidget.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationCombinedSettingsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationCombinedSettingsWidget.h" #include "ui_QmitkUSNavigationCombinedSettingsWidget.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationCombinedSettingsWidget.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationCombinedSettingsWidget.h index 0422d73748e..ce1b911a082 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationCombinedSettingsWidget.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/SettingsWidgets/QmitkUSNavigationCombinedSettingsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONCOMBINEDSETTINGSWIDGET_H #define QMITKUSNAVIGATIONCOMBINEDSETTINGSWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/USNavigation.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/USNavigation.cpp index 3a7b75446e5..328db2bab1c 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/USNavigation.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/USNavigation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/USNavigation.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/USNavigation.h index adc06403759..807cca97128 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/USNavigation.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/USNavigation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef USNavigation_h #define USNavigation_h diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityCreationWidget.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityCreationWidget.cpp index f93de764c03..683dc156833 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityCreationWidget.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityCreationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSCombinedModalityCreationWidget.h" #include "ui_QmitkUSCombinedModalityCreationWidget.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityCreationWidget.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityCreationWidget.h index 29e223c124e..a162a5b79ee 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityCreationWidget.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityCreationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSCOMBINEDMODALITYCREATIONWIDGET_H #define QMITKUSCOMBINEDMODALITYCREATIONWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityEditWidget.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityEditWidget.cpp index 87531c26311..346f14e6ff1 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityEditWidget.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityEditWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSCombinedModalityEditWidget.h" #include "ui_QmitkUSCombinedModalityEditWidget.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityEditWidget.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityEditWidget.h index b0f9afcef8b..269a7a3a5ac 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityEditWidget.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSCombinedModalityEditWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSCOMBINEDMODALITYEDITWIDGET_H #define QMITKUSCOMBINEDMODALITYEDITWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationFreezeButton.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationFreezeButton.cpp index 0d903476971..ece24968b31 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationFreezeButton.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationFreezeButton.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationFreezeButton.h" #include diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationFreezeButton.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationFreezeButton.h index 2e225956e4f..ed6c52e274c 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationFreezeButton.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationFreezeButton.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONFREEZEBUTTON_H #define QMITKUSNAVIGATIONFREEZEBUTTON_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationZoneDistancesWidget.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationZoneDistancesWidget.cpp index 596f0a473ae..46e6ba84921 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationZoneDistancesWidget.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationZoneDistancesWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSNavigationZoneDistancesWidget.h" #include "QmitkZoneProgressBar.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationZoneDistancesWidget.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationZoneDistancesWidget.h index 73da36eca20..eb46c9970bc 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationZoneDistancesWidget.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSNavigationZoneDistancesWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSNAVIGATIONZONEDISTANCESWIDGET_H #define QMITKUSNAVIGATIONZONEDISTANCESWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSZoneManagementWidget.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSZoneManagementWidget.cpp index 04ad5568fce..157a3651b6b 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSZoneManagementWidget.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSZoneManagementWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUSZoneManagementWidget.h" #include "ui_QmitkUSZoneManagementWidget.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSZoneManagementWidget.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSZoneManagementWidget.h index 891ee27cbc4..803501a272f 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSZoneManagementWidget.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkUSZoneManagementWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKUSZONEMANAGEMENTWIDGET_H #define QMITKUSZONEMANAGEMENTWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkZoneProgressBar.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkZoneProgressBar.cpp index 65532b482be..069ec666fba 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkZoneProgressBar.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkZoneProgressBar.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkZoneProgressBar.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkZoneProgressBar.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkZoneProgressBar.h index 271a3f234d8..fb34a9ea46a 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkZoneProgressBar.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/Widgets/QmitkZoneProgressBar.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKZONEPROGRESSBAR_H #define QMITKZONEPROGRESSBAR_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/mitkUSTargetPlacementQualityCalculator.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/mitkUSTargetPlacementQualityCalculator.cpp index 509110a584a..b35d43278e4 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/mitkUSTargetPlacementQualityCalculator.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/mitkUSTargetPlacementQualityCalculator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkUSTargetPlacementQualityCalculator.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/mitkUSTargetPlacementQualityCalculator.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/mitkUSTargetPlacementQualityCalculator.h index 2e8a71ba1a0..3040fcf13d2 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/mitkUSTargetPlacementQualityCalculator.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/mitkUSTargetPlacementQualityCalculator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKUSTARGETPLACEMENTQUALITYCALCULATOR_H #define MITKUSTARGETPLACEMENTQUALITYCALCULATOR_H diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/org_mbi_gui_qt_usnavigation_Activator.cpp b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/org_mbi_gui_qt_usnavigation_Activator.cpp index 0c45033a50e..a9d00dcc288 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/org_mbi_gui_qt_usnavigation_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/org_mbi_gui_qt_usnavigation_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mbi_gui_qt_usnavigation_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/org_mbi_gui_qt_usnavigation_Activator.h b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/org_mbi_gui_qt_usnavigation_Activator.h index 615b02bbe2f..e03a1e6ae4d 100644 --- a/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/org_mbi_gui_qt_usnavigation_Activator.h +++ b/Plugins/org.mitk.gui.qt.igt.app.ultrasoundtrackingnavigation/src/internal/org_mbi_gui_qt_usnavigation_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mbi_gui_qt_usnavigation_Activator_h #define org_mbi_gui_qt_usnavigation_Activator_h diff --git a/Plugins/org.mitk.gui.qt.igtexamples/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.igtexamples/manifest_headers.cmake index d91112487f6..93de0663d9c 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.igtexamples/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "IGT Examples") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkExample.cpp b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkExample.cpp index ef35012967c..987cc386543 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkExample.cpp +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkExample.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkExample.h b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkExample.h index 976abe3a3fb..4ea82480396 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkExample.h +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkExample.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OpenIGTLinkExample_h diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkPlugin.cpp b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkPlugin.cpp index 148a0a48aa3..6fedea556c4 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkPlugin.cpp +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkPlugin.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkPlugin.h b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkPlugin.h index 63578259053..d32c5335187 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkPlugin.h +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkPlugin.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OpenIGTLinkPlugin_h #define OpenIGTLinkPlugin_h diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkProviderExample.cpp b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkProviderExample.cpp index 4d06d3c69d2..3fa7ecc8540 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkProviderExample.cpp +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkProviderExample.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkProviderExample.h b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkProviderExample.h index 995171c18ee..cdf39539190 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkProviderExample.h +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/OpenIGTLinkProviderExample.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OpenIGTLinkProviderExample_h diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTrackingLabView.cpp b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTrackingLabView.cpp index 005bab3301d..21edcad84d7 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTrackingLabView.cpp +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTrackingLabView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTrackingLabView.h b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTrackingLabView.h index 383ca89fb01..aa8073f714e 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTrackingLabView.h +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTrackingLabView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTTrackingLabView_h diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTutorialView.cpp b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTutorialView.cpp index 688cd5b4008..12948d7dbb9 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTutorialView.cpp +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTutorialView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkIGTTutorialView.h" diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTutorialView.h b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTutorialView.h index 6f382832d13..d5d20944185 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTutorialView.h +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/QmitkIGTTutorialView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKIGTTUTORIALVIEW_H_INCLUDED #define _QMITKIGTTUTORIALVIEW_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/mitkPluginActivator.cpp index dce8c26c0d4..db2a9838566 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkIGTTutorialView.h" #include "QmitkIGTTrackingLabView.h" diff --git a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/mitkPluginActivator.h index 9f70a41232f..f28b4f73818 100644 --- a/Plugins/org.mitk.gui.qt.igtexamples/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.igtexamples/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.igttracking/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.igttracking/manifest_headers.cmake index bdbd9bd0d41..2c31c765e67 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.igttracking/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "IGT Tracking") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "") -set(Require-Plugin org.mitk.gui.qt.common) \ No newline at end of file +set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTFiducialRegistration.cpp b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTFiducialRegistration.cpp index 62c5c490050..62b4393f971 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTFiducialRegistration.cpp +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTFiducialRegistration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTFiducialRegistration.h b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTFiducialRegistration.h index 82d46cc90ce..e04e4e42940 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTFiducialRegistration.h +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTFiducialRegistration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTFiducialRegistration_h #define QmitkIGTFiducialRegistration_h diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTNavigationToolCalibration.cpp b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTNavigationToolCalibration.cpp index f5f8e9e6c51..9b73b74a673 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTNavigationToolCalibration.cpp +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTNavigationToolCalibration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTNavigationToolCalibration.h b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTNavigationToolCalibration.h index e2e21874fcd..f17fb6c5563 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTNavigationToolCalibration.h +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkIGTNavigationToolCalibration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkIGTNavigationToolCalibration_h @@ -133,7 +129,7 @@ class QmitkIGTNavigationToolCalibration : public QmitkAbstractView mitk::PointSet::Pointer m_RegistrationLandmarks; mitk::DataNode::Pointer m_RegistrationLandmarksNode; - //members and helper methods for tool axis calibration + //members and helper methods for tool axis calibration mitk::Vector3D m_CalibratedToolAxis; mitk::NavigationData::Pointer m_AxisCalibration_ToolToCalibrate; mitk::NavigationData::Pointer m_AxisCalibration_NavDataCalibratingTool; diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTNavigationToolManagerView.cpp b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTNavigationToolManagerView.cpp index 5a8f7b32aef..253e7a486c5 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTNavigationToolManagerView.cpp +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTNavigationToolManagerView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTNavigationToolManagerView.h b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTNavigationToolManagerView.h index 63f135382b1..97237c08cd2 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTNavigationToolManagerView.h +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTNavigationToolManagerView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMITKIGTNavigationToolManagerView_h #define QmitkMITKIGTNavigationToolManagerView_h diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxView.cpp b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxView.cpp index fff0ae37899..33ea45cd1a7 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxView.cpp +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include @@ -939,7 +935,7 @@ void QmitkMITKIGTTrackingToolboxView::UpdateRenderTrackingTimer() mitk::NavigationData::Pointer currentTool = m_ToolVisualizationFilter->GetOutput(i); if (currentTool->IsDataValid()) { - + this->m_toolStorage->GetTool(i)->GetDataNode()->SetColor(mitk::IGTColor_VALID); } else @@ -953,7 +949,7 @@ void QmitkMITKIGTTrackingToolboxView::UpdateRenderTrackingTimer() { m_NeedleProjectionFilter->Update(); } - + //refresh view and status widget mitk::RenderingManager::GetInstance()->RequestUpdateAll(); m_Controls->m_TrackingToolsStatusWidget->Refresh(); diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxView.h b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxView.h index ae2491bba66..56c110353e0 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxView.h +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMITKIGTTrackingToolboxView_h #define QmitkMITKIGTTrackingToolboxView_h diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxViewWorker.cpp b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxViewWorker.cpp index 58a0bdbd516..4c6ada62213 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxViewWorker.cpp +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxViewWorker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkMITKIGTTrackingToolboxViewWorker.h" diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxViewWorker.h b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxViewWorker.h index 187501646ec..9c28fcad503 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxViewWorker.h +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkMITKIGTTrackingToolboxViewWorker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMITKIGTTrackingToolboxViewWorker_h #define QmitkMITKIGTTrackingToolboxViewWorker_h diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkNavigationDataPlayerView.cpp b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkNavigationDataPlayerView.cpp index 63fc082a389..034b7b61839 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkNavigationDataPlayerView.cpp +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkNavigationDataPlayerView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkNavigationDataPlayerView.h" diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkNavigationDataPlayerView.h b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkNavigationDataPlayerView.h index ea1239e20e8..c36a72f1ad9 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkNavigationDataPlayerView.h +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/QmitkNavigationDataPlayerView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkNavigationDataPlayerView_h #define QmitkNavigationDataPlayerView_h diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.igttracking/src/internal/mitkPluginActivator.cpp index f822d3dbb7d..d3e238b3a2c 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkMITKIGTNavigationToolManagerView.h" diff --git a/Plugins/org.mitk.gui.qt.igttracking/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.igttracking/src/internal/mitkPluginActivator.h index 36e03e81be2..5912cc43549 100644 --- a/Plugins/org.mitk.gui.qt.igttracking/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.igttracking/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATORIGT_H diff --git a/Plugins/org.mitk.gui.qt.imagecropper/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.imagecropper/manifest_headers.cmake index 7caa5b06381..b9888860cce 100644 --- a/Plugins/org.mitk.gui.qt.imagecropper/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.imagecropper/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Image Cropper") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") -set(Require-Plugin org.mitk.gui.qt.common) \ No newline at end of file +set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.imagecropper/src/internal/QmitkImageCropper.cpp b/Plugins/org.mitk.gui.qt.imagecropper/src/internal/QmitkImageCropper.cpp index ab4dbe86c8b..6b4c50132bf 100644 --- a/Plugins/org.mitk.gui.qt.imagecropper/src/internal/QmitkImageCropper.cpp +++ b/Plugins/org.mitk.gui.qt.imagecropper/src/internal/QmitkImageCropper.cpp @@ -1,19 +1,14 @@ -/*========================================================================= +/*============================================================================ -Program: Medical Imaging & Interaction Toolkit -Language: C++ -Date: $Date$ -Version: $Revision$ +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, Division of Medical and -Biological Informatics. All rights reserved. -See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -=========================================================================*/ +============================================================================*/ #include "QmitkImageCropper.h" diff --git a/Plugins/org.mitk.gui.qt.imagecropper/src/internal/QmitkImageCropper.h b/Plugins/org.mitk.gui.qt.imagecropper/src/internal/QmitkImageCropper.h index 13cee73a78f..e08159b8417 100644 --- a/Plugins/org.mitk.gui.qt.imagecropper/src/internal/QmitkImageCropper.h +++ b/Plugins/org.mitk.gui.qt.imagecropper/src/internal/QmitkImageCropper.h @@ -1,19 +1,14 @@ -/*========================================================================= +/*============================================================================ -Program: Medical Imaging & Interaction Toolkit -Language: C++ -Date: $Date$ -Version: $Revision$ +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, Division of Medical and -Biological Informatics. All rights reserved. -See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -=========================================================================*/ +============================================================================*/ #ifndef QmitkImageCropper_h #define QmitkImageCropper_h diff --git a/Plugins/org.mitk.gui.qt.imagecropper/src/internal/org_mitk_gui_qt_imagecropper_Activator.cpp b/Plugins/org.mitk.gui.qt.imagecropper/src/internal/org_mitk_gui_qt_imagecropper_Activator.cpp index 5d51c6255ef..962f14838f3 100644 --- a/Plugins/org.mitk.gui.qt.imagecropper/src/internal/org_mitk_gui_qt_imagecropper_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.imagecropper/src/internal/org_mitk_gui_qt_imagecropper_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.imagecropper/src/internal/org_mitk_gui_qt_imagecropper_Activator.h b/Plugins/org.mitk.gui.qt.imagecropper/src/internal/org_mitk_gui_qt_imagecropper_Activator.h index 88f376cbe36..565f56e693c 100644 --- a/Plugins/org.mitk.gui.qt.imagecropper/src/internal/org_mitk_gui_qt_imagecropper_Activator.h +++ b/Plugins/org.mitk.gui.qt.imagecropper/src/internal/org_mitk_gui_qt_imagecropper_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_imagecropper_Activator_h #define org_mitk_gui_qt_imagecropper_Activator_h diff --git a/Plugins/org.mitk.gui.qt.imagenavigator/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.imagenavigator/manifest_headers.cmake index a24cc8713df..4eeddaf9b58 100644 --- a/Plugins/org.mitk.gui.qt.imagenavigator/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.imagenavigator/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Image Navigator") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/QmitkImageNavigatorView.cpp b/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/QmitkImageNavigatorView.cpp index 32c78c2f17f..76bc6fcd53e 100644 --- a/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/QmitkImageNavigatorView.cpp +++ b/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/QmitkImageNavigatorView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkImageNavigatorView.h" diff --git a/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/QmitkImageNavigatorView.h b/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/QmitkImageNavigatorView.h index f96db039f52..22f6fd51855 100644 --- a/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/QmitkImageNavigatorView.h +++ b/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/QmitkImageNavigatorView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKIMAGENAVIGATORVIEW_H_INCLUDED #define _QMITKIMAGENAVIGATORVIEW_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/mitkImageNavigatorPluginActivator.cpp b/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/mitkImageNavigatorPluginActivator.cpp index e506a75e39d..d8cb3a98a5d 100644 --- a/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/mitkImageNavigatorPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/mitkImageNavigatorPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkImageNavigatorPluginActivator.h" #include "QmitkImageNavigatorView.h" diff --git a/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/mitkImageNavigatorPluginActivator.h b/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/mitkImageNavigatorPluginActivator.h index 5d72081e872..55dfa29a42a 100644 --- a/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/mitkImageNavigatorPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.imagenavigator/src/internal/mitkImageNavigatorPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKIMAGENAVIGATORPLUGINACTIVATOR_H #define MITKIMAGENAVIGATORPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.lasercontrol/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.lasercontrol/manifest_headers.cmake index a0b4a00020a..11faba1fd4b 100644 --- a/Plugins/org.mitk.gui.qt.lasercontrol/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.lasercontrol/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK OPO Laser Control") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common.legacy) diff --git a/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/QmitkLaserControl.cpp b/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/QmitkLaserControl.cpp index 3f7a15781c8..35d1bde8640 100644 --- a/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/QmitkLaserControl.cpp +++ b/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/QmitkLaserControl.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include @@ -263,7 +259,7 @@ void OPOLaserControl::ShutterCountDown() m_Controls.buttonQSwitch->setText("10s ..."); std::this_thread::sleep_for(std::chrono::seconds(1)); m_Controls.buttonQSwitch->setText("9s ..."); - std::this_thread::sleep_for(std::chrono::seconds(1)); + std::this_thread::sleep_for(std::chrono::seconds(1)); m_Controls.buttonQSwitch->setText("8s ..."); std::this_thread::sleep_for(std::chrono::seconds(1)); m_Controls.buttonQSwitch->setText("7s ..."); @@ -376,4 +372,4 @@ void OPOLaserControl::GetState() m_Controls.labelStatus->setText("PL7: Undefined State."); else if (pumpLaserState == mitk::QuantelLaser::UNCONNECTED) m_Controls.labelStatus->setText("PL Not Connected."); -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/QmitkLaserControl.h b/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/QmitkLaserControl.h index 19147f9cb25..fe93a603795 100644 --- a/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/QmitkLaserControl.h +++ b/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/QmitkLaserControl.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef OPOLaserControl_h diff --git a/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/mitkLaserControlPluginActivator.cpp b/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/mitkLaserControlPluginActivator.cpp index 3b5a2c05f5e..5bc8a2de7c4 100644 --- a/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/mitkLaserControlPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/mitkLaserControlPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkLaserControlPluginActivator.h" diff --git a/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/mitkLaserControlPluginActivator.h b/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/mitkLaserControlPluginActivator.h index 65875a7f758..dca635ac4fe 100644 --- a/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/mitkLaserControlPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.lasercontrol/src/internal/mitkLaserControlPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_lasercontrol_Activator_h diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/manifest_headers.cmake index c8a93213a24..29984d3a5ee 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MatchPoint Registration Batch Processing") set(Plugin-Version "0.2") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager org.mitk.matchpoint.core.helper) diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/QmitkMatchPointBatchProcessor.cpp b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/QmitkMatchPointBatchProcessor.cpp index b86f2b2419a..928a61eef9d 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/QmitkMatchPointBatchProcessor.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/QmitkMatchPointBatchProcessor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/QmitkMatchPointBatchProcessor.h b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/QmitkMatchPointBatchProcessor.h index d4746f06975..30416c771b5 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/QmitkMatchPointBatchProcessor.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/QmitkMatchPointBatchProcessor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.cpp index dee5f11adeb..542a3b6b9b1 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.h b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.h index 05ef1324c44..53a107f45ae 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.batch/src/internal/org_mitk_gui_qt_matchpoint_algorithm_batch_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_matchpoint_algorithm_batchprocessing_Activator_h diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/manifest_headers.cmake index ba5d50fb87a..9d1b9f037f8 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MatchPoint Algorithm Browser") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager org.mitk.matchpoint.core.helper) diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/QmitkMatchPointBrowser.cpp b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/QmitkMatchPointBrowser.cpp index faff10cc377..b946c576c18 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/QmitkMatchPointBrowser.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/QmitkMatchPointBrowser.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/QmitkMatchPointBrowser.h b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/QmitkMatchPointBrowser.h index 336d47571ca..ea7d2c70deb 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/QmitkMatchPointBrowser.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/QmitkMatchPointBrowser.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_MATCHPOINT_H #define __Q_MITK_MATCHPOINT_H diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/mitkAlgorithmInfoSelectionProvider.cpp b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/mitkAlgorithmInfoSelectionProvider.cpp index f5b0192317d..0594ba182fb 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/mitkAlgorithmInfoSelectionProvider.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/mitkAlgorithmInfoSelectionProvider.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkAlgorithmInfoSelectionProvider.h" #include "mitkMAPAlgorithmInfoSelection.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/mitkAlgorithmInfoSelectionProvider.h b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/mitkAlgorithmInfoSelectionProvider.h index 310c96aaece..164bbb771d8 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/mitkAlgorithmInfoSelectionProvider.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/mitkAlgorithmInfoSelectionProvider.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_ALGORITHM_SELECTION_PROVIDER_H #define _MITK_ALGORITHM_SELECTION_PROVIDER_H diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.cpp index 16f88b6fb76..ecdb33462d7 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.h b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.h index 43512275d32..fd26ae70a7b 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.browser/src/internal/org_mitk_gui_qt_matchpoint_algorithm_browser_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_matchpoint_algorithm_browser_Activator_h #define org_mitk_gui_qt_matchpoint_algorithm_browser_Activator_h diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/manifest_headers.cmake index 9ec53149c4c..7dabe1ee555 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MatchPoint Algorithm Control") set(Plugin-Version "0.2") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager org.mitk.matchpoint.core.helper) diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/QmitkMatchPoint.cpp b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/QmitkMatchPoint.cpp index c9d7a534002..b6f0dbd0c23 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/QmitkMatchPoint.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/QmitkMatchPoint.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/QmitkMatchPoint.h b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/QmitkMatchPoint.h index 2d2cf374b09..0b6e28df64a 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/QmitkMatchPoint.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/QmitkMatchPoint.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_MATCHPOINT_H #define __Q_MITK_MATCHPOINT_H diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.cpp index d6d760bc1f3..4ed35da22c7 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.h b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.h index 7420b67892f..65f67894b45 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.algorithm.control/src/internal/org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_matchpoint_algorithmcontrol_Activator_h diff --git a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/manifest_headers.cmake index c025011f3f5..6a307ded958 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MatchPoint Registration Evaluator") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager) diff --git a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/QmitkMatchPointRegistrationEvaluator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/QmitkMatchPointRegistrationEvaluator.cpp index 8cf7305b4e5..a9af311437b 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/QmitkMatchPointRegistrationEvaluator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/QmitkMatchPointRegistrationEvaluator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/QmitkMatchPointRegistrationEvaluator.h b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/QmitkMatchPointRegistrationEvaluator.h index c77caffcf7b..861d5a2fac2 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/QmitkMatchPointRegistrationEvaluator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/QmitkMatchPointRegistrationEvaluator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_MATCHPOINT_REGISTRATION_EVALUATOR_H diff --git a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/org_mitk_gui_qt_matchpoint_evaluator_Activator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/org_mitk_gui_qt_matchpoint_evaluator_Activator.cpp index bae68a3e468..9be67889948 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/org_mitk_gui_qt_matchpoint_evaluator_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/org_mitk_gui_qt_matchpoint_evaluator_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_evaluator_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/org_mitk_gui_qt_matchpoint_evaluator_Activator.h b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/org_mitk_gui_qt_matchpoint_evaluator_Activator.h index 7eec4425ac0..98f974f5b7c 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/org_mitk_gui_qt_matchpoint_evaluator_Activator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.evaluator/src/internal/org_mitk_gui_qt_matchpoint_evaluator_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_matchpoint_evaluator_Activator_h #define org_mitk_gui_qt_matchpoint_evaluator_Activator_h diff --git a/Plugins/org.mitk.gui.qt.matchpoint.framereg/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.matchpoint.framereg/manifest_headers.cmake index 153ab01d040..991e0f6b7d7 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.framereg/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.matchpoint.framereg/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MatchPoint Frame Correction") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager org.mitk.matchpoint.core.helper) diff --git a/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/QmitkMatchPointFrameCorrection.cpp b/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/QmitkMatchPointFrameCorrection.cpp index bd3391a8d73..69d3ec744e3 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/QmitkMatchPointFrameCorrection.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/QmitkMatchPointFrameCorrection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_framereg_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/QmitkMatchPointFrameCorrection.h b/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/QmitkMatchPointFrameCorrection.h index 28f48681a36..4e94e517017 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/QmitkMatchPointFrameCorrection.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/QmitkMatchPointFrameCorrection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_MATCHPOINT_FRAME_CORRECTION_H diff --git a/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/org_mitk_gui_qt_matchpoint_framereg_Activator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/org_mitk_gui_qt_matchpoint_framereg_Activator.cpp index c9e0bf8aa24..16fa1c37ad6 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/org_mitk_gui_qt_matchpoint_framereg_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/org_mitk_gui_qt_matchpoint_framereg_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_framereg_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/org_mitk_gui_qt_matchpoint_framereg_Activator.h b/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/org_mitk_gui_qt_matchpoint_framereg_Activator.h index bdd6f91ff95..9c804ace412 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/org_mitk_gui_qt_matchpoint_framereg_Activator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.framereg/src/internal/org_mitk_gui_qt_matchpoint_framereg_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_matchpoint_framereg_Activator_h #define org_mitk_gui_qt_matchpoint_framereg_Activator_h diff --git a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/manifest_headers.cmake index e33e33b8351..e8e01074da3 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MatchPoint Registration Manipulator") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager) diff --git a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/QmitkMatchPointRegistrationManipulator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/QmitkMatchPointRegistrationManipulator.cpp index f948de2a7ac..64158a67f6c 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/QmitkMatchPointRegistrationManipulator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/QmitkMatchPointRegistrationManipulator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/QmitkMatchPointRegistrationManipulator.h b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/QmitkMatchPointRegistrationManipulator.h index c70437bb91a..d02b08b5cd6 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/QmitkMatchPointRegistrationManipulator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/QmitkMatchPointRegistrationManipulator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_MATCHPOINT_REGISTRATION_MANIPULATOR_H diff --git a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/org_mitk_gui_qt_matchpoint_manipulator_Activator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/org_mitk_gui_qt_matchpoint_manipulator_Activator.cpp index c7361252b65..be027496362 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/org_mitk_gui_qt_matchpoint_manipulator_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/org_mitk_gui_qt_matchpoint_manipulator_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_manipulator_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/org_mitk_gui_qt_matchpoint_manipulator_Activator.h b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/org_mitk_gui_qt_matchpoint_manipulator_Activator.h index f2b6f55ca15..3565a6839cb 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/org_mitk_gui_qt_matchpoint_manipulator_Activator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.manipulator/src/internal/org_mitk_gui_qt_matchpoint_manipulator_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_matchpoint_manipulator_Activator_h #define org_mitk_gui_qt_matchpoint_manipulator_Activator_h diff --git a/Plugins/org.mitk.gui.qt.matchpoint.mapper/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.matchpoint.mapper/manifest_headers.cmake index 12756751ede..d3ad93def4f 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.mapper/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.matchpoint.mapper/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MatchPoint Data Mapper") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager) diff --git a/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/QmitkMatchPointMapper.cpp b/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/QmitkMatchPointMapper.cpp index d951ab8b213..197d70677a2 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/QmitkMatchPointMapper.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/QmitkMatchPointMapper.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_mapper_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/QmitkMatchPointMapper.h b/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/QmitkMatchPointMapper.h index c33d3fda167..b45e892856a 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/QmitkMatchPointMapper.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/QmitkMatchPointMapper.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_MATCHPOINT_MAPPER_H diff --git a/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/org_mitk_gui_qt_matchpoint_mapper_Activator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/org_mitk_gui_qt_matchpoint_mapper_Activator.cpp index b8b3964109e..596562f3f26 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/org_mitk_gui_qt_matchpoint_mapper_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/org_mitk_gui_qt_matchpoint_mapper_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_mapper_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/org_mitk_gui_qt_matchpoint_mapper_Activator.h b/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/org_mitk_gui_qt_matchpoint_mapper_Activator.h index 7f64ffc1ac2..85e3f4232fc 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/org_mitk_gui_qt_matchpoint_mapper_Activator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.mapper/src/internal/org_mitk_gui_qt_matchpoint_mapper_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_matchpoint_mapper_Activator_h diff --git a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/manifest_headers.cmake index 4804af1214a..71ef009f9e5 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MatchPoint Registration Visualizer") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager) diff --git a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/QmitkMatchPointRegistrationVisualizer.cpp b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/QmitkMatchPointRegistrationVisualizer.cpp index b5ab8e4c07c..b45eaf4acf2 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/QmitkMatchPointRegistrationVisualizer.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/QmitkMatchPointRegistrationVisualizer.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_visualizer_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/QmitkMatchPointRegistrationVisualizer.h b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/QmitkMatchPointRegistrationVisualizer.h index 1f2f2c27a55..41e5da3db4d 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/QmitkMatchPointRegistrationVisualizer.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/QmitkMatchPointRegistrationVisualizer.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __Q_MITK_MATCHPOINT_REGISTRATION_VISUALIZER_H diff --git a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/org_mitk_gui_qt_matchpoint_visualizer_Activator.cpp b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/org_mitk_gui_qt_matchpoint_visualizer_Activator.cpp index cc3aeada18d..cb0f231ad19 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/org_mitk_gui_qt_matchpoint_visualizer_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/org_mitk_gui_qt_matchpoint_visualizer_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_matchpoint_visualizer_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/org_mitk_gui_qt_matchpoint_visualizer_Activator.h b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/org_mitk_gui_qt_matchpoint_visualizer_Activator.h index 1d77c3e1c62..340420356a6 100644 --- a/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/org_mitk_gui_qt_matchpoint_visualizer_Activator.h +++ b/Plugins/org.mitk.gui.qt.matchpoint.visualizer/src/internal/org_mitk_gui_qt_matchpoint_visualizer_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_matchpoint_visualizer_Activator_h #define org_mitk_gui_qt_matchpoint_visualizer_Activator_h diff --git a/Plugins/org.mitk.gui.qt.materialeditor/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.materialeditor/manifest_headers.cmake index 8f72fc2fe3a..91c055ee039 100644 --- a/Plugins/org.mitk.gui.qt.materialeditor/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.materialeditor/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Material Editor") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") -set(Require-Plugin org.mitk.gui.qt.common) \ No newline at end of file +set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.materialeditor/src/internal/QmitkMITKSurfaceMaterialEditorView.cpp b/Plugins/org.mitk.gui.qt.materialeditor/src/internal/QmitkMITKSurfaceMaterialEditorView.cpp index dec5e3c1dc5..c9771ad3a35 100644 --- a/Plugins/org.mitk.gui.qt.materialeditor/src/internal/QmitkMITKSurfaceMaterialEditorView.cpp +++ b/Plugins/org.mitk.gui.qt.materialeditor/src/internal/QmitkMITKSurfaceMaterialEditorView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMITKSurfaceMaterialEditorView.h" diff --git a/Plugins/org.mitk.gui.qt.materialeditor/src/internal/QmitkMITKSurfaceMaterialEditorView.h b/Plugins/org.mitk.gui.qt.materialeditor/src/internal/QmitkMITKSurfaceMaterialEditorView.h index fb688550978..2dfcc181cdd 100644 --- a/Plugins/org.mitk.gui.qt.materialeditor/src/internal/QmitkMITKSurfaceMaterialEditorView.h +++ b/Plugins/org.mitk.gui.qt.materialeditor/src/internal/QmitkMITKSurfaceMaterialEditorView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKMITKSURFACEMATERIALEDITORVIEW_H_INCLUDED #define _QMITKMITKSURFACEMATERIALEDITORVIEW_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.materialeditor/src/internal/mitkMaterialEditorPluginActivator.cpp b/Plugins/org.mitk.gui.qt.materialeditor/src/internal/mitkMaterialEditorPluginActivator.cpp index cc2810387ac..48baa722c60 100644 --- a/Plugins/org.mitk.gui.qt.materialeditor/src/internal/mitkMaterialEditorPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.materialeditor/src/internal/mitkMaterialEditorPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMaterialEditorPluginActivator.h" #include "QmitkMITKSurfaceMaterialEditorView.h" diff --git a/Plugins/org.mitk.gui.qt.materialeditor/src/internal/mitkMaterialEditorPluginActivator.h b/Plugins/org.mitk.gui.qt.materialeditor/src/internal/mitkMaterialEditorPluginActivator.h index cd35032b0fc..384d9a8ee25 100644 --- a/Plugins/org.mitk.gui.qt.materialeditor/src/internal/mitkMaterialEditorPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.materialeditor/src/internal/mitkMaterialEditorPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMATERIALEDITORPLUGINACTIVATOR_H #define MITKMATERIALEDITORPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.measurementtoolbox/manifest_headers.cmake index bea2c215a49..9d77595dc00 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/manifest_headers.cmake @@ -1,8 +1,8 @@ set(Plugin-Name "MITK Measurement") set(Plugin-Version "1.0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") -set(Require-Plugin +set(Require-Plugin org.mitk.gui.qt.common org.blueberry.ui.qt - ) \ No newline at end of file + ) diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.cpp b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.cpp index 5966915b23f..5a749d566d4 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.cpp +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkImageStatisticsView.h" diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.h b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.h index 4dc27b591ff..fcb64fede68 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.h +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkImageStatisticsView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkImageStatisticsView_H__INCLUDED #define QmitkImageStatisticsView_H__INCLUDED @@ -67,7 +63,7 @@ class QmitkImageStatisticsView : public QmitkAbstractView, public mitk::ILifecyc /** \brief Is called right before the view closes (before the destructor) */ void PartClosed(const berry::IWorkbenchPartReference::Pointer&) override; - + /** \brief Required for berry::IPartListener */ Events::Types GetPartEventTypes() const override { return Events::CLOSED; } diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkMeasurementView.cpp b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkMeasurementView.cpp index 07c9912d547..7f4bad141b5 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkMeasurementView.cpp +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkMeasurementView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMeasurementView.h" diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkMeasurementView.h b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkMeasurementView.h index 72d7b09997f..70d9eafd17f 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkMeasurementView.h +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/QmitkMeasurementView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_MEASUREMENT_H__INCLUDED #define QMITK_MEASUREMENT_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/mitkPluginActivator.cpp index a48d1c5ae91..782b1eef101 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkMeasurementView.h" diff --git a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/mitkPluginActivator.h index 02c11d68ec8..0ae55c27188 100644 --- a/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.measurementtoolbox/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.moviemaker/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.moviemaker/manifest_headers.cmake index f19fb46278e..d852eaea93c 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.moviemaker/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Movie Maker") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") -set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.ext) \ No newline at end of file +set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.ext) diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItem.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItem.cpp index c55bb0808ab..d43ae0532aa 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItem.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAnimationItem.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItem.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItem.h index 536bb74b073..7aaeaf16a5f 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItem.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAnimationItem_h #define QmitkAnimationItem_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItemDelegate.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItemDelegate.cpp index 781aeb37af9..a11534cf3a8 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItemDelegate.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItemDelegate.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAnimationItem.h" #include "QmitkAnimationItemDelegate.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItemDelegate.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItemDelegate.h index 1ac4f069054..43f9d152cae 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItemDelegate.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationItemDelegate.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAnimationItemDelegate_h #define QmitkAnimationItemDelegate_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationWidget.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationWidget.cpp index 45c861d9ab8..52846364086 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationWidget.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAnimationWidget.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationWidget.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationWidget.h index 8ccbb456315..92d84ef2b8a 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationWidget.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkAnimationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAnimationWidget_h #define QmitkAnimationWidget_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkMovieMakerView.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkMovieMakerView.cpp index 33976f63360..c46d375a57d 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkMovieMakerView.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkMovieMakerView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAnimationItemDelegate.h" #include "QmitkFFmpegWriter.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkMovieMakerView.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkMovieMakerView.h index 7b8da6df35a..92f30f13b5c 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkMovieMakerView.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkMovieMakerView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMovieMakerView_h #define QmitkMovieMakerView_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationItem.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationItem.cpp index 21a7caddd4b..8e5fcb479d1 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationItem.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOrbitAnimationItem.h" #include diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationItem.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationItem.h index 9901585d99b..262171757fd 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationItem.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkOrbitAnimationItem_h #define QmitkOrbitAnimationItem_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationWidget.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationWidget.cpp index 7ac6ee754fb..b11ef50f1b5 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationWidget.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOrbitAnimationItem.h" #include "QmitkOrbitAnimationWidget.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationWidget.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationWidget.h index cfdbfe5ce97..2f3344ec6f9 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationWidget.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkOrbitAnimationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkOrbitAnimationWidget_h #define QmitkOrbitAnimationWidget_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkScreenshotMaker.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkScreenshotMaker.cpp index 882d3be16d6..9136a85b7a2 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkScreenshotMaker.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkScreenshotMaker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkScreenshotMaker.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkScreenshotMaker.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkScreenshotMaker.h index ceae0ffe26d..eff559e898d 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkScreenshotMaker.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkScreenshotMaker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QMITK_ScreenshotMaker_H__INCLUDED) #define QMITK_ScreenshotMaker_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationItem.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationItem.cpp index 0d56f594b0d..b5c044001b4 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationItem.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSliceAnimationItem.h" #include diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationItem.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationItem.h index 77ffbe07e45..fd4e8ff2350 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationItem.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSliceAnimationItem_h #define QmitkSliceAnimationItem_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationWidget.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationWidget.cpp index 7f08bdc2b97..3082dcb2cc5 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationWidget.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSliceAnimationItem.h" #include "QmitkSliceAnimationWidget.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationWidget.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationWidget.h index bad153b4a42..deab5579d09 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationWidget.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkSliceAnimationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSliceAnimationWidget_h #define QmitkSliceAnimationWidget_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationItem.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationItem.cpp index 0331402d119..c2a4e7d339d 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationItem.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationItem.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTimeSliceAnimationItem.h" #include diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationItem.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationItem.h index 40dc7565a7b..53cec775bea 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationItem.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkTimeSliceAnimationItem_h #define QmitkTimeSliceAnimationItem_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationWidget.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationWidget.cpp index 85c7f4225e9..2e45ee9b379 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationWidget.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTimeSliceAnimationItem.h" #include "QmitkTimeSliceAnimationWidget.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationWidget.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationWidget.h index 30517332107..9558da73746 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationWidget.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/QmitkTimeSliceAnimationWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkTimeSliceAnimationWidget_h #define QmitkTimeSliceAnimationWidget_h diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/mitkMovieMakerPluginActivator.cpp b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/mitkMovieMakerPluginActivator.cpp index 2df4d485613..0ac009a43ee 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/mitkMovieMakerPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/mitkMovieMakerPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMovieMakerPluginActivator.h" #include "QmitkMovieMakerView.h" diff --git a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/mitkMovieMakerPluginActivator.h b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/mitkMovieMakerPluginActivator.h index fd4984fdb18..9378af1ee83 100644 --- a/Plugins/org.mitk.gui.qt.moviemaker/src/internal/mitkMovieMakerPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.moviemaker/src/internal/mitkMovieMakerPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKMOVIEMAKERPLUGINACTIVATOR_H #define MITKMOVIEMAKERPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.multilabelsegmentation/manifest_headers.cmake index ca346536b90..54eb90ad333 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK MultiLabelSegmentation") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager) diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/QmitkMultiLabelSegmentationPreferencePage.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/QmitkMultiLabelSegmentationPreferencePage.cpp index 0ec3458d216..305d5fd4a98 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/QmitkMultiLabelSegmentationPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/QmitkMultiLabelSegmentationPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMultiLabelSegmentationPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/QmitkMultiLabelSegmentationPreferencePage.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/QmitkMultiLabelSegmentationPreferencePage.h index 68b30642a66..b020541197c 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/QmitkMultiLabelSegmentationPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/QmitkMultiLabelSegmentationPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMultiLabelSegmentationPreferencePage_h_included diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/Common/QmitkDataSelectionWidget.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/Common/QmitkDataSelectionWidget.cpp index 6a89def4bc5..7bf15335661 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/Common/QmitkDataSelectionWidget.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/Common/QmitkDataSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataSelectionWidget.h" #include "internal/mitkPluginActivator.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/Common/QmitkDataSelectionWidget.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/Common/QmitkDataSelectionWidget.h index 07e5abe8756..23502425f42 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/Common/QmitkDataSelectionWidget.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/Common/QmitkDataSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDataSelectionWidget_h #define QmitkDataSelectionWidget_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkAutocropAction.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkAutocropAction.cpp index 771f0558509..b04f88f9748 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkAutocropAction.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkAutocropAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAutocropAction.h" #include "mitkAutoCropImageFilter.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkAutocropAction.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkAutocropAction.h index cfb1c17e96f..eb00262ea55 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkAutocropAction.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkAutocropAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_AUTOCROPACTION_H #define QMITK_AUTOCROPACTION_H diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertMaskToLabelAction.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertMaskToLabelAction.cpp index 569f88f43b6..c77f1a145d1 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertMaskToLabelAction.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertMaskToLabelAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkConvertMaskToLabelAction.h" #include "mitkRenderingManager.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertMaskToLabelAction.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertMaskToLabelAction.h index 8d1c2364427..ad082d9ea70 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertMaskToLabelAction.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertMaskToLabelAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __QmitkConvertMaskToLabelAction_H_ #define __QmitkConvertMaskToLabelAction_H_ diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertSurfaceToLabelAction.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertSurfaceToLabelAction.cpp index 852ca1906a4..302de09cdcf 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertSurfaceToLabelAction.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertSurfaceToLabelAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkConvertSurfaceToLabelAction.h" #include "mitkRenderingManager.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertSurfaceToLabelAction.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertSurfaceToLabelAction.h index e31911f6c84..08eb613b2b4 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertSurfaceToLabelAction.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertSurfaceToLabelAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __QmitkConvertSurfaceToLabelAction_H_ #define __QmitkConvertSurfaceToLabelAction_H_ diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertToMultiLabelSegmentationAction.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertToMultiLabelSegmentationAction.cpp index b4741cc4f46..4cb6bfe1ce3 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertToMultiLabelSegmentationAction.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertToMultiLabelSegmentationAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkConvertToMultiLabelSegmentationAction.h" #include "mitkLabelSetImage.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertToMultiLabelSegmentationAction.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertToMultiLabelSegmentationAction.h index 84c95e7eba1..aa6fddfb931 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertToMultiLabelSegmentationAction.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkConvertToMultiLabelSegmentationAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_ConvertToMultiLabelSegmentation_H #define QMITK_ConvertToMultiLabelSegmentation_H diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelPresetAction.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelPresetAction.cpp index d3bb16023ec..eba3f976703 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelPresetAction.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelPresetAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "QFileDialog" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelPresetAction.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelPresetAction.h index 924cdb6a2a1..3e0b4873ae0 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelPresetAction.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelPresetAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_QmitkCreateMultiLabelPresetAction_H #define QMITK_QmitkCreateMultiLabelPresetAction_H diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelSegmentationAction.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelSegmentationAction.cpp index b13b15dbf6f..723f3b00eb6 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelSegmentationAction.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelSegmentationAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCreateMultiLabelSegmentationAction.h" #include "mitkLabelSetImage.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelSegmentationAction.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelSegmentationAction.h index 380044c5942..a70a5802dd8 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelSegmentationAction.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkCreateMultiLabelSegmentationAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_CreateMultiLabelSegmentation_H #define QMITK_CreateMultiLabelSegmentation_H diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkLoadMultiLabelPresetAction.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkLoadMultiLabelPresetAction.cpp index 52f8cff9eb4..3785b892c0a 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkLoadMultiLabelPresetAction.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkLoadMultiLabelPresetAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkLoadMultiLabelPresetAction.h" #include "mitkLabelSetImage.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkLoadMultiLabelPresetAction.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkLoadMultiLabelPresetAction.h index 83869d9d498..d6c98a59a7f 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkLoadMultiLabelPresetAction.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkLoadMultiLabelPresetAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_QmitkLoadMultiLabelPresetAction_H #define QMITK_QmitkLoadMultiLabelPresetAction_H diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkMultiLabelSegmentationView.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkMultiLabelSegmentationView.cpp index e2d9eb32e41..56f18be8afa 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkMultiLabelSegmentationView.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkMultiLabelSegmentationView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMultiLabelSegmentationView.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkMultiLabelSegmentationView.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkMultiLabelSegmentationView.h index d57886f26f0..ce5f44b385e 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkMultiLabelSegmentationView.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkMultiLabelSegmentationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMultiLabelSegmentationView_h #define QmitkMultiLabelSegmentationView_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkThresholdAction.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkThresholdAction.cpp index 4cefb5d8393..124efb96829 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkThresholdAction.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkThresholdAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkThresholdAction.h" // MITK diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkThresholdAction.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkThresholdAction.h index 05fb0d8afec..11c36bb6264 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkThresholdAction.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/QmitkThresholdAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTHRESHOLDACTION_H #define QMITKTHRESHOLDACTION_H diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.cpp index 2ffe77fc2dd..f19ce8cd511 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkBooleanOperationsWidget.h" #include "../../Common/QmitkDataSelectionWidget.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.h index d0e0ffee86c..76e56b16a84 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkBooleanOperationsWidget_h #define QmitkBooleanOperationsWidget_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ConvertToMl/QmitkConvertToMlWidget.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ConvertToMl/QmitkConvertToMlWidget.cpp index 72bd4b64627..7f2bbc3d654 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ConvertToMl/QmitkConvertToMlWidget.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ConvertToMl/QmitkConvertToMlWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkConvertToMlWidget.h" #include "../../Common/QmitkDataSelectionWidget.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ConvertToMl/QmitkConvertToMlWidget.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ConvertToMl/QmitkConvertToMlWidget.h index 780ea278413..c169618774b 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ConvertToMl/QmitkConvertToMlWidget.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ConvertToMl/QmitkConvertToMlWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkConvertToMlWidget_h #define QmitkConvertToMlWidget_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.cpp index a96149527f5..93b3df1e6cc 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkImageMaskingWidget.h" #include "../../Common/QmitkDataSelectionWidget.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.h index fa8c8c06b90..5055aa5445a 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkImageMaskingWidget_h #define QmitkImageMaskingWidget_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.cpp index 5be9556c40a..06e3f9d5b4f 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMorphologicalOperationsWidget.h" #include diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.h index b3277a52dbd..19357691868 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMorphologicalOperationsWidget_h #define QmitkMorphologicalOperationsWidget_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesView.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesView.cpp index 11ad998f477..41370bc5978 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesView.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // #define ENABLE_CTK_WIDGETS_WIDGET diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesView.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesView.h index d514c0b8dc8..128d3ccc959 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesView.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkMultiLabelSegmentationUtilitiesView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMultiLabelSegmentationUtilitiesView_h #define QmitkMultiLabelSegmentationUtilitiesView_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.cpp index 6e5aa6b6769..2389dda82b9 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSegmentationUtilityWidget.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.h index d260a12c91b..80e988c1eac 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSegmentationUtilityWidget_h #define QmitkSegmentationUtilityWidget_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.cpp index 0ece4ce49ad..683383c07c8 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSurfaceToImageWidget.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.h index 5f7ef123f64..70e006a2ba3 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSurfaceToImageWidget_h #define QmitkSurfaceToImageWidget_h diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/mitkPluginActivator.cpp index ec33b5310b0..422afba21ca 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" diff --git a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/mitkPluginActivator.h index 3ef597313f8..1a97dd3e6f4 100644 --- a/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.multilabelsegmentation/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_multilabelsegmentation_Activator_h #define org_mitk_gui_qt_multilabelsegmentation_Activator_h diff --git a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/QmitkMxNMultiWidgetEditor.cpp b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/QmitkMxNMultiWidgetEditor.cpp index fa6f8f7f1df..01578a825be 100644 --- a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/QmitkMxNMultiWidgetEditor.cpp +++ b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/QmitkMxNMultiWidgetEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMxNMultiWidgetEditor.h" diff --git a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/QmitkMxNMultiWidgetEditor.h b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/QmitkMxNMultiWidgetEditor.h index e5022c5c277..a0bfedfdbb6 100644 --- a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/QmitkMxNMultiWidgetEditor.h +++ b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/QmitkMxNMultiWidgetEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMXNMULTIWIDGETEDITOR_H #define QMITKMXNMULTIWIDGETEDITOR_H diff --git a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/QmitkMxNMultiWidgetEditorPreferencePage.cpp b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/QmitkMxNMultiWidgetEditorPreferencePage.cpp index 7df622d2777..3cef261dea4 100644 --- a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/QmitkMxNMultiWidgetEditorPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/QmitkMxNMultiWidgetEditorPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMxNMultiWidgetEditorPreferencePage.h" #include diff --git a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/QmitkMxNMultiWidgetEditorPreferencePage.h b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/QmitkMxNMultiWidgetEditorPreferencePage.h index 04e1575ac0e..71dcd3fee0e 100644 --- a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/QmitkMxNMultiWidgetEditorPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/QmitkMxNMultiWidgetEditorPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKMXNMULTIWIDGETEDITORPREFERENCEPAGE_H #define QMITKMXNMULTIWIDGETEDITORPREFERENCEPAGE_H diff --git a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/mitkPluginActivator.cpp index f4e79f46577..4656300ac4b 100644 --- a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" @@ -42,4 +38,4 @@ namespace mitk { return m_Context; } -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/mitkPluginActivator.h index 57910bd4f5b..4d74188209c 100644 --- a/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.mxnmultiwidgeteditor/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical Image Computing. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.openigtlink/src/internal/QmitkOpenIGTLinkManager.cpp b/Plugins/org.mitk.gui.qt.openigtlink/src/internal/QmitkOpenIGTLinkManager.cpp index 3408d06bbd8..9d3746e25ea 100644 --- a/Plugins/org.mitk.gui.qt.openigtlink/src/internal/QmitkOpenIGTLinkManager.cpp +++ b/Plugins/org.mitk.gui.qt.openigtlink/src/internal/QmitkOpenIGTLinkManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.openigtlink/src/internal/QmitkOpenIGTLinkManager.h b/Plugins/org.mitk.gui.qt.openigtlink/src/internal/QmitkOpenIGTLinkManager.h index e78430694b1..c372d873815 100644 --- a/Plugins/org.mitk.gui.qt.openigtlink/src/internal/QmitkOpenIGTLinkManager.h +++ b/Plugins/org.mitk.gui.qt.openigtlink/src/internal/QmitkOpenIGTLinkManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkOpenIGTLinkManager_h diff --git a/Plugins/org.mitk.gui.qt.openigtlink/src/internal/org_mitk_gui_qt_openigtlink_Activator.cpp b/Plugins/org.mitk.gui.qt.openigtlink/src/internal/org_mitk_gui_qt_openigtlink_Activator.cpp index e69ad8b572f..ab1aa184054 100644 --- a/Plugins/org.mitk.gui.qt.openigtlink/src/internal/org_mitk_gui_qt_openigtlink_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.openigtlink/src/internal/org_mitk_gui_qt_openigtlink_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_openigtlink_Activator.h" #include "QmitkOpenIGTLinkManager.h" diff --git a/Plugins/org.mitk.gui.qt.openigtlink/src/internal/org_mitk_gui_qt_openigtlink_Activator.h b/Plugins/org.mitk.gui.qt.openigtlink/src/internal/org_mitk_gui_qt_openigtlink_Activator.h index eb992329f05..dc8217877c9 100644 --- a/Plugins/org.mitk.gui.qt.openigtlink/src/internal/org_mitk_gui_qt_openigtlink_Activator.h +++ b/Plugins/org.mitk.gui.qt.openigtlink/src/internal/org_mitk_gui_qt_openigtlink_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_openigtlink_Activator_h diff --git a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkAddNewPropertyDialog.cpp b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkAddNewPropertyDialog.cpp index 5f7b4c35d1b..0d9c0017b04 100644 --- a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkAddNewPropertyDialog.cpp +++ b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkAddNewPropertyDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAddNewPropertyDialog.h" #include "mitkGetPropertyService.h" diff --git a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkAddNewPropertyDialog.h b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkAddNewPropertyDialog.h index ccf660fe416..16dfad20476 100644 --- a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkAddNewPropertyDialog.h +++ b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkAddNewPropertyDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAddNewPropertyDialog_h #define QmitkAddNewPropertyDialog_h diff --git a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkOverlayManagerView.cpp b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkOverlayManagerView.cpp index 2bc05b2cc75..491e002d1a6 100644 --- a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkOverlayManagerView.cpp +++ b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkOverlayManagerView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkOverlayManagerView.h b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkOverlayManagerView.h index f1112ee23f1..ab4d33a4849 100644 --- a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkOverlayManagerView.h +++ b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/QmitkOverlayManagerView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkOverlayManagerView_h #define QmitkOverlayManagerView_h diff --git a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/mitkGetPropertyService.h b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/mitkGetPropertyService.h index 617256cab1d..b74263af7a3 100644 --- a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/mitkGetPropertyService.h +++ b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/mitkGetPropertyService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGetPropertyService_h #define mitkGetPropertyService_h diff --git a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/org_mitk_gui_qt_overlaymanager_Activator.cpp b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/org_mitk_gui_qt_overlaymanager_Activator.cpp index 7f072809eb5..93768a6acdf 100644 --- a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/org_mitk_gui_qt_overlaymanager_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/org_mitk_gui_qt_overlaymanager_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_overlaymanager_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/org_mitk_gui_qt_overlaymanager_Activator.h b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/org_mitk_gui_qt_overlaymanager_Activator.h index ef72685019f..eae324b287a 100644 --- a/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/org_mitk_gui_qt_overlaymanager_Activator.h +++ b/Plugins/org.mitk.gui.qt.overlaymanager/src/internal/org_mitk_gui_qt_overlaymanager_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_overlaymanager_Activator_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/ConcentrationCurveConverterView.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/ConcentrationCurveConverterView.cpp index c9cad98ddb1..a17296e42af 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/ConcentrationCurveConverterView.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/ConcentrationCurveConverterView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/ConcentrationCurveConverterView.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/ConcentrationCurveConverterView.h index f6e7b8d0cfa..fe42e3ca54f 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/ConcentrationCurveConverterView.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/ConcentrationCurveConverterView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ConcentrationCurveConverterView_h #define ConcentrationCurveConverterView_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/org_mitk_ConcentrationCurveConverterView_Activator.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/org_mitk_ConcentrationCurveConverterView_Activator.cpp index 58fabbeab19..190445b9efe 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/org_mitk_ConcentrationCurveConverterView_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/org_mitk_ConcentrationCurveConverterView_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_ConcentrationCurveConverterView_Activator.h" @@ -26,4 +22,4 @@ See LICENSE.txt or http://www.mitk.org for details. void org_mitk_ConcentrationCurveConverterView_Activator::stop(ctkPluginContext* context) { Q_UNUSED(context); - } \ No newline at end of file + } diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/org_mitk_ConcentrationCurveConverterView_Activator.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/org_mitk_ConcentrationCurveConverterView_Activator.h index 497f394402d..b098f6f9b12 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/org_mitk_ConcentrationCurveConverterView_Activator.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.concentration.mri/src/internal/org_mitk_ConcentrationCurveConverterView_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_ConcentrationCurveConverterView_Activator_h #define org_mitk_ConcentrationCurveConverterView_Activator_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/PerfusionCurveDescriptionParameterView.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/PerfusionCurveDescriptionParameterView.cpp index 07966664c34..58a2b09b74b 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/PerfusionCurveDescriptionParameterView.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/PerfusionCurveDescriptionParameterView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/PerfusionCurveDescriptionParameterView.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/PerfusionCurveDescriptionParameterView.h index 3769bca8b9b..0e91491a8cf 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/PerfusionCurveDescriptionParameterView.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/PerfusionCurveDescriptionParameterView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PerfusionCurveDescriptionParameterView_h #define PerfusionCurveDescriptionParameterView_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/org_mitk_PerfusionCurveDescriptionParameterView_Activator.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/org_mitk_PerfusionCurveDescriptionParameterView_Activator.cpp index 5a630a529a4..4eccf550ac1 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/org_mitk_PerfusionCurveDescriptionParameterView_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/org_mitk_PerfusionCurveDescriptionParameterView_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_PerfusionCurveDescriptionParameterView_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/org_mitk_PerfusionCurveDescriptionParameterView_Activator.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/org_mitk_PerfusionCurveDescriptionParameterView_Activator.h index 9066329ee52..f794e3d3eee 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/org_mitk_PerfusionCurveDescriptionParameterView_Activator.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.curvedescriptor/src/internal/org_mitk_PerfusionCurveDescriptionParameterView_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_PerfusionCurveDescriptionParameterView_Activator_h #define org_mitk_PerfusionCurveDescriptionParameterView_Activator_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/MRPerfusionView.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/MRPerfusionView.cpp index 89e8288c8cf..3cd5da7b70b 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/MRPerfusionView.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/MRPerfusionView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MRPerfusionView.h" @@ -293,7 +289,7 @@ std::string MRPerfusionView::GetFitName() const std::string MRPerfusionView::GetDefaultFitName() const { std::string defaultName = "undefined model"; - + if (this->m_selectedModelFactory.IsNotNull()) { defaultName = this->m_selectedModelFactory->GetClassID(); @@ -1051,7 +1047,7 @@ MRPerfusionView::MRPerfusionView() : m_FittingInProgress(false), m_HasGeneratedN mitk::NodePredicateAnd::Pointer isNoMask = mitk::NodePredicateAnd::New(isImage, mitk::NodePredicateNot::New(isMask)); this->m_IsMaskPredicate = mitk::NodePredicateAnd::New(isMask, mitk::NodePredicateNot::New(mitk::NodePredicateProperty::New("helper object"))).GetPointer(); - + this->m_IsNoMaskImagePredicate = mitk::NodePredicateAnd::New(isNoMask, mitk::NodePredicateNot::New(mitk::NodePredicateProperty::New("helper object"))).GetPointer(); } @@ -1074,7 +1070,7 @@ void MRPerfusionView::OnJobResultsAreAvailable(mitk::modelFit::ModelFitResultNod { //Store the resulting parameter fit image via convenience helper function in data storage //(handles the correct generation of the nodes and their properties) - + mitk::modelFit::StoreResultsInDataStorage(this->GetDataStorage(), results, pJob->GetParentNode()); //this stores the concentration image and AIF concentration image, if generated for this fit in the storage. //if not generated for this fit, relevant nodes are empty. @@ -1149,7 +1145,7 @@ mitk::Image::Pointer MRPerfusionView::ConvertConcentrationImage(bool AIFMode) concentrationGen->SetAbsoluteSignalEnhancement(m_Controls.radioButton_absoluteEnhancement->isChecked()); concentrationGen->SetRelativeSignalEnhancement(m_Controls.radioButton_relativeEnchancement->isChecked()); concentrationGen->SetUsingT1Map(m_Controls.radioButtonUsingT1->isChecked()); - + if (IsTurboFlashSequenceFlag()) { if (AIFMode) diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/MRPerfusionView.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/MRPerfusionView.h index f3e5094cfbb..3801493c0d7 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/MRPerfusionView.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/MRPerfusionView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MRPerfusionView_h #define MRPerfusionView_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/org_mitk_MRPerfusionView_Activator.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/org_mitk_MRPerfusionView_Activator.cpp index 33642417593..c43a942fb49 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/org_mitk_MRPerfusionView_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/org_mitk_MRPerfusionView_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_MRPerfusionView_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/org_mitk_MRPerfusionView_Activator.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/org_mitk_MRPerfusionView_Activator.h index 3955a20625e..d1e6f63cd05 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/org_mitk_MRPerfusionView_Activator.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.mri/src/internal/org_mitk_MRPerfusionView_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_MRPerfusionView_Activator_h #define org_mitk_MRPerfusionView_Activator_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/PETDynamicView.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/PETDynamicView.cpp index d3d249ae15e..ed2966912da 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/PETDynamicView.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/PETDynamicView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "PETDynamicView.h" diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/PETDynamicView.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/PETDynamicView.h index e59e3dd3161..78a4e5f33be 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/PETDynamicView.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/PETDynamicView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PETDynamicView_h #define PETDynamicView_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/org_mitk_PETDynamicView_Activator.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/org_mitk_PETDynamicView_Activator.cpp index 2af122c47ba..8dc73fe5e05 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/org_mitk_PETDynamicView_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/org_mitk_PETDynamicView_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_PETDynamicView_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/org_mitk_PETDynamicView_Activator.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/org_mitk_PETDynamicView_Activator.h index 910c82acfce..f41de531d47 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/org_mitk_PETDynamicView_Activator.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.pet/src/internal/org_mitk_PETDynamicView_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_PETDynamicView_Activator_h #define org_mitk_PETDynamicView_Activator_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/PerfusionDataSimulationView.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/PerfusionDataSimulationView.cpp index bccc9b24bcf..b886c853a0b 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/PerfusionDataSimulationView.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/PerfusionDataSimulationView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/PerfusionDataSimulationView.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/PerfusionDataSimulationView.h index 5b3a6b2e820..54ec965992f 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/PerfusionDataSimulationView.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/PerfusionDataSimulationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PerfusionDataSimulationView_h #define PerfusionDataSimulationView_h diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/org_mitk_PerfusionDataSimulationView_Activator.cpp b/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/org_mitk_PerfusionDataSimulationView_Activator.cpp index 2fa919c8ee3..b80c830bef3 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/org_mitk_PerfusionDataSimulationView_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/org_mitk_PerfusionDataSimulationView_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_PerfusionDataSimulationView_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/org_mitk_PerfusionDataSimulationView_Activator.h b/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/org_mitk_PerfusionDataSimulationView_Activator.h index ffdfcefb3b6..3ee2b38ccfa 100644 --- a/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/org_mitk_PerfusionDataSimulationView_Activator.h +++ b/Plugins/org.mitk.gui.qt.pharmacokinetics.simulation/src/internal/org_mitk_PerfusionDataSimulationView_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_PerfusionDataSimulationView_Activator_h #define org_mitk_PerfusionDataSimulationView_Activator_h diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/PAImageProcessing.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/PAImageProcessing.cpp index 935c0e305f0..7285a949074 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/PAImageProcessing.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/PAImageProcessing.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include @@ -656,7 +652,7 @@ void PAImageProcessing::StartBandpassThread() float BPHighPass = 1000000.0f * m_Controls.BPhigh->value(); // [Now in Hz] float BPLowPass = 1000000.0f * m_Controls.BPlow->value(); // [Now in Hz] - thread->setConfig(BPHighPass, BPLowPass, m_Controls.BPFalloffLow->value(), m_Controls.BPFalloffHigh->value(), + thread->setConfig(BPHighPass, BPLowPass, m_Controls.BPFalloffLow->value(), m_Controls.BPFalloffHigh->value(), config->GetTimeSpacing(), config->GetSpeedOfSound(), m_Controls.IsBFImage->isChecked()); thread->setInputImage(image); thread->setFilterBank(m_FilterBank); diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/PAImageProcessing.h b/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/PAImageProcessing.h index 5776d1283ab..e0b3172f56b 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/PAImageProcessing.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/PAImageProcessing.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PAImageProcessing_h #define PAImageProcessing_h diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.cpp index 42459b35e78..5546ab5a811 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.h" #include "PAImageProcessing.h" diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.h b/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.h index 9124d3d40b7..fe6d9ea9aa5 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.imageprocessing/src/internal/org_mitk_gui_qt_photoacoustics_imageprocessing_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_photoacoustics_imageprocessing_Activator_h #define org_mitk_gui_qt_photoacoustics_imageprocessing_Activator_h diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/PAUSMotionCompensation.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/PAUSMotionCompensation.cpp index 287864d2bdd..a747f6651f8 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/PAUSMotionCompensation.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/PAUSMotionCompensation.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/PAUSMotionCompensation.h b/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/PAUSMotionCompensation.h index ce3746a2d6e..78340975287 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/PAUSMotionCompensation.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/PAUSMotionCompensation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PAUSMotionCompensation_h diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.cpp index ebdf2d87316..ee5313cc7b7 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.h b/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.h index 287326f8d61..50bacd7c85c 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausmotioncompensation/src/internal/org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_photoacoustics_pausmotioncompensation_Activator_h diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/manifest_headers.cmake index b0abe671c4c..bd3c8135016 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "PA US Viewer") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") -set(Require-Plugin org.mitk.gui.qt.common) \ No newline at end of file +set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/QmitkPAUSViewerView.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/QmitkPAUSViewerView.cpp index 213a25e5028..b3191afbf98 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/QmitkPAUSViewerView.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/QmitkPAUSViewerView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/QmitkPAUSViewerView.h b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/QmitkPAUSViewerView.h index 2aa2e07dfa7..f8aaa5d4eee 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/QmitkPAUSViewerView.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/QmitkPAUSViewerView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKPAUSVIEWERVIEW_H_INCLUDED #define QMITKPAUSVIEWERVIEW_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/internal/org_mitk_gui_qt_photoacoustics_pausviewer_Activator.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/internal/org_mitk_gui_qt_photoacoustics_pausviewer_Activator.cpp index 6c6193b3743..e8add315002 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/internal/org_mitk_gui_qt_photoacoustics_pausviewer_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/internal/org_mitk_gui_qt_photoacoustics_pausviewer_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_photoacoustics_pausviewer_Activator.h" #include "QmitkPAUSViewerView.h" diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/internal/org_mitk_gui_qt_photoacoustics_pausviewer_Activator.h b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/internal/org_mitk_gui_qt_photoacoustics_pausviewer_Activator.h index e91e4d7f073..aae45490d22 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/internal/org_mitk_gui_qt_photoacoustics_pausviewer_Activator.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.pausviewer/src/internal/org_mitk_gui_qt_photoacoustics_pausviewer_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITKPAUSVIEWERPLUGINACTIVATOR_H #define _MITKPAUSVIEWERPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/PASimulator.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/PASimulator.cpp index 70042b6ae89..bc0de72a497 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/PASimulator.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/PASimulator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/PASimulator.h b/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/PASimulator.h index 95e699c42eb..60dc6b4dd23 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/PASimulator.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/PASimulator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PASimulator_h #define PASimulator_h diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/org_mitk_gui_qt_photoacousticsimulation_Activator.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/org_mitk_gui_qt_photoacousticsimulation_Activator.cpp index 67678aa34b7..aa825b73588 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/org_mitk_gui_qt_photoacousticsimulation_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/org_mitk_gui_qt_photoacousticsimulation_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_photoacousticsimulation_Activator.h" #include "PASimulator.h" diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/org_mitk_gui_qt_photoacousticsimulation_Activator.h b/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/org_mitk_gui_qt_photoacousticsimulation_Activator.h index f17fee48231..7a0804c5073 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/org_mitk_gui_qt_photoacousticsimulation_Activator.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.simulation/src/internal/org_mitk_gui_qt_photoacousticsimulation_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_photoacousticsimulation_Activator_h #define org_mitk_gui_qt_photoacousticsimulation_Activator_h diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/SpectralUnmixing.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/SpectralUnmixing.cpp index af8b357b5f8..df041d4a4d8 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/SpectralUnmixing.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/SpectralUnmixing.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/SpectralUnmixing.h b/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/SpectralUnmixing.h index 5421581b3b2..bb47e7f612d 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/SpectralUnmixing.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/SpectralUnmixing.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SpectralUnmixing_h #define SpectralUnmixing_h @@ -45,11 +41,11 @@ class SpectralUnmixing : public QmitkAbstractView public: static const std::string VIEW_ID; - + protected: void CreateQtPartControl(QWidget *parent) override; void SetFocus() override; - + /// \brief called by QmitkFunctionality when DataManager's selection has changed void OnSelectionChanged(berry::IWorkbenchPart::Pointer source, const QList &nodes) override; @@ -63,7 +59,7 @@ class SpectralUnmixing : public QmitkAbstractView * @exception if settings fails. Informs with the mitkthorw information of the filter as QMessageBox */ void DoImageProcessing(); - + /** * \brief slots are there to show/hide input tables for weights-, relative error and SO2 settings ig they are not needed */ diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.cpp b/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.cpp index 000fc8d83da..6964b0ff61c 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.h b/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.h index 2dd29d09797..42d07daaa1e 100644 --- a/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.h +++ b/Plugins/org.mitk.gui.qt.photoacoustics.spectralunmixing/src/internal/org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_photoacoustics_spectralunmixing_Activator_h diff --git a/Plugins/org.mitk.gui.qt.pointsetinteraction/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.pointsetinteraction/manifest_headers.cmake index 12c8ebbc7ce..95f01457c31 100644 --- a/Plugins/org.mitk.gui.qt.pointsetinteraction/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.pointsetinteraction/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Pointset Interaction") set(Plugin-Version "0.9") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") -set(Require-Plugin org.mitk.gui.qt.common) \ No newline at end of file +set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionView.cpp b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionView.cpp index b23429886cf..1c1d18734ff 100755 --- a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionView.cpp +++ b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk related includes #include "QmitkPointSetInteractionView.h" diff --git a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionView.h b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionView.h index b8b27f6caa6..2087d208e80 100755 --- a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionView.h +++ b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/QmitkPointSetInteractionView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QmitkPointSetInteraction_H__INCLUDED) #define QmitkPointSetInteraction_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/mitkPluginActivator.cpp index e42254b5ceb..35c5b6eff88 100644 --- a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkPointSetInteractionView.h" diff --git a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/mitkPluginActivator.h index bb06528f63a..786540353e0 100644 --- a/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.pointsetinteraction/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/PointSetInteractionMultispectrum.cpp b/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/PointSetInteractionMultispectrum.cpp index eb919988435..e3911c8ce68 100644 --- a/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/PointSetInteractionMultispectrum.cpp +++ b/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/PointSetInteractionMultispectrum.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ - The Medical Imaging Interaction Toolkit (MITK) +The Medical Imaging Interaction Toolkit (MITK) - Copyright (c) German Cancer Research Center, - Division of Medical and Biological Informatics. - All rights reserved. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. - This software is distributed WITHOUT ANY WARRANTY; without - even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. - See LICENSE.txt or http://www.mitk.org for details. - - ===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/PointSetInteractionMultispectrum.h b/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/PointSetInteractionMultispectrum.h index 692836d43ea..3cc3aca58ee 100644 --- a/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/PointSetInteractionMultispectrum.h +++ b/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/PointSetInteractionMultispectrum.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef PointSetInteractionMultispectrum_h diff --git a/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.cpp b/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.cpp index 5b0819f30f4..316f60f3e1c 100644 --- a/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.h b/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.h index 49b11595420..ad19f09da39 100644 --- a/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.h +++ b/Plugins/org.mitk.gui.qt.pointsetinteractionmultispectrum/src/internal/org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_pointsetinteractionmultispectrum_Activator_h diff --git a/Plugins/org.mitk.gui.qt.preprocessing.resampling/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.preprocessing.resampling/manifest_headers.cmake index 0eba5ba0ebd..36feb434f42 100644 --- a/Plugins/org.mitk.gui.qt.preprocessing.resampling/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.preprocessing.resampling/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Preprocessing Resampling") set(Plugin-Version "1.0") -set(Plugin-Vendor "DKFZ; Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common.legacy) diff --git a/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/QmitkPreprocessingResamplingView.cpp b/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/QmitkPreprocessingResamplingView.cpp index bf997271184..738ef2b5fbb 100644 --- a/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/QmitkPreprocessingResamplingView.cpp +++ b/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/QmitkPreprocessingResamplingView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPreprocessingResamplingView.h" diff --git a/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/QmitkPreprocessingResamplingView.h b/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/QmitkPreprocessingResamplingView.h index 7f76bfebef4..8d9d85ddeb8 100644 --- a/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/QmitkPreprocessingResamplingView.h +++ b/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/QmitkPreprocessingResamplingView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QmitkPreprocessingResamplingView_H__INCLUDED) #define QmitkPreprocessingResamplingView_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/mitkPreprocessingResamplingActivator.cpp b/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/mitkPreprocessingResamplingActivator.cpp index 3f1fe33bef6..5e01f89f6c5 100644 --- a/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/mitkPreprocessingResamplingActivator.cpp +++ b/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/mitkPreprocessingResamplingActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPreprocessingResamplingActivator.h" #include "QmitkPreprocessingResamplingView.h" diff --git a/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/mitkPreprocessingResamplingActivator.h b/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/mitkPreprocessingResamplingActivator.h index c757c5502c9..8d1a40ff76b 100644 --- a/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/mitkPreprocessingResamplingActivator.h +++ b/Plugins/org.mitk.gui.qt.preprocessing.resampling/src/internal/mitkPreprocessingResamplingActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKBPREPROCESSINGRESAMPLINGACTIVATOR_H #define MITKBPREPROCESSINGRESAMPLINGACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.properties/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.properties/manifest_headers.cmake index 49a9ff6bc5e..14c703f95bd 100644 --- a/Plugins/org.mitk.gui.qt.properties/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.properties/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Properties") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkAddNewPropertyDialog.cpp b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkAddNewPropertyDialog.cpp index 56282f026d9..c91a5e75240 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkAddNewPropertyDialog.cpp +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkAddNewPropertyDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAddNewPropertyDialog.h" #include "mitkGetPropertyService.h" diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkAddNewPropertyDialog.h b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkAddNewPropertyDialog.h index e94492754f9..208c525666b 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkAddNewPropertyDialog.h +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkAddNewPropertyDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkAddNewPropertyDialog_h #define QmitkAddNewPropertyDialog_h diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertiesPreferencePage.cpp b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertiesPreferencePage.cpp index dcdb9982a5e..702fab3cb94 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertiesPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertiesPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertiesPreferencePage.h" #include diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertiesPreferencePage.h b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertiesPreferencePage.h index 52291863510..a204e50038d 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertiesPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertiesPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertiesPreferencePage_h #define QmitkPropertiesPreferencePage_h diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyItemSortFilterProxyModel.cpp b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyItemSortFilterProxyModel.cpp index e927c371cfa..c0cceb0cdb6 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyItemSortFilterProxyModel.cpp +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyItemSortFilterProxyModel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPropertyItemSortFilterProxyModel.h" diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyItemSortFilterProxyModel.h b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyItemSortFilterProxyModel.h index ba126e7a367..86733e47b84 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyItemSortFilterProxyModel.h +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyItemSortFilterProxyModel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyItemSortFilterProxyModel_h #define QmitkPropertyItemSortFilterProxyModel_h diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyTreeView.cpp b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyTreeView.cpp index bcf257b28ca..98933fe4294 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyTreeView.cpp +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyTreeView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkGetPropertyService.h" #include "QmitkAddNewPropertyDialog.h" diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyTreeView.h b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyTreeView.h index da7050509f5..4c5c23f6c1e 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyTreeView.h +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/QmitkPropertyTreeView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPropertyTreeView_h #define QmitkPropertyTreeView_h diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/mitkGetPropertyService.h b/Plugins/org.mitk.gui.qt.properties/src/internal/mitkGetPropertyService.h index 3044269f1d2..e9f423bc01c 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/mitkGetPropertyService.h +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/mitkGetPropertyService.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef mitkGetPropertyService_h #define mitkGetPropertyService_h diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/org_mitk_gui_qt_properties_Activator.cpp b/Plugins/org.mitk.gui.qt.properties/src/internal/org_mitk_gui_qt_properties_Activator.cpp index 1aada0cbddc..2211f4f2d18 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/org_mitk_gui_qt_properties_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/org_mitk_gui_qt_properties_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_properties_Activator.h" #include "QmitkPropertiesPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.properties/src/internal/org_mitk_gui_qt_properties_Activator.h b/Plugins/org.mitk.gui.qt.properties/src/internal/org_mitk_gui_qt_properties_Activator.h index a9eca714ffc..123fb4a1098 100644 --- a/Plugins/org.mitk.gui.qt.properties/src/internal/org_mitk_gui_qt_properties_Activator.h +++ b/Plugins/org.mitk.gui.qt.properties/src/internal/org_mitk_gui_qt_properties_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_properties_Activator_h #define org_mitk_gui_qt_properties_Activator_h diff --git a/Plugins/org.mitk.gui.qt.python/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.python/manifest_headers.cmake index a083a5b4a63..3c21bc8d852 100644 --- a/Plugins/org.mitk.gui.qt.python/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.python/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Python") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.python/src/internal/QmitkPythonView.cpp b/Plugins/org.mitk.gui.qt.python/src/internal/QmitkPythonView.cpp index 281c11b20b6..2f00d0aa011 100644 --- a/Plugins/org.mitk.gui.qt.python/src/internal/QmitkPythonView.cpp +++ b/Plugins/org.mitk.gui.qt.python/src/internal/QmitkPythonView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkPythonView.h" #include diff --git a/Plugins/org.mitk.gui.qt.python/src/internal/QmitkPythonView.h b/Plugins/org.mitk.gui.qt.python/src/internal/QmitkPythonView.h index 02b881ee629..577e1f275e2 100644 --- a/Plugins/org.mitk.gui.qt.python/src/internal/QmitkPythonView.h +++ b/Plugins/org.mitk.gui.qt.python/src/internal/QmitkPythonView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkPythonView_H_ #define QmitkPythonView_H_ diff --git a/Plugins/org.mitk.gui.qt.python/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.python/src/internal/mitkPluginActivator.cpp index 8fb937ab321..0249049b5b4 100644 --- a/Plugins/org.mitk.gui.qt.python/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.python/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkPythonView.h" diff --git a/Plugins/org.mitk.gui.qt.python/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.python/src/internal/mitkPluginActivator.h index 83c9b713d85..5f499ce5c3a 100644 --- a/Plugins/org.mitk.gui.qt.python/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.python/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.radiomics/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.radiomics/manifest_headers.cmake index 36b9e2c447e..866460e81c1 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.radiomics/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Radiomics") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ; Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkGIFConfigurationPanel.cpp b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkGIFConfigurationPanel.cpp index c5b1e192469..b16243f70e5 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkGIFConfigurationPanel.cpp +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkGIFConfigurationPanel.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkGIFConfigurationPanel.h" diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkGIFConfigurationPanel.h b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkGIFConfigurationPanel.h index 1b60f7bea03..0c22040ee69 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkGIFConfigurationPanel.h +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkGIFConfigurationPanel.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_GIF_CONFIGURATION_PANEL_H #define QMITK_GIF_CONFIGURATION_PANEL_H @@ -47,4 +43,4 @@ namespace mitkUI }; } -#endif // QMITK_GIF_CONFIGURATION_PANEL_H \ No newline at end of file +#endif // QMITK_GIF_CONFIGURATION_PANEL_H diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsArithmetricView.cpp b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsArithmetricView.cpp index 1bc57dd3b6a..f53736c0780 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsArithmetricView.cpp +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsArithmetricView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRadiomicsArithmetricView.h" diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsArithmetricView.h b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsArithmetricView.h index 8dad6a91093..a5344d99860 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsArithmetricView.h +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsArithmetricView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QmitkRadiomicsArithmetricView_H__INCLUDED) #define QmitkRadiomicsArithmetricView_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsMaskProcessingView.cpp b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsMaskProcessingView.cpp index 8c2f486f6a0..188c09ac366 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsMaskProcessingView.cpp +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsMaskProcessingView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRadiomicsMaskProcessingView.h" diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsMaskProcessingView.h b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsMaskProcessingView.h index 258f907469c..d207583f438 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsMaskProcessingView.h +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsMaskProcessingView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QmitkRadiomicsMaskProcessingView_H__INCLUDED) #define QmitkRadiomicsMaskProcessingView_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsStatisticView.cpp b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsStatisticView.cpp index 1cf4823b553..fd59e2b3cc8 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsStatisticView.cpp +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsStatisticView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRadiomicsStatisticView.h" diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsStatisticView.h b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsStatisticView.h index 1567d9192c6..b7d1878d8a1 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsStatisticView.h +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsStatisticView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QmitkRadiomicsStatisticView_H__INCLUDED) #define QmitkRadiomicsStatisticView_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsTransformationView.cpp b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsTransformationView.cpp index 803df97cc5a..c27b35f1526 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsTransformationView.cpp +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsTransformationView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRadiomicsTransformationView.h" diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsTransformationView.h b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsTransformationView.h index 0285024f7bf..5e7fa0836cf 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsTransformationView.h +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/QmitkRadiomicsTransformationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #if !defined(QmitkRadiomicsTransformationView_H__INCLUDED) #define QmitkRadiomicsTransformationView_H__INCLUDED diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/mitkBasicImageProcessingActivator.cpp b/Plugins/org.mitk.gui.qt.radiomics/src/internal/mitkBasicImageProcessingActivator.cpp index fb8849cfb43..8e10d26c357 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/mitkBasicImageProcessingActivator.cpp +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/mitkBasicImageProcessingActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkBasicImageProcessingActivator.h" #include "QmitkRadiomicsStatisticView.h" diff --git a/Plugins/org.mitk.gui.qt.radiomics/src/internal/mitkBasicImageProcessingActivator.h b/Plugins/org.mitk.gui.qt.radiomics/src/internal/mitkBasicImageProcessingActivator.h index ceed7a5396e..67f3577052e 100644 --- a/Plugins/org.mitk.gui.qt.radiomics/src/internal/mitkBasicImageProcessingActivator.h +++ b/Plugins/org.mitk.gui.qt.radiomics/src/internal/mitkBasicImageProcessingActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKRadiomicsStatisticACTIVATOR_H #define MITKRadiomicsStatisticACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.remeshing/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.remeshing/manifest_headers.cmake index ec9cf23fc13..e207d0cd63b 100644 --- a/Plugins/org.mitk.gui.qt.remeshing/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.remeshing/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Remeshing") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.datamanager) diff --git a/Plugins/org.mitk.gui.qt.remeshing/src/internal/QmitkRemeshingView.cpp b/Plugins/org.mitk.gui.qt.remeshing/src/internal/QmitkRemeshingView.cpp index f4b9bd440b4..51c3543f4d2 100644 --- a/Plugins/org.mitk.gui.qt.remeshing/src/internal/QmitkRemeshingView.cpp +++ b/Plugins/org.mitk.gui.qt.remeshing/src/internal/QmitkRemeshingView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkRemeshingView.h" diff --git a/Plugins/org.mitk.gui.qt.remeshing/src/internal/QmitkRemeshingView.h b/Plugins/org.mitk.gui.qt.remeshing/src/internal/QmitkRemeshingView.h index b22646b7c6d..17bf059628b 100644 --- a/Plugins/org.mitk.gui.qt.remeshing/src/internal/QmitkRemeshingView.h +++ b/Plugins/org.mitk.gui.qt.remeshing/src/internal/QmitkRemeshingView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkRemeshingView_h #define QmitkRemeshingView_h diff --git a/Plugins/org.mitk.gui.qt.remeshing/src/internal/org_mitk_gui_qt_remeshing_Activator.cpp b/Plugins/org.mitk.gui.qt.remeshing/src/internal/org_mitk_gui_qt_remeshing_Activator.cpp index 6dad4976827..80e2706759f 100644 --- a/Plugins/org.mitk.gui.qt.remeshing/src/internal/org_mitk_gui_qt_remeshing_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.remeshing/src/internal/org_mitk_gui_qt_remeshing_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_remeshing_Activator.h" #include "QmitkRemeshingView.h" diff --git a/Plugins/org.mitk.gui.qt.remeshing/src/internal/org_mitk_gui_qt_remeshing_Activator.h b/Plugins/org.mitk.gui.qt.remeshing/src/internal/org_mitk_gui_qt_remeshing_Activator.h index 21d0721e03f..bde213bb43f 100644 --- a/Plugins/org.mitk.gui.qt.remeshing/src/internal/org_mitk_gui_qt_remeshing_Activator.h +++ b/Plugins/org.mitk.gui.qt.remeshing/src/internal/org_mitk_gui_qt_remeshing_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_remeshing_Activator_h #define org_mitk_gui_qt_remeshing_Activator_h diff --git a/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/QmitkRenderWindowManagerView.cpp b/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/QmitkRenderWindowManagerView.cpp index 99d3386a597..7645d8211dd 100644 --- a/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/QmitkRenderWindowManagerView.cpp +++ b/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/QmitkRenderWindowManagerView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // render window manager plugin #include "QmitkRenderWindowManagerView.h" diff --git a/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/QmitkRenderWindowManagerView.h b/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/QmitkRenderWindowManagerView.h index ac4b3b4a4b1..052a1bda3e9 100644 --- a/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/QmitkRenderWindowManagerView.h +++ b/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/QmitkRenderWindowManagerView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKRENDERWINDOWMANAGERVIEW_H #define QMITKRENDERWINDOWMANAGERVIEW_H diff --git a/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/mitkPluginActivator.cpp index 460e788f1d2..e64253eeddc 100644 --- a/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkRenderWindowManagerView.h" diff --git a/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/mitkPluginActivator.h index e391a68f8dc..cd21eeadae4 100644 --- a/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.renderwindowmanager/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.segmentation/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.segmentation/manifest_headers.cmake index f7cd162d1a7..ebbe0894245 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.segmentation/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Segmentation") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager) diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/QmitkSegmentationPreferencePage.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/QmitkSegmentationPreferencePage.cpp index 530a65dbdc3..a7a049c890a 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/QmitkSegmentationPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/QmitkSegmentationPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSegmentationPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/QmitkSegmentationPreferencePage.h b/Plugins/org.mitk.gui.qt.segmentation/src/QmitkSegmentationPreferencePage.h index f7cd1dad02d..3a34f4c8fa5 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/QmitkSegmentationPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/QmitkSegmentationPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSegmentationPreferencePage_h_included diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/Common/QmitkDataSelectionWidget.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/Common/QmitkDataSelectionWidget.cpp index 0e88cd5f437..02cbeede6ec 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/Common/QmitkDataSelectionWidget.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/Common/QmitkDataSelectionWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDataSelectionWidget.h" #include "../mitkPluginActivator.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/Common/QmitkDataSelectionWidget.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/Common/QmitkDataSelectionWidget.h index 486e9dcb2e7..21592bfb246 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/Common/QmitkDataSelectionWidget.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/Common/QmitkDataSelectionWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkDataSelectionWidget_h #define QmitkDataSelectionWidget_h diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkAutocropAction.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkAutocropAction.cpp index adc4b8e690c..aaf3dc6f53d 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkAutocropAction.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkAutocropAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkAutocropAction.h" #include "mitkAutoCropImageFilter.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkAutocropAction.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkAutocropAction.h index 5d2fcef7327..db89f7816d6 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkAutocropAction.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkAutocropAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_AUTOCROPACTION_H #define QMITK_AUTOCROPACTION_H diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkCreatePolygonModelAction.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkCreatePolygonModelAction.cpp index 61cb3b86e87..16b6eaa9771 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkCreatePolygonModelAction.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkCreatePolygonModelAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkCreatePolygonModelAction.h" // MITK diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkCreatePolygonModelAction.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkCreatePolygonModelAction.h index 57ecf3e03df..db2e07bc708 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkCreatePolygonModelAction.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkCreatePolygonModelAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKCREATEPOLYGONMODELACTION_H #define QMITKCREATEPOLYGONMODELACTION_H diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkDeformableClippingPlaneView.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkDeformableClippingPlaneView.cpp index 0440335a117..6dbca7e5738 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkDeformableClippingPlaneView.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkDeformableClippingPlaneView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDeformableClippingPlaneView.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkDeformableClippingPlaneView.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkDeformableClippingPlaneView.h index 6f1419c0fb5..6bad16198bf 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkDeformableClippingPlaneView.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkDeformableClippingPlaneView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKDEFORMABLECLIPPINGPLANEVIEW_H_INCLUDED #define _QMITKDEFORMABLECLIPPINGPLANEVIEW_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkOtsuAction.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkOtsuAction.cpp index c1a272a02d7..4cec41b4c0d 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkOtsuAction.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkOtsuAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkOtsuAction.h" // MITK diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkOtsuAction.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkOtsuAction.h index 125d74d3a45..143fd164f20 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkOtsuAction.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkOtsuAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKOTSUACTION_H #define QMITKOTSUACTION_H diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkSegmentationView.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkSegmentationView.cpp index d2861fef052..29c2fb61891 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkSegmentationView.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkSegmentationView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkSegmentationView.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkSegmentationView.h index 1e839bc8571..32e1ccd3e43 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkSegmentationView.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkSegmentationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSEGMENTATIONVIEW_H #define QMITKSEGMENTATIONVIEW_H diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkThresholdAction.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkThresholdAction.cpp index ecf13691cc5..01413c81a02 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkThresholdAction.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkThresholdAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkThresholdAction.h" // MITK diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkThresholdAction.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkThresholdAction.h index 3e81d95e61b..99e6cab6d19 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkThresholdAction.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/QmitkThresholdAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKTHRESHOLDACTION_H #define QMITKTHRESHOLDACTION_H diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.cpp index 36d3e46756f..6888f48345d 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkBooleanOperationsWidget.h" #include "../../Common/QmitkDataSelectionWidget.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.h index d0e0ffee86c..76e56b16a84 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/BooleanOperations/QmitkBooleanOperationsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkBooleanOperationsWidget_h #define QmitkBooleanOperationsWidget_h diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ContourModelToImage/QmitkContourModelToImageWidget.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ContourModelToImage/QmitkContourModelToImageWidget.cpp index 68da1f47d06..5211d000ac5 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ContourModelToImage/QmitkContourModelToImageWidget.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ContourModelToImage/QmitkContourModelToImageWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkContourModelToImageWidget.h" #include "mitkImage.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ContourModelToImage/QmitkContourModelToImageWidget.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ContourModelToImage/QmitkContourModelToImageWidget.h index 6a824db71a6..c31fb9f4dc9 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ContourModelToImage/QmitkContourModelToImageWidget.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ContourModelToImage/QmitkContourModelToImageWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkContourModelToImageWidget_h #define QmitkContourModelToImageWidget_h diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.cpp index d707feba0b1..4b0c55f6d13 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkImageMaskingWidget.h" #include "mitkImage.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.h index d4f12b2005c..374d9bc5c2f 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/ImageMasking/QmitkImageMaskingWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkImageMaskingWidget_h #define QmitkImageMaskingWidget_h diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.cpp index 3a655a4bdd4..18071853023 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkMorphologicalOperationsWidget.h" #include diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.h index 85752d65743..386b1152b40 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/MorphologicalOperations/QmitkMorphologicalOperationsWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkMorphologicalOperationsWidget_h #define QmitkMorphologicalOperationsWidget_h diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilitiesView.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilitiesView.cpp index 6f23a8e237a..c170fcac65d 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilitiesView.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilitiesView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSegmentationUtilitiesView.h" #include "BooleanOperations/QmitkBooleanOperationsWidget.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilitiesView.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilitiesView.h index 0a680f37088..05099face4d 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilitiesView.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilitiesView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSegmentationUtilitiesView_h #define QmitkSegmentationUtilitiesView_h diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.cpp index 6e5aa6b6769..2389dda82b9 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSegmentationUtilityWidget.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.h index d260a12c91b..80e988c1eac 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/QmitkSegmentationUtilityWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSegmentationUtilityWidget_h #define QmitkSegmentationUtilityWidget_h diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.cpp index 693c70910dc..31ebc70831d 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSurfaceToImageWidget.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.h index 5b629453608..9c8895fbe3e 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/SegmentationUtilities/SurfaceToImage/QmitkSurfaceToImageWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkSurfaceToImageWidget_h #define QmitkSurfaceToImageWidget_h diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.segmentation/src/internal/mitkPluginActivator.cpp index e575c7550a7..c21a7055b0f 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkSegmentationView.h" diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/mitkPluginActivator.h index 60dc7f6b446..e5dfcc16630 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.segmentation/src/internal/segmentation.h b/Plugins/org.mitk.gui.qt.segmentation/src/internal/segmentation.h index 3bfb91f6b1d..a0716fdc50e 100644 --- a/Plugins/org.mitk.gui.qt.segmentation/src/internal/segmentation.h +++ b/Plugins/org.mitk.gui.qt.segmentation/src/internal/segmentation.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QEMBED_1804289383 #define _QEMBED_1804289383 diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeAddToSemanticRelationsAction.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeAddToSemanticRelationsAction.cpp index 02821e6490c..536ddcc254a 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeAddToSemanticRelationsAction.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeAddToSemanticRelationsAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkDataNodeAddToSemanticRelationsAction.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeAddToSemanticRelationsAction.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeAddToSemanticRelationsAction.h index 2048221172e..d6e8e8cbb3a 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeAddToSemanticRelationsAction.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeAddToSemanticRelationsAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEADDTOSEMANTICRELATIONSACTION_H #define QMITKDATANODEADDTOSEMANTICRELATIONSACTION_H @@ -46,7 +42,7 @@ namespace AddToSemanticRelationsAction * @param dataNode The data node to add. */ MITK_GUI_SEMANTICRELATIONS_EXPORT void Run(mitk::DataStorage* dataStorage, const mitk::DataNode* image); - + void AddImage(mitk::DataStorage* dataStorage, const mitk::DataNode* image); void AddSegmentation(mitk::DataStorage* dataStorage, const mitk::DataNode* segmentation); } diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeRemoveFromSemanticRelationsAction.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeRemoveFromSemanticRelationsAction.cpp index 30ac801473a..902647c9736 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeRemoveFromSemanticRelationsAction.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeRemoveFromSemanticRelationsAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkDataNodeRemoveFromSemanticRelationsAction.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeRemoveFromSemanticRelationsAction.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeRemoveFromSemanticRelationsAction.h index 998beb6747b..96c91edbac0 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeRemoveFromSemanticRelationsAction.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeRemoveFromSemanticRelationsAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEREMOVEFROMSEMANTICRELATIONSACTION_H #define QMITKDATANODEREMOVEFROMSEMANTICRELATIONSACTION_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetControlPointAction.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetControlPointAction.cpp index 070da81ebbe..125503f0da5 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetControlPointAction.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetControlPointAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkDataNodeSetControlPointAction.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetControlPointAction.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetControlPointAction.h index e5bb5485684..c2b63db7511 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetControlPointAction.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetControlPointAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODESETCONTROLPOINTACTION_H #define QMITKDATANODESETCONTROLPOINTACTION_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetInformationTypeAction.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetInformationTypeAction.cpp index f5fc1816fec..304758f6587 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetInformationTypeAction.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetInformationTypeAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkDataNodeSetInformationTypeAction.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetInformationTypeAction.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetInformationTypeAction.h index 56316dc7d81..a213d81ca02 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetInformationTypeAction.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeSetInformationTypeAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODESETINFORMATIONTYPEACTION_H #define QMITKDATANODESETINFORMATIONTYPEACTION_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeUnlinkFromLesionAction.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeUnlinkFromLesionAction.cpp index 3c1619e8f35..5cd80458f06 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeUnlinkFromLesionAction.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeUnlinkFromLesionAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkDataNodeUnlinkFromLesionAction.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeUnlinkFromLesionAction.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeUnlinkFromLesionAction.h index 960f677997a..c1608031e55 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeUnlinkFromLesionAction.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataNodeUnlinkFromLesionAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATANODEUNLINKFROMLESIONACTION_H #define QMITKDATANODEUNLINKFROMLESIONACTION_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataSetOpenInAction.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataSetOpenInAction.cpp index 6019891049f..4447ba851d5 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataSetOpenInAction.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataSetOpenInAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkDataSetOpenInAction.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataSetOpenInAction.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataSetOpenInAction.h index 3800f3e287f..9a9925ac04c 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataSetOpenInAction.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkDataSetOpenInAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDATASETOPENINACTION_H #define QMITKDATASETOPENINACTION_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkFocusOnLesionAction.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkFocusOnLesionAction.cpp index bd507fdd94d..46d828e71d7 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkFocusOnLesionAction.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkFocusOnLesionAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkFocusOnLesionAction.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkFocusOnLesionAction.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkFocusOnLesionAction.h index d52c78397fa..485445c1dd8 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkFocusOnLesionAction.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkFocusOnLesionAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLESIONSHOWINACTION_H #define QMITKLESIONSHOWINACTION_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLabelSetJumpToAction.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLabelSetJumpToAction.cpp index b14aa270274..23cefceab6f 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLabelSetJumpToAction.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLabelSetJumpToAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // mitk gui qt application plugin #include "QmitkLabelSetJumpToAction.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLabelSetJumpToAction.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLabelSetJumpToAction.h index 5552d46a204..07abfbf05b3 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLabelSetJumpToAction.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLabelSetJumpToAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLABELSETJUMPTOACTION_H #define QMITKLABELSETJUMPTOACTION_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLesionInfoWidget.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLesionInfoWidget.cpp index 7733d6f650e..c9e6cc8d404 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLesionInfoWidget.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLesionInfoWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkLesionInfoWidget.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLesionInfoWidget.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLesionInfoWidget.h index f675f664fa3..277b227c340 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLesionInfoWidget.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkLesionInfoWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKLESIONINFOWIDGET_H #define QMITKLESIONINFOWIDGET_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsContextMenu.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsContextMenu.cpp index c96acefbbe9..a05a72cfc49 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsContextMenu.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsContextMenu.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkSemanticRelationsContextMenu.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsContextMenu.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsContextMenu.h index 9189ea25e2a..2c452b3fdfa 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsContextMenu.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsContextMenu.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSEMANTICRELATIONSCONTEXTMENU_H #define QMITKSEMANTICRELATIONSCONTEXTMENU_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsNodeSelectionDialog.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsNodeSelectionDialog.cpp index 346e265571d..a49589c6567 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsNodeSelectionDialog.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsNodeSelectionDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkSemanticRelationsNodeSelectionDialog.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsNodeSelectionDialog.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsNodeSelectionDialog.h index 3efc40031d9..005cff3ba16 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsNodeSelectionDialog.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsNodeSelectionDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSEMANTICRELATIONSNODESELECTIONDIALOG_H #define QMITKSEMANTICRELATIONSNODESELECTIONDIALOG_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsStatisticsView.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsStatisticsView.cpp index cf5a0f862e1..9862b391464 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsStatisticsView.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsStatisticsView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkSemanticRelationsStatisticsView.h" @@ -88,4 +84,4 @@ void QmitkSemanticRelationsStatisticsView::AddToComboBox(const mitk::SemanticTyp // add the caseID to the combo box, as it is not already contained m_Controls.caseIDComboBox->addItem(QString::fromStdString(caseID)); } -} \ No newline at end of file +} diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsStatisticsView.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsStatisticsView.h index 9da6d4bb257..6069f7f0824 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsStatisticsView.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsStatisticsView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSEMANTICRELATIONSSTATISTICSVIEW_H #define QMITKSEMANTICRELATIONSSTATISTICSVIEW_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsView.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsView.cpp index 19c4b7c8bad..665a4ab08a1 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsView.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // semantic relations plugin #include "QmitkSemanticRelationsView.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsView.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsView.h index 14be82a7822..32e58935025 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsView.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/QmitkSemanticRelationsView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSEMANTICRELATIONSVIEW_H #define QMITKSEMANTICRELATIONSVIEW_H diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/mitkPluginActivator.cpp index d05c04421dc..883a0f8650e 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkSemanticRelationsStatisticsView.h" diff --git a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/mitkPluginActivator.h index db67eb7674e..8390401f6ea 100644 --- a/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.semanticrelations/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/SpectroCamRecorder.cpp b/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/SpectroCamRecorder.cpp index 46be4bcdeeb..77b0e8d92fe 100644 --- a/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/SpectroCamRecorder.cpp +++ b/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/SpectroCamRecorder.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry diff --git a/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/SpectroCamRecorder.h b/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/SpectroCamRecorder.h index 2a43b51cb14..8b66e67852a 100644 --- a/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/SpectroCamRecorder.h +++ b/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/SpectroCamRecorder.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef SpectroCamRecorder_h diff --git a/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/org_mitk_gui_qt_spectrocamrecorder_Activator.cpp b/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/org_mitk_gui_qt_spectrocamrecorder_Activator.cpp index 9602aa41546..1f23f179957 100644 --- a/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/org_mitk_gui_qt_spectrocamrecorder_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/org_mitk_gui_qt_spectrocamrecorder_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_spectrocamrecorder_Activator.h" #include "SpectroCamRecorder.h" diff --git a/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/org_mitk_gui_qt_spectrocamrecorder_Activator.h b/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/org_mitk_gui_qt_spectrocamrecorder_Activator.h index 6d7758dd80c..150987c1d6f 100644 --- a/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/org_mitk_gui_qt_spectrocamrecorder_Activator.h +++ b/Plugins/org.mitk.gui.qt.spectrocamrecorder/src/internal/org_mitk_gui_qt_spectrocamrecorder_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_spectrocamrecorder_Activator_h diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/manifest_headers.cmake index 4f9014d2b50..78fcab24187 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK StdMultiWidget Editor") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/QmitkStdMultiWidgetEditor.cpp b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/QmitkStdMultiWidgetEditor.cpp index 66d3120fe50..006e14afbb7 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/QmitkStdMultiWidgetEditor.cpp +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/QmitkStdMultiWidgetEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStdMultiWidgetEditor.h" diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/QmitkStdMultiWidgetEditor.h b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/QmitkStdMultiWidgetEditor.h index 93ea180ac1e..044114fbda1 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/QmitkStdMultiWidgetEditor.h +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/QmitkStdMultiWidgetEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKSTDMULTIWIDGETEDITOR_H #define QMITKSTDMULTIWIDGETEDITOR_H @@ -31,7 +27,7 @@ class QmitkStdMultiWidget; class QmitkStdMultiWidgetEditorPrivate; /** - * @brief + * @brief */ class ORG_MITK_GUI_QT_STDMULTIWIDGETEDITOR QmitkStdMultiWidgetEditor final : public QmitkAbstractMultiWidgetEditor, public mitk::ILinkedRenderWindowPart diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.cpp b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.cpp index af90a3b051a..ec507dbcc78 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkStdMultiWidgetEditorPreferencePage.h" diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.h b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.h index 6253c9ea672..60b3c5c45b6 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/QmitkStdMultiWidgetEditorPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkStdMultiWidgetEditorPreferencePage_h #define QmitkStdMultiWidgetEditorPreferencePage_h diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.cpp b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.cpp index ea5dbac05f6..7705e5867a6 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_stdmultiwidgeteditor_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.h b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.h index 162fe210d29..bf050217ab0 100644 --- a/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.h +++ b/Plugins/org.mitk.gui.qt.stdmultiwidgeteditor/src/internal/org_mitk_gui_qt_stdmultiwidgeteditor_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_stdmultiwidgeteditor_Activator_H_ diff --git a/Plugins/org.mitk.gui.qt.toftutorial/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.toftutorial/manifest_headers.cmake index bbad6b940d3..6b29235e0ab 100644 --- a/Plugins/org.mitk.gui.qt.toftutorial/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.toftutorial/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK-ToF Tutorial") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "www.mitk.org/wiki/MITK-ToF") -set(Require-Plugin org.mitk.gui.qt.common) \ No newline at end of file +set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.toftutorial/src/internal/QmitkToFTutorialView.cpp b/Plugins/org.mitk.gui.qt.toftutorial/src/internal/QmitkToFTutorialView.cpp index 2abda3de6c6..add81e5aca8 100644 --- a/Plugins/org.mitk.gui.qt.toftutorial/src/internal/QmitkToFTutorialView.cpp +++ b/Plugins/org.mitk.gui.qt.toftutorial/src/internal/QmitkToFTutorialView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.toftutorial/src/internal/QmitkToFTutorialView.h b/Plugins/org.mitk.gui.qt.toftutorial/src/internal/QmitkToFTutorialView.h index 5a6b99238c1..8af9ac39fd1 100644 --- a/Plugins/org.mitk.gui.qt.toftutorial/src/internal/QmitkToFTutorialView.h +++ b/Plugins/org.mitk.gui.qt.toftutorial/src/internal/QmitkToFTutorialView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToFTutorialView_h #define QmitkToFTutorialView_h diff --git a/Plugins/org.mitk.gui.qt.toftutorial/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.toftutorial/src/internal/mitkPluginActivator.cpp index d3181c3a9ab..c75cae11a4e 100644 --- a/Plugins/org.mitk.gui.qt.toftutorial/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.toftutorial/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkToFTutorialView.h" diff --git a/Plugins/org.mitk.gui.qt.toftutorial/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.toftutorial/src/internal/mitkPluginActivator.h index 1dd4f18d4a5..602bc454938 100644 --- a/Plugins/org.mitk.gui.qt.toftutorial/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.toftutorial/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.tofutil/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.tofutil/manifest_headers.cmake index bb478af61cf..a3cf198f9cd 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.tofutil/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK-ToF Util") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "www.mitk.org/wiki/MITK-ToF") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFDeviceGeneration.cpp b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFDeviceGeneration.cpp index 8e4b25cedb9..6d2ad7a545f 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFDeviceGeneration.cpp +++ b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFDeviceGeneration.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkToFDeviceGeneration.h" diff --git a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFDeviceGeneration.h b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFDeviceGeneration.h index c8fb4e8abf7..6324fd1de58 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFDeviceGeneration.h +++ b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFDeviceGeneration.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToFDeviceGeneration_h #define QmitkToFDeviceGeneration_h diff --git a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFScreenshotMaker.cpp b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFScreenshotMaker.cpp index 3f89ec21773..4f4f60a21f7 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFScreenshotMaker.cpp +++ b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFScreenshotMaker.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkToFScreenshotMaker.h" diff --git a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFScreenshotMaker.h b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFScreenshotMaker.h index b8963255993..d1fa29018ec 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFScreenshotMaker.h +++ b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFScreenshotMaker.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToFScreenshotMaker_h #define QmitkToFScreenshotMaker_h diff --git a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFUtilView.cpp b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFUtilView.cpp index 89fc65a7cda..698f380ad3c 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFUtilView.cpp +++ b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFUtilView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include #include diff --git a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFUtilView.h b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFUtilView.h index 17da47d816d..a2b22b9aabf 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFUtilView.h +++ b/Plugins/org.mitk.gui.qt.tofutil/src/internal/QmitkToFUtilView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkToFUtilView_h #define QmitkToFUtilView_h diff --git a/Plugins/org.mitk.gui.qt.tofutil/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.tofutil/src/internal/mitkPluginActivator.cpp index aa37ee9a224..71cb9fb336e 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.tofutil/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkToFUtilView.h" diff --git a/Plugins/org.mitk.gui.qt.tofutil/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.tofutil/src/internal/mitkPluginActivator.h index e02fa66b43e..953c58d8ab5 100644 --- a/Plugins/org.mitk.gui.qt.tofutil/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.tofutil/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.tubegraph/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.tubegraph/manifest_headers.cmake index 011dcc7882a..21323819798 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.tubegraph/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Tube Graph") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphDeleteLabelGroupDialog.cpp b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphDeleteLabelGroupDialog.cpp index 97db4353ce8..c8271b953bc 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphDeleteLabelGroupDialog.cpp +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphDeleteLabelGroupDialog.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "QmitkTubeGraphDeleteLabelGroupDialog.h" diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphDeleteLabelGroupDialog.h b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphDeleteLabelGroupDialog.h index ca5e842ebc7..e204d6a2aa9 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphDeleteLabelGroupDialog.h +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphDeleteLabelGroupDialog.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _QMITKTUBEGRAPHDELETELABELGROUPDIALOG_H_INCLUDED #define _QMITKTUBEGRAPHDELETELABELGROUPDIALOG_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelGroupWidget.cpp b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelGroupWidget.cpp index 905b81c3bd5..3498ecff669 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelGroupWidget.cpp +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelGroupWidget.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "QmitkTubeGraphLabelGroupWidget.h" diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelGroupWidget.h b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelGroupWidget.h index a568c1212eb..64400679645 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelGroupWidget.h +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelGroupWidget.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _QMITKLABELGROUPWIDGET_H_INCLUDED #define _QMITKLABELGROUPWIDGET_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelWidget.cpp b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelWidget.cpp index 29962062001..05776510ece 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelWidget.cpp +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelWidget.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "QmitkTubeGraphLabelWidget.h" diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelWidget.h b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelWidget.h index d3d88b3618b..cb4b4a6f1c7 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelWidget.h +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphLabelWidget.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _QMITKTUBEGRAPHLABELWIDGET_H_INCLUDED #define _QMITKTUBEGRAPHLABELWIDGET_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewAnnotationDialog.cpp b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewAnnotationDialog.cpp index 1f3b472d605..8f27f537004 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewAnnotationDialog.cpp +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewAnnotationDialog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkTubeGraphNewAnnotationDialog.h" diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewAnnotationDialog.h b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewAnnotationDialog.h index eab96810a78..575c0cda81e 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewAnnotationDialog.h +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewAnnotationDialog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKTUBEGRAPHNEWANNOTATIONDIALOG_H_INCLUDED #define _QMITKTUBEGRAPHNEWANNOTATIONDIALOG_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewLabelGroupDialog.cpp b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewLabelGroupDialog.cpp index 72658aabb3d..16a9ccc49b3 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewLabelGroupDialog.cpp +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewLabelGroupDialog.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "QmitkTubeGraphNewLabelGroupDialog.h" diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewLabelGroupDialog.h b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewLabelGroupDialog.h index 39bca3e8342..641f4192027 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewLabelGroupDialog.h +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphNewLabelGroupDialog.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _QMITKTUBEGRAPHNEWLABELGROUPDIALOG_H_INCLUDED #define _QMITKTUBEGRAPHNEWLABELGROUPDIALOG_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphView.cpp b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphView.cpp index 98ef75915f2..10ede762daf 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphView.cpp +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphView.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #include "QmitkTubeGraphView.h" diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphView.h b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphView.h index 276ca35747c..f7033893e5e 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphView.h +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/QmitkTubeGraphView.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -See LICENSE.txt or http://www.mitk.org for details. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -===================================================================*/ +============================================================================*/ #ifndef _QMITKTUBEGRAPHVIEW_H_INCLUDED #define _QMITKTUBEGRAPHVIEW_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkPluginActivator.cpp index c422967c9a8..7ab0b75d0ef 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "src/internal/QmitkTubeGraphView.h" diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkPluginActivator.h index d8444958bc4..b373e722aa1 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkTubeGraphDefaultLabelGroups.cpp b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkTubeGraphDefaultLabelGroups.cpp index d55a1bb77e9..dcf083f9ecd 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkTubeGraphDefaultLabelGroups.cpp +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkTubeGraphDefaultLabelGroups.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkTubeGraphDefaultLabelGroups.h" diff --git a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkTubeGraphDefaultLabelGroups.h b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkTubeGraphDefaultLabelGroups.h index 3292771fa50..775792e920f 100644 --- a/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkTubeGraphDefaultLabelGroups.h +++ b/Plugins/org.mitk.gui.qt.tubegraph/src/internal/mitkTubeGraphDefaultLabelGroups.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mitk_TubeGraphDefaultLabelGroups_h #define _mitk_TubeGraphDefaultLabelGroups_h diff --git a/Plugins/org.mitk.gui.qt.ugvisualization/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.ugvisualization/manifest_headers.cmake index ddff09b506c..aff0e3e5ffe 100644 --- a/Plugins/org.mitk.gui.qt.ugvisualization/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.ugvisualization/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK UG Visualization") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/QmitkUGVisualizationView.cpp b/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/QmitkUGVisualizationView.cpp index 408605fae8e..e9fc1015ac0 100644 --- a/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/QmitkUGVisualizationView.cpp +++ b/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/QmitkUGVisualizationView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/QmitkUGVisualizationView.h b/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/QmitkUGVisualizationView.h index a48449f4d4b..ec718322411 100644 --- a/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/QmitkUGVisualizationView.h +++ b/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/QmitkUGVisualizationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUGVisualizationView_h #define QmitkUGVisualizationView_h diff --git a/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/mitkPluginActivator.cpp index 768251ef025..84778c5f95d 100644 --- a/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkUGVisualizationView.h" diff --git a/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/mitkPluginActivator.h index 0a6c87cd297..65aea1f883e 100644 --- a/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.ugvisualization/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.ultrasound/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.ultrasound/manifest_headers.cmake index 182113f62b6..6c0ccc22d9e 100644 --- a/Plugins/org.mitk.gui.qt.ultrasound/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.ultrasound/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "Ultrasound") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport.cpp b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport.cpp index fc71ca0af0d..e5291986eeb 100644 --- a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport.cpp +++ b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include diff --git a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport.h b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport.h index b20b969a366..21c3e69cdb4 100644 --- a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport.h +++ b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QmitkUltrasoundSupport_h #define QmitkUltrasoundSupport_h diff --git a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport_old.cpp b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport_old.cpp index afcfb58cdb1..887fa53ff46 100644 --- a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport_old.cpp +++ b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/QmitkUltrasoundSupport_old.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Blueberry #include @@ -415,7 +411,7 @@ void QmitkUltrasoundSupport::CreateControlWidgets() // create b mode widget for current device m_ControlBModeWidget = new QmitkUSControlsBModeWidget(m_Device->GetControlInterfaceBMode(), m_Controls.m_ToolBoxControlWidgets); - + if (m_Device->GetControlInterfaceBMode()) { m_Controls.m_ToolBoxControlWidgets->addItem(m_ControlBModeWidget, "B Mode Controls"); @@ -424,7 +420,7 @@ void QmitkUltrasoundSupport::CreateControlWidgets() // create doppler widget for current device m_ControlDopplerWidget = new QmitkUSControlsDopplerWidget(m_Device->GetControlInterfaceDoppler(), m_Controls.m_ToolBoxControlWidgets); - + if (m_Device->GetControlInterfaceDoppler()) { m_Controls.m_ToolBoxControlWidgets->addItem(m_ControlDopplerWidget, "Doppler Controls"); diff --git a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/org_mitk_gui_qt_ultrasound_Activator.cpp b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/org_mitk_gui_qt_ultrasound_Activator.cpp index 16bfb50ad93..d9288210b33 100644 --- a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/org_mitk_gui_qt_ultrasound_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/org_mitk_gui_qt_ultrasound_Activator.cpp @@ -1,19 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. -All rights reserved.#include "QmitkUltrasoundSupport.h" +Copyright (c) German Cancer Research Center (DKFZ) +All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. - -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. +============================================================================*/ #include "org_mitk_gui_qt_ultrasound_Activator.h" #include "QmitkUltrasoundSupport.h" diff --git a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/org_mitk_gui_qt_ultrasound_Activator.h b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/org_mitk_gui_qt_ultrasound_Activator.h index 8ed82039d42..91ec5bb14e4 100644 --- a/Plugins/org.mitk.gui.qt.ultrasound/src/internal/org_mitk_gui_qt_ultrasound_Activator.h +++ b/Plugins/org.mitk.gui.qt.ultrasound/src/internal/org_mitk_gui_qt_ultrasound_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_ultrasound_Activator_h diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.viewnavigator/manifest_headers.cmake index 3235814344a..5fcab657421 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.viewnavigator/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "View Navigator") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/src/QmitkViewNavigatorWidget.cpp b/Plugins/org.mitk.gui.qt.viewnavigator/src/QmitkViewNavigatorWidget.cpp index 8df69373849..fc58de60953 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/src/QmitkViewNavigatorWidget.cpp +++ b/Plugins/org.mitk.gui.qt.viewnavigator/src/QmitkViewNavigatorWidget.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ //Qmitk headers #include "QmitkViewNavigatorWidget.h" diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/src/QmitkViewNavigatorWidget.h b/Plugins/org.mitk.gui.qt.viewnavigator/src/QmitkViewNavigatorWidget.h index 27460ff3a12..2e81f316448 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/src/QmitkViewNavigatorWidget.h +++ b/Plugins/org.mitk.gui.qt.viewnavigator/src/QmitkViewNavigatorWidget.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _QMITKViewNavigatorWidget_H_INCLUDED #define _QMITKViewNavigatorWidget_H_INCLUDED diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/ViewNavigatorView.cpp b/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/ViewNavigatorView.cpp index 455aaf799e3..11e625d938a 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/ViewNavigatorView.cpp +++ b/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/ViewNavigatorView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ViewNavigatorView.h" diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/ViewNavigatorView.h b/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/ViewNavigatorView.h index bc5e8cc70a0..62c7f241203 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/ViewNavigatorView.h +++ b/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/ViewNavigatorView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef ViewNavigatorView_h diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/org_mitk_gui_qt_viewnavigator_Activator.cpp b/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/org_mitk_gui_qt_viewnavigator_Activator.cpp index 3a7607dcf6c..2f2991cbbfd 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/org_mitk_gui_qt_viewnavigator_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/org_mitk_gui_qt_viewnavigator_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_viewnavigator_Activator.h" diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/org_mitk_gui_qt_viewnavigator_Activator.h b/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/org_mitk_gui_qt_viewnavigator_Activator.h index f55f1defbb4..a14a2a62865 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/org_mitk_gui_qt_viewnavigator_Activator.h +++ b/Plugins/org.mitk.gui.qt.viewnavigator/src/internal/org_mitk_gui_qt_viewnavigator_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_viewnavigator_Activator_h diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/src/mitkQtPerspectiveItem.h b/Plugins/org.mitk.gui.qt.viewnavigator/src/mitkQtPerspectiveItem.h index 7c6588704f7..644aa146113 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/src/mitkQtPerspectiveItem.h +++ b/Plugins/org.mitk.gui.qt.viewnavigator/src/mitkQtPerspectiveItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _PerspectiveItem #define _PerspectiveItem diff --git a/Plugins/org.mitk.gui.qt.viewnavigator/src/mitkQtViewItem.h b/Plugins/org.mitk.gui.qt.viewnavigator/src/mitkQtViewItem.h index 6dfb0b98d54..34e71b487d5 100644 --- a/Plugins/org.mitk.gui.qt.viewnavigator/src/mitkQtViewItem.h +++ b/Plugins/org.mitk.gui.qt.viewnavigator/src/mitkQtViewItem.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _ViewItem #define _ViewItem diff --git a/Plugins/org.mitk.gui.qt.volumevisualization/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.volumevisualization/manifest_headers.cmake index b21c7bed81f..1138a3beab4 100644 --- a/Plugins/org.mitk.gui.qt.volumevisualization/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.volumevisualization/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "MITK Volume Visualization") set(Plugin-Version "1.0.0") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.qt.common) diff --git a/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/QmitkVolumeVisualizationView.cpp b/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/QmitkVolumeVisualizationView.cpp index fb9d696c9e2..64503e75b93 100755 --- a/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/QmitkVolumeVisualizationView.cpp +++ b/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/QmitkVolumeVisualizationView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkVolumeVisualizationView.h" @@ -76,7 +72,7 @@ void QmitkVolumeVisualizationView::CreateQtPartControl(QWidget* parent) { m_Controls->m_TransferFunctionGeneratorWidget->AddPreset(QString::fromStdString(*it)); } - + // see enum in vtkSmartVolumeMapper m_Controls->m_RenderMode->addItem("Default"); m_Controls->m_RenderMode->addItem("RayCast"); @@ -251,7 +247,7 @@ void QmitkVolumeVisualizationView::UpdateInterface() selectedNode->GetBoolProperty("volumerendering.usegpu",usegpu); selectedNode->GetBoolProperty("volumerendering.useray",useray); selectedNode->GetBoolProperty("volumerendering.usemip",usemip); - + int blendMode; if (selectedNode->GetIntProperty("volumerendering.blendmode", blendMode)) m_Controls->m_BlendMode->setCurrentIndex(blendMode); @@ -265,9 +261,9 @@ void QmitkVolumeVisualizationView::UpdateInterface() mode = RAYCAST_RENDERMODE; else if(usegpu) mode = GPU_RENDERMODE; - + m_Controls->m_RenderMode->setCurrentIndex(mode); - + } m_Controls->m_TransferFunctionWidget->SetDataNode(selectedNode); @@ -310,7 +306,7 @@ void QmitkVolumeVisualizationView::OnRenderMode(int mode) return; auto selectedNode = m_SelectedNode.Lock(); - + bool usegpu = false; if (mode == GPU_RENDERMODE) usegpu = true; @@ -318,7 +314,7 @@ void QmitkVolumeVisualizationView::OnRenderMode(int mode) bool useray = false; if (mode == RAYCAST_RENDERMODE) useray = true; - + if (mode == DEFAULT_RENDERMODE) { useray = true; diff --git a/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/QmitkVolumeVisualizationView.h b/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/QmitkVolumeVisualizationView.h index 7d39e8e8409..2041f1ddc33 100755 --- a/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/QmitkVolumeVisualizationView.h +++ b/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/QmitkVolumeVisualizationView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKVOLUMEVISUALIZATIONVIEW_H_ #define QMITKVOLUMEVISUALIZATIONVIEW_H_ diff --git a/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/mitkPluginActivator.cpp b/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/mitkPluginActivator.cpp index 9f771a8e58a..8e814351be5 100644 --- a/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/mitkPluginActivator.cpp +++ b/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/mitkPluginActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPluginActivator.h" #include "QmitkVolumeVisualizationView.h" diff --git a/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/mitkPluginActivator.h b/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/mitkPluginActivator.h index 9292135ad80..15a70aa6fc7 100644 --- a/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/mitkPluginActivator.h +++ b/Plugins/org.mitk.gui.qt.volumevisualization/src/internal/mitkPluginActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLUGINACTIVATOR_H #define MITKPLUGINACTIVATOR_H diff --git a/Plugins/org.mitk.gui.qt.xnat/manifest_headers.cmake b/Plugins/org.mitk.gui.qt.xnat/manifest_headers.cmake index e2123e2708e..d29bb7e6f3e 100644 --- a/Plugins/org.mitk.gui.qt.xnat/manifest_headers.cmake +++ b/Plugins/org.mitk.gui.qt.xnat/manifest_headers.cmake @@ -1,5 +1,5 @@ set(Plugin-Name "XNAT Plugin") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "") set(Require-Plugin org.mitk.gui.qt.common org.mitk.gui.qt.datamanager) diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkUploadToXNATAction.cpp b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkUploadToXNATAction.cpp index 33cc0d33b9d..1249c6a2ebb 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkUploadToXNATAction.cpp +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkUploadToXNATAction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkUploadToXNATAction.h" //needed for qApp diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkUploadToXNATAction.h b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkUploadToXNATAction.h index e9654f7b011..47b813975cb 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkUploadToXNATAction.h +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkUploadToXNATAction.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITK_UPLOADTOXNATACTION_H #define QMITK_UPLOADTOXNATACTION_H diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatConnectionPreferencePage.cpp b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatConnectionPreferencePage.cpp index 22476d0e5fc..501c48963e5 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatConnectionPreferencePage.cpp +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatConnectionPreferencePage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatConnectionPreferencePage.h" #include "QmitkXnatTreeBrowserView.h" diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatConnectionPreferencePage.h b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatConnectionPreferencePage.h index 277f5ca76f9..84dc3449190 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatConnectionPreferencePage.h +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatConnectionPreferencePage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATCONNECTIONPREFERENCEPAGE_H_ diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatEditor.cpp b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatEditor.cpp index cacb5a21ed8..c69947397a8 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatEditor.cpp +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatEditor.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatEditor.h" diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatEditor.h b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatEditor.h index d2c95e0c236..19cccb90235 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatEditor.h +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatEditor.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATEDITOR_h #define QMITKXNATEDITOR_h diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatObjectEditorInput.cpp b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatObjectEditorInput.cpp index 855702f4d18..9c501c2f252 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatObjectEditorInput.cpp +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatObjectEditorInput.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatObjectEditorInput.h" diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatObjectEditorInput.h b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatObjectEditorInput.h index 1c32647c6b9..4e8c99d6be9 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatObjectEditorInput.h +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatObjectEditorInput.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATOBJECTEDITORINPUT_H_ #define QMITKXNATOBJECTEDITORINPUT_H_ diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSessionManager.cpp b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSessionManager.cpp index b8f5bd47879..e67f8401614 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSessionManager.cpp +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSessionManager.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatSessionManager.h" #include "QmitkXnatTreeBrowserView.h" diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSessionManager.h b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSessionManager.h index eae3baa392a..10263a71026 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSessionManager.h +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSessionManager.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATSESSIONMANAGER_H_ diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSimpleSearchView.cpp b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSimpleSearchView.cpp index bc21d41ce13..ffc129696fb 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSimpleSearchView.cpp +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSimpleSearchView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ // Qmitk #include "QmitkXnatSimpleSearchView.h" diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSimpleSearchView.h b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSimpleSearchView.h index e80a23068aa..b61d1904a76 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSimpleSearchView.h +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatSimpleSearchView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATSIMPLESEARCHVIEW_H #define QMITKXNATSIMPLESEARCHVIEW_H diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatTreeBrowserView.cpp b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatTreeBrowserView.cpp index b587374df28..69d0ece8e15 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatTreeBrowserView.cpp +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatTreeBrowserView.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkXnatTreeBrowserView.h" diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatTreeBrowserView.h b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatTreeBrowserView.h index 7754801ea9e..0cdb3d0ef0c 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatTreeBrowserView.h +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/QmitkXnatTreeBrowserView.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKXNATTREEBROWSERVIEW_H #define QMITKXNATTREEBROWSERVIEW_H diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/org_mitk_gui_qt_xnatinterface_Activator.cpp b/Plugins/org.mitk.gui.qt.xnat/src/internal/org_mitk_gui_qt_xnatinterface_Activator.cpp index 7f91ac33fe6..47ec63210aa 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/org_mitk_gui_qt_xnatinterface_Activator.cpp +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/org_mitk_gui_qt_xnatinterface_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_gui_qt_xnatinterface_Activator.h" #include "QmitkUploadToXNATAction.h" diff --git a/Plugins/org.mitk.gui.qt.xnat/src/internal/org_mitk_gui_qt_xnatinterface_Activator.h b/Plugins/org.mitk.gui.qt.xnat/src/internal/org_mitk_gui_qt_xnatinterface_Activator.h index 27f02271850..1042baaed84 100644 --- a/Plugins/org.mitk.gui.qt.xnat/src/internal/org_mitk_gui_qt_xnatinterface_Activator.h +++ b/Plugins/org.mitk.gui.qt.xnat/src/internal/org_mitk_gui_qt_xnatinterface_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_gui_qt_xnatinterface_Activator_h diff --git a/Plugins/org.mitk.matchpoint.core.helper/manifest_headers.cmake b/Plugins/org.mitk.matchpoint.core.helper/manifest_headers.cmake index ee920f49351..75ccee3db63 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/manifest_headers.cmake +++ b/Plugins/org.mitk.matchpoint.core.helper/manifest_headers.cmake @@ -1,6 +1,6 @@ SET(Plugin-Name "MAP MITK Core Helper") SET(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.common) set(Plugin-ActivationPolicy eager) diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/MatchPointBrowserConstants.h b/Plugins/org.mitk.matchpoint.core.helper/src/MatchPointBrowserConstants.h index c9ac4d6f808..0f4c15dd314 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/MatchPointBrowserConstants.h +++ b/Plugins/org.mitk.matchpoint.core.helper/src/MatchPointBrowserConstants.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MatchPointBrowserConstants_h #define MatchPointBrowserConstants_h diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserConstants.cpp b/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserConstants.cpp index 041b2950865..4341cdfe47a 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserConstants.cpp +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserConstants.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MatchPointBrowserConstants.h" @@ -23,4 +19,4 @@ const std::string MatchPointBrowserConstants::DEBUG_OUTPUT_NODE_NAME = "debug ou const std::string MatchPointBrowserConstants::LOAD_FROM_APPLICATION_DIR = "load from application dir"; const std::string MatchPointBrowserConstants::LOAD_FROM_HOME_DIR = "load from home dir"; const std::string MatchPointBrowserConstants::LOAD_FROM_CURRENT_DIR = "load from current dir"; -const std::string MatchPointBrowserConstants::LOAD_FROM_AUTO_LOAD_DIR = "load from auto-load dir"; \ No newline at end of file +const std::string MatchPointBrowserConstants::LOAD_FROM_AUTO_LOAD_DIR = "load from auto-load dir"; diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserPreferencesPage.cpp b/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserPreferencesPage.cpp index 8b0a4311c8d..04b2961fc25 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserPreferencesPage.cpp +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserPreferencesPage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "MatchPointBrowserPreferencesPage.h" #include "MatchPointBrowserConstants.h" diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserPreferencesPage.h b/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserPreferencesPage.h index c72b3646597..17d5ba923fb 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserPreferencesPage.h +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/MatchPointBrowserPreferencesPage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef __MATCHPOINT_BROWSER_PREFERENCE_PAGE_H #define __MATCHPOINT_BROWSER_PREFERENCE_PAGE_H diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkDirectoryListWidget.cpp b/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkDirectoryListWidget.cpp index a275a4108c7..1b47794cf09 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkDirectoryListWidget.cpp +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkDirectoryListWidget.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkDirectoryListWidget.h" diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkDirectoryListWidget.h b/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkDirectoryListWidget.h index 34483c30987..fa4c7baa759 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkDirectoryListWidget.h +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkDirectoryListWidget.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKDIRECTORYLISTWIDGET_H #define QMITKDIRECTORYLISTWIDGET_H diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkFileListWidget.cpp b/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkFileListWidget.cpp index a1bf1bdec23..90fb7991cf0 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkFileListWidget.cpp +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkFileListWidget.cpp @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "QmitkFileListWidget.h" diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkFileListWidget.h b/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkFileListWidget.h index 31fa33081ca..b90ff8c2a81 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkFileListWidget.h +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/QmitkFileListWidget.h @@ -1,17 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) University College London (UCL). +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QMITKFILELISTWIDGET_H #define QMITKFILELISTWIDGET_H diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/org_mitk_matchpoint_core_helper_Activator.cpp b/Plugins/org.mitk.matchpoint.core.helper/src/internal/org_mitk_matchpoint_core_helper_Activator.cpp index a17a102da90..6d3072f7f40 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/org_mitk_matchpoint_core_helper_Activator.cpp +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/org_mitk_matchpoint_core_helper_Activator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "org_mitk_matchpoint_core_helper_Activator.h" diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/internal/org_mitk_matchpoint_core_helper_Activator.h b/Plugins/org.mitk.matchpoint.core.helper/src/internal/org_mitk_matchpoint_core_helper_Activator.h index 443f8147a8e..578db782e9e 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/internal/org_mitk_matchpoint_core_helper_Activator.h +++ b/Plugins/org.mitk.matchpoint.core.helper/src/internal/org_mitk_matchpoint_core_helper_Activator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef org_mitk_matchpoint_core_helper_Activator_h #define org_mitk_matchpoint_core_helper_Activator_h diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoObject.cpp b/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoObject.cpp index 53aa6758838..70fbf0da70e 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoObject.cpp +++ b/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoObject.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMAPAlgorithmInfoObject.h" diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoObject.h b/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoObject.h index 328087730fb..dcab93d9ba2 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoObject.h +++ b/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoObject.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MAP_ALGORITHM_INFO_OBJECT_H #define _MITK_MAP_ALGORITHM_INFO_OBJECT_H @@ -54,4 +50,4 @@ class MITK_MATCHPOINT_CORE_HELPER_EXPORT MAPAlgorithmInfoObject : public berry:: } -#endif \ No newline at end of file +#endif diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoSelection.cpp b/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoSelection.cpp index 2ecaf7f034e..61281b53f7e 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoSelection.cpp +++ b/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoSelection.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkMAPAlgorithmInfoSelection.h" diff --git a/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoSelection.h b/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoSelection.h index 0c47c0ab386..26d85d844ce 100644 --- a/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoSelection.h +++ b/Plugins/org.mitk.matchpoint.core.helper/src/mitkMAPAlgorithmInfoSelection.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MITK_MAP_ALGORITHM_INFO_SELECTION_H #define _MITK_MAP_ALGORITHM_INFO_SELECTION_H @@ -69,4 +65,4 @@ class MITK_MATCHPOINT_CORE_HELPER_EXPORT MAPAlgorithmInfoSelection : public virt } -#endif \ No newline at end of file +#endif diff --git a/Plugins/org.mitk.planarfigure/manifest_headers.cmake b/Plugins/org.mitk.planarfigure/manifest_headers.cmake index 5b2d8e50e35..bf4a43d8bd5 100644 --- a/Plugins/org.mitk.planarfigure/manifest_headers.cmake +++ b/Plugins/org.mitk.planarfigure/manifest_headers.cmake @@ -1,6 +1,6 @@ set(Plugin-Name "MITK PlanarFigure") set(Plugin-Version "0.1") -set(Plugin-Vendor "DKFZ, Medical and Biological Informatics") +set(Plugin-Vendor "German Cancer Research Center (DKFZ)") set(Plugin-ContactAddress "http://www.mitk.org") set(Require-Plugin org.mitk.gui.common) set(Plugin-ActivationPolicy eager) diff --git a/Plugins/org.mitk.planarfigure/src/internal/mitkPlanarFigureActivator.cpp b/Plugins/org.mitk.planarfigure/src/internal/mitkPlanarFigureActivator.cpp index 1a085a1aa58..904a0e918fe 100644 --- a/Plugins/org.mitk.planarfigure/src/internal/mitkPlanarFigureActivator.cpp +++ b/Plugins/org.mitk.planarfigure/src/internal/mitkPlanarFigureActivator.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mitkPlanarFigureActivator.h" #include "mitkPlanarFigureObjectFactory.h" diff --git a/Plugins/org.mitk.planarfigure/src/internal/mitkPlanarFigureActivator.h b/Plugins/org.mitk.planarfigure/src/internal/mitkPlanarFigureActivator.h index 88b03e9872d..90088c3d87b 100644 --- a/Plugins/org.mitk.planarfigure/src/internal/mitkPlanarFigureActivator.h +++ b/Plugins/org.mitk.planarfigure/src/internal/mitkPlanarFigureActivator.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef MITKPLANARFIGUREACTIVATOR_H_ diff --git a/README.md b/README.md index 7efd561340e..9402a640441 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ usage scenarios: See the [MITK homepage][mitk] for details. Supported Platforms ------------------------------ +------------------- MITK is a cross-platform C++ toolkit and officially supports: @@ -28,14 +28,14 @@ MITK is a cross-platform C++ toolkit and officially supports: For details, please read the [Supported Platforms][platforms] page. License ------------ +------- -Copyright (c) [German Cancer Research Center][dkfz]. +Copyright (c) [German Cancer Research Center (DKFZ)][dkfz]. All rights reserved. -MITK is available as free open-source software under a [BSD-style license][license]. +MITK is available as free open-source software under a [3-clause BSD license][license]. Download ---------- +-------- The MITK source code and binaries for the *MitkWorkbench* application are released regularly according to the [MITK release cycle][release-cycle]. See the [Download][download] page for a list of releases. @@ -46,13 +46,13 @@ The official MITK source code is available in the [MITK Git repository][diffusio Active development takes place in the MITK master branch and its usage is advised for advanced users only. How to Contribute --------------- +----------------- Contributions of all kind are happily accepted. However, to make the contribution process as smooth as possible, please read the [How to contribute to MITK][contribute] page if you plan to contribute to MITK. Build Instructions ------------------------- +------------------ MITK uses [CMake][cmake] to configure a build tree. The following is a crash course about cloning, configuring, and building MITK on a Linux/Unix system: @@ -62,28 +62,27 @@ MITK uses [CMake][cmake] to configure a build tree. The following is a crash cou cmake ../MITK make -j4 -Read the comprehensive [Build Instructions][build] page for details. +Read the comprehensive [build instructions][build] page for details. Useful Links ------------------- +------------ - [Homepage][mitk] - [Download][download] - - [Mailing List][mailinglist] - - [Bug Tracker][bugs] - + - [Mailing list][mailinglist] + - [Issue tracker][bugs] [logo]: https://github.com/MITK/MITK/raw/master/mitk.png [mitk]: http://mitk.org [itk]: https://itk.org -[vtk]: http://vtk.org +[vtk]: https://vtk.org [mitk-overview]: http://docs.mitk.org/nightly/Overview.html [mitk-usermanual]: http://docs.mitk.org/nightly/UserManualPortal.html [mitk-devmanual]: http://docs.mitk.org/nightly/DeveloperManualPortal.html [mitk-apiref]: http://docs.mitk.org/nightly/usergroup0.html [platforms]: http://docs.mitk.org/nightly/SupportedPlatformsPage.html [dkfz]: https://www.dkfz.de -[license]: https://github.com/MITK/MITK/blob/master/LICENSE.txt +[license]: https://github.com/MITK/MITK/blob/master/LICENSE [release-cycle]: http://mitk.org/MitkReleaseCycle [download]: http://mitk.org/Download [diffusion]: https://phabricator.mitk.org/source/mitk/ diff --git a/Utilities/IpFunc/AddC.c b/Utilities/IpFunc/AddC.c index 19da557ee49..a86c56448dc 100644 --- a/Utilities/IpFunc/AddC.c +++ b/Utilities/IpFunc/AddC.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function adds a constant to an image @@ -52,20 +46,19 @@ * @param pic_old pointer to the first image * @param value constant which is added to image * @param keep tells whether the image type could be changed when - * necessary + * necessary * @arg @c mitkIpFuncNoKeep : image data type could be changed - * @arg @c mitkIpFuncKeep : image data type of original pictures - * is kept (if there will be an - * over-/underflow the max. or min. + * @arg @c mitkIpFuncKeep : image data type of original pictures + * is kept (if there will be an + * over-/underflow the max. or min. * possible greyvalue is taken) - * @param pic_return - memory used to store return image ( if pic_return == NULL - * new memory is allocated ) + * @param pic_return - memory used to store return image ( if pic_return == NULL + * new memory is allocated ) * * @return pointer to the new image * * @author Antje Schroeder * @date 01.08.95 - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ /* include-Files */ @@ -73,7 +66,7 @@ #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); @@ -85,7 +78,7 @@ mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, { \ mitkIpPicFORALL_3 ( ADDC2, pic_new, pic_1, type_1, value ); \ } \ - + #define ADDC2( type_n, pic_new, pic_1, type_1, value ) \ { \ @@ -124,7 +117,7 @@ mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, /* ------------------------------------------------------------------- */ mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ) { @@ -132,7 +125,7 @@ mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ @@ -169,7 +162,7 @@ mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, if ( pic_old->type == mitkIpPicInt ) { - if ( smax < max_gv && smin > min_gv ) + if ( smax < max_gv && smin > min_gv ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } @@ -203,20 +196,20 @@ mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncExtT ( pic_new->type, pic_new->bpe, &min_gv, &max_gv ); } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_old->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } - + } else { @@ -224,12 +217,12 @@ mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } - if ( pic_new == NULL ) + if ( pic_new == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } - + if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); if ( pic_new->data == NULL ) @@ -249,8 +242,8 @@ mitkIpPicDescriptor *mitkIpFuncAddC ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; } diff --git a/Utilities/IpFunc/AddI.c b/Utilities/IpFunc/AddI.c index d3a63ea9ee1..bc082023eda 100644 --- a/Utilities/IpFunc/AddI.c +++ b/Utilities/IpFunc/AddI.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function adds two images @@ -77,7 +71,7 @@ mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_1, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncAddI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncAddI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -87,7 +81,7 @@ mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_1, { \ mitkIpPicFORALL_3 ( ADDI2, pic_new, pic_1, pic_2, type_1 ); \ } \ - + #define ADDI2( type_n, pic_new, pic_1, pic_2, type_1 ) \ { \ @@ -140,7 +134,7 @@ mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_1, mitkIpUInt4_t i; /* loop index */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t min2, max2; /* extreme greyvalues of 2. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ @@ -154,7 +148,7 @@ mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_1, if ( ( pic_1->type != pic_2->type ) || ( pic_1->bpe != pic_2->bpe ) ) { - _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); return NULL; } if ( pic_1->dim == pic_2->dim ) @@ -181,7 +175,7 @@ mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_1, if ( keep == mitkIpFuncKeep ) { - pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); } else if ( keep == mitkIpFuncNoKeep ) @@ -198,7 +192,7 @@ mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_1, if ( pic_1->type == mitkIpPicInt ) { - if ( smax < max_gv && smin > min_gv ) + if ( smax < max_gv && smin > min_gv ) { pic_new = mitkIpPicCopyHeader ( pic_1, NULL ); } @@ -232,16 +226,16 @@ mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_1, _mitkIpFuncExtT ( pic_new->type, pic_new->bpe, &min_gv, &max_gv ); } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_1->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_1, NULL ); } - else - { + else + { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } @@ -258,7 +252,7 @@ mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_1, _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } - + if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); if ( pic_new->data == NULL ) diff --git a/Utilities/IpFunc/AddSl.c b/Utilities/IpFunc/AddSl.c index b8548fef0b8..2c8ca6a6cdd 100644 --- a/Utilities/IpFunc/AddSl.c +++ b/Utilities/IpFunc/AddSl.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function adds all slices of an image @@ -53,16 +47,15 @@ * @param keep tells whether the image type could be changed when * necessary * @arg @c mitkIpFuncNoKeep : image data type could be changed - * @arg @c mitkIpFuncKeep: image data type of original pictures - * is kept (if there will be an - * over-/underflow the max. or min. + * @arg @c mitkIpFuncKeep: image data type of original pictures + * is kept (if there will be an + * over-/underflow the max. or min. * possible greyvalue is taken) * * @RETURN pointer to the new 2D image * * @AUTHOR Antje Schroeder * @DATE 01.08.95 - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ /* include-Files */ @@ -129,13 +122,13 @@ mitkIpPicDescriptor *mitkIpFuncAddSl( mitkIpPicDescriptor *pic_old, /* ------------------------------------------------------------------- */ mitkIpPicDescriptor *mitkIpFuncAddSl( mitkIpPicDescriptor *pic_old, - mitkIpFuncFlagI_t keep ) + mitkIpFuncFlagI_t keep ) { mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ @@ -168,7 +161,7 @@ mitkIpPicDescriptor *mitkIpFuncAddSl( mitkIpPicDescriptor *pic_old, if ( pic_old->type == mitkIpPicInt ) { - if ( smax < max_gv && smin > min_gv ) + if ( smax < max_gv && smin > min_gv ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } @@ -202,20 +195,20 @@ mitkIpPicDescriptor *mitkIpFuncAddSl( mitkIpPicDescriptor *pic_old, _mitkIpFuncExtT ( pic_new->type, pic_new->bpe, &min_gv, &max_gv ); } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_old->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } - + } else { @@ -223,7 +216,7 @@ mitkIpPicDescriptor *mitkIpFuncAddSl( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } - if ( pic_new == NULL ) + if ( pic_new == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); @@ -241,15 +234,15 @@ mitkIpPicDescriptor *mitkIpFuncAddSl( mitkIpPicDescriptor *pic_old, /* macro to invert the picture (for all data types) */ if ( keep == mitkIpFuncNoKeep ) - mitkIpPicFORALL_1 ( ADDSL, pic_old, pic_new ) + mitkIpPicFORALL_1 ( ADDSL, pic_old, pic_new ) else if ( keep == mitkIpFuncKeep ) - mitkIpPicFORALL_1 ( ADDSL3, pic_old, pic_new ) + mitkIpPicFORALL_1 ( ADDSL3, pic_old, pic_new ) /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; diff --git a/Utilities/IpFunc/And.c b/Utilities/IpFunc/And.c index d1175a216bf..32a380eed2b 100644 --- a/Utilities/IpFunc/And.c +++ b/Utilities/IpFunc/And.c @@ -1,79 +1,72 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function connects two images using AND */ /** @brief connects two images using AND - * @param pic_1 pointer to the first image - * @param pic_2 pointer to the second image + * @param pic_1 pointer to the first image + * @param pic_2 pointer to the second image * @param pic_return memory used to store return image ( if pic_return == NULL * new memory is allocated ) * * @return pointer to the new image * - * @author Antje Schroeder + * @author Antje Schroeder * @date 08.06.95 * - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ /* include-Files */ -#include "mitkIpFuncP.h" - - mitkIpPicDescriptor *mitkIpFuncAnd ( mitkIpPicDescriptor *pic_1, - mitkIpPicDescriptor *pic_2, +#include "mitkIpFuncP.h" + + mitkIpPicDescriptor *mitkIpFuncAnd ( mitkIpPicDescriptor *pic_1, + mitkIpPicDescriptor *pic_2, mitkIpPicDescriptor *pic_return ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncAnd\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncAnd\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -91,9 +84,9 @@ ( (( type * ) pic_1->data ) [i] && \ (( type * ) pic_2->data ) [i] ); \ } \ -} - - +} + + /* ------------------------------------------------------------------- */ /* @@ -101,8 +94,8 @@ /* ------------------------------------------------------------------- */ - mitkIpPicDescriptor *mitkIpFuncAnd ( mitkIpPicDescriptor *pic_1, - mitkIpPicDescriptor *pic_2, + mitkIpPicDescriptor *mitkIpFuncAnd ( mitkIpPicDescriptor *pic_1, + mitkIpPicDescriptor *pic_2, mitkIpPicDescriptor *pic_return ) { mitkIpPicDescriptor *pic_new; /* pointer to new image */ @@ -127,7 +120,7 @@ return NULL; } } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); return NULL; @@ -135,12 +128,12 @@ /* allocate new iumage */ - pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* macro to connect two images using AND */ - mitkIpPicFORALL_2 ( AND, pic_1, pic_2, pic_new ); + mitkIpPicFORALL_2 ( AND, pic_1, pic_2, pic_new ); /* Copy Tags */ diff --git a/Utilities/IpFunc/Border.c b/Utilities/IpFunc/Border.c index 1fcf99b16f5..c8667782c26 100644 --- a/Utilities/IpFunc/Border.c +++ b/Utilities/IpFunc/Border.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * This function sets all border pixels to zero. @@ -50,9 +44,9 @@ /** @brief sets all border pixels to zero. * - * The size of the border is calculated using the size of the single + * The size of the border is calculated using the size of the single * dimensions of the mask (dim/2). - * + * * @param pic_old input image * @param mask mask which is used to calculate the border size * @param pic_rtn memory used for result image (if pic_rtn == NULL new @@ -74,11 +68,11 @@ mitkIpPicDescriptor *mitkIpFuncBorder ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif - + /* definition of macros */ @@ -195,16 +189,16 @@ mitkIpPicDescriptor *mitkIpFuncBorder ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( _mitkIpFuncError ( mask ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( pic_old->dim != mask->dim ) - { + if ( pic_old->dim != mask->dim ) + { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); } for ( i = 0; i < pic_old->dim; i++ ) { - if ( pic_old->n[i] <= mask->n[i] ) - { + if ( pic_old->n[i] <= mask->n[i] ) + { _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); return ( mitkIpFuncERROR ); } @@ -216,7 +210,7 @@ mitkIpPicDescriptor *mitkIpFuncBorder ( mitkIpPicDescriptor *pic_old, /* pic_new = _mitkIpFuncMalloc ( pic_old, pic_rtn, mitkIpOVERWRITE );*/ if ( pic_rtn == NULL ) pic_new = mitkIpPicClone ( pic_old ); - else + else pic_new = pic_old; if ( pic_new == NULL ) return ( mitkIpFuncERROR ); @@ -228,13 +222,13 @@ mitkIpPicDescriptor *mitkIpFuncBorder ( mitkIpPicDescriptor *pic_old, size[i] = size[i-1] * pic_old->n[i-1]; size[pic_old->dim] = 0; - mitkIpPicFORALL_1 ( BORDER, pic_old, size ) + mitkIpPicFORALL_1 ( BORDER, pic_old, size ) /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/BorderX.c b/Utilities/IpFunc/BorderX.c index 564ce4921ee..2fbe4d386d2 100644 --- a/Utilities/IpFunc/BorderX.c +++ b/Utilities/IpFunc/BorderX.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * This function sets all border pixels to a spezified value. @@ -53,7 +47,7 @@ * The size of the border is calculated using the size of the single * dimensions of the mask (dim/2) * - * + * * @param pic_old input image * @param mask mask which is used to calculate the border size * @param value border value @@ -78,7 +72,7 @@ mitkIpPicDescriptor *mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -200,16 +194,16 @@ mitkIpPicDescriptor *mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( _mitkIpFuncError ( mask ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( ( pic_old->dim != mask->dim ) || ( mask->dim > 3 ) ) - { + if ( ( pic_old->dim != mask->dim ) || ( mask->dim > 3 ) ) + { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); } for ( i = 0; i < pic_old->dim; i++ ) { - if ( pic_old->n[i] <= mask->n[i] ) - { + if ( pic_old->n[i] <= mask->n[i] ) + { _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); return ( mitkIpFuncERROR ); } @@ -225,13 +219,13 @@ mitkIpPicDescriptor *mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - + /* create a new picture, copy the header, allocate memory */ /* pic_new = _mitkIpFuncMalloc ( pic_old, pic_rtn, mitkIpOVERWRITE );*/ if ( pic_rtn == NULL ) pic_new = mitkIpPicClone ( pic_old ); - else + else pic_new = pic_old; if ( pic_new == NULL ) return ( mitkIpFuncERROR ); @@ -243,13 +237,13 @@ mitkIpPicDescriptor *mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, size[i] = size[i-1] * pic_old->n[i-1]; size[pic_old->dim] = 0; - mitkIpPicFORALL_2 ( BORDER, pic_old, size, value ) + mitkIpPicFORALL_2 ( BORDER, pic_old, size, value ) /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/Box.c b/Utilities/IpFunc/Box.c index b81223ded79..465d8b810e7 100644 --- a/Utilities/IpFunc/Box.c +++ b/Utilities/IpFunc/Box.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * This Function calulates the bounding box */ -/** This Function calulates the bounding box +/** This Function calulates the bounding box * * @param pic_old binary image: contains the region of interest * @param beg pointer to left upper corner @@ -58,7 +52,7 @@ * @return @arg @c mitkIpFuncOK no error occured * @arg @c mitkIpFuncERROR error occured (description of error in mitkIpFuncErrno) * - * @warning this version could only be used for 2D and 3D images, in + * @warning this version could only be used for 2D and 3D images, in * later version it should be possible to use it for every dimension * * AUTHOR & DATE @@ -74,7 +68,7 @@ mitkIpUInt4_t mitkIpFuncBox ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t mitkIpFuncBox ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t **beg, - mitkIpUInt4_t **end ) + mitkIpUInt4_t **end ) { /* check data */ @@ -91,12 +85,12 @@ mitkIpUInt4_t mitkIpFuncBox ( mitkIpPicDescriptor *pic_old, if ( mitkIpFuncErrno > mitkIpFuncOK ) return ( mitkIpFuncERROR ); } - else - { + else + { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); } - + return ( mitkIpFuncOK ); } diff --git a/Utilities/IpFunc/Box2d.c b/Utilities/IpFunc/Box2d.c index 7e02f78247e..3ea0276657d 100644 --- a/Utilities/IpFunc/Box2d.c +++ b/Utilities/IpFunc/Box2d.c @@ -1,54 +1,48 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* - * _mitkIpFuncBox2d + * _mitkIpFuncBox2d *--------------------------------------------------------------------- * DESCRIPTION - * This Function calulates the bounding box + * This Function calulates the bounding box * * FUNCTION DECLARATION * @@ -62,14 +56,13 @@ * mitkIpFuncERROR - error occured (description of error in mitkIpFuncErrno) * * UPDATES - * this version could only be used for 3D images, in later version + * this version could only be used for 3D images, in later version * it should be possible to use it for every dimension * * AUTHOR & DATE * Antje Schroeder 08.01.97 * *--------------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ /* include Files */ @@ -139,7 +132,7 @@ mitkIpUInt4_t _mitkIpFuncBox2d ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t **beg, - mitkIpUInt4_t **end ) + mitkIpUInt4_t **end ) { mitkIpUInt4_t size[_mitkIpPicNDIM]; /* size of each direction */ mitkIpUInt4_t i; /* loop index */ @@ -150,7 +143,7 @@ mitkIpUInt4_t _mitkIpFuncBox2d ( mitkIpPicDescriptor *pic_old, /* check data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - + if ( pic_old->dim > 2 ) /* just in for the first version */ { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); @@ -162,7 +155,7 @@ mitkIpUInt4_t _mitkIpFuncBox2d ( mitkIpPicDescriptor *pic_old, size[0] = 1; for ( i = 1; i < pic_old->dim; i++ ) size[i] = size[i-1] * pic_old->n[i-1]; - + /* allocation of result vectors */ *beg = ( mitkIpUInt4_t * ) malloc ( pic_old->dim * sizeof ( mitkIpUInt4_t ) ); @@ -170,7 +163,7 @@ mitkIpUInt4_t _mitkIpFuncBox2d ( mitkIpPicDescriptor *pic_old, *end = ( mitkIpUInt4_t * ) malloc ( pic_old->dim * sizeof ( mitkIpUInt4_t ) ); help_end = *end; - mitkIpPicFORALL_2 ( BOX, pic_old, help_beg, help_end ); + mitkIpPicFORALL_2 ( BOX, pic_old, help_beg, help_end ); return ( mitkIpFuncOK ); } diff --git a/Utilities/IpFunc/Box3d.c b/Utilities/IpFunc/Box3d.c index 89b1503ca60..30eb31558f2 100644 --- a/Utilities/IpFunc/Box3d.c +++ b/Utilities/IpFunc/Box3d.c @@ -1,54 +1,48 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* - * _mitkIpFuncBox3d + * _mitkIpFuncBox3d *--------------------------------------------------------------------- * DESCRIPTION - * This Function calulates the bounding box + * This Function calulates the bounding box * * FUNCTION DECLARATION * @@ -62,14 +56,13 @@ * mitkIpFuncERROR - error occured (description of error in mitkIpFuncErrno) * * UPDATES - * this version could only be used for 3D images, in later version + * this version could only be used for 3D images, in later version * it should be possible to use it for every dimension * * AUTHOR & DATE * Antje Schroeder 08.01.97 * *--------------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ /* include Files */ @@ -144,7 +137,7 @@ mitkIpUInt4_t _mitkIpFuncBox3d ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t **beg, - mitkIpUInt4_t **end ) + mitkIpUInt4_t **end ) { mitkIpUInt4_t n[_mitkIpPicNDIM]; /* number of pixels in each */ @@ -160,13 +153,13 @@ mitkIpUInt4_t _mitkIpFuncBox3d ( mitkIpPicDescriptor *pic_old, /* check data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - + if ( pic_old->dim > 3 ) /* just in for the first version */ { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); } - + /* initialisation of vectors */ size[0] = 1; @@ -176,7 +169,7 @@ mitkIpUInt4_t _mitkIpFuncBox3d ( mitkIpPicDescriptor *pic_old, n[i] = pic_old->n[i]; size[i] = size[i-1] * pic_old->n[i-1]; } - + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) n[i] = 1; @@ -187,7 +180,7 @@ mitkIpUInt4_t _mitkIpFuncBox3d ( mitkIpPicDescriptor *pic_old, *end = ( mitkIpUInt4_t * ) malloc ( pic_old->dim * sizeof ( mitkIpUInt4_t ) ); help_end = *end; - mitkIpPicFORALL_4 ( BOX3, pic_old, help_beg, help_end, n, size ); + mitkIpPicFORALL_4 ( BOX3, pic_old, help_beg, help_end, n, size ); return ( mitkIpFuncOK ); } diff --git a/Utilities/IpFunc/Canny.c b/Utilities/IpFunc/Canny.c index 8cb7aeb2023..8f33cf1c429 100644 --- a/Utilities/IpFunc/Canny.c +++ b/Utilities/IpFunc/Canny.c @@ -1,53 +1,47 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function performs an edge detection using the Canny operator */ - + /** @brief performs an edge detection using the Canny operator. * * The Canny-operator needs quite a lot memory. This can cause problems @@ -56,17 +50,17 @@ * @param pic_old pointer to original image * @param dim_mask dimension of mask * @param len_mask length of filtering mask - * @param threshold threshold to decide whether an edge belongs to + * @param threshold threshold to decide whether an edge belongs to * the image or not - * @param border tells how the edge is transformed + * @param border tells how the edge is transformed * - * @arg @c mitkIpFuncBorderOld : original greyvalues + * @arg @c mitkIpFuncBorderOld : original greyvalues * @arg @c mitkIpFuncBorderZero : edge is set to minimal greyvalue * * @return pointer to transformed iamge ( of type mitkIpFloat8_t ) * * AUTHOR & DATE - + */ /* include files */ @@ -82,7 +76,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncCanny\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncCanny\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -238,7 +232,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, ( ( (( type_h * ) pic_help3->data )[i] != 0 ) && \ ( (( type_h * ) pic_help2->data )[i] > threshold ) ) ? \ 1 : 0; \ -} +} /* ----------------------------------------------------------------- */ /* @@ -250,7 +244,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t dim_mask, mitkIpUInt4_t len_mask, mitkIpFloat8_t threshold, - mitkIpFuncFlagI_t border ) + mitkIpFuncFlagI_t border ) { #include "gradient.h" @@ -264,7 +258,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t i, j; /* loopindex */ mitkIpUInt4_t off_mask; /* loopindex */ mitkIpFuncMasc_t *m; /* compressed mask */ - mitkIpInt4_t offset; + mitkIpInt4_t offset; mitkIpInt4_t beg[_mitkIpPicNDIM]; mitkIpInt4_t end[_mitkIpPicNDIM]; mitkIpInt4_t ind[_mitkIpPicNDIM]; @@ -283,7 +277,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } - if ( pic_old->dim < dim_mask ) + if ( pic_old->dim < dim_mask ) { _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); @@ -292,7 +286,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, /* initialisation of pic_mask */ pic_mask = mitkIpPicNew (); - if ( pic_mask == NULL ) + if ( pic_mask == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); @@ -305,20 +299,20 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, pic_mask->n[i] = 3; pic_mask->n[dim_mask] = dim_mask; - if ( dim_mask == 4 ) - pic_mask->data = mask4; - else if ( dim_mask == 3 ) - pic_mask->data = mask3; + if ( dim_mask == 4 ) + pic_mask->data = mask4; + else if ( dim_mask == 3 ) + pic_mask->data = mask3; else if ( dim_mask == 2 ) - pic_mask->data = mask2; + pic_mask->data = mask2; /* initialisation of vectors */ - - size [0] = 1; - for ( i = 1; i < pic_old->dim; i++ ) - size[i] = size[i-1] * pic_old->n[i-1]; - for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) - size[i] = 0; + + size [0] = 1; + for ( i = 1; i < pic_old->dim; i++ ) + size[i] = size[i-1] * pic_old->n[i-1]; + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) + size[i] = 0; offset_h = size[pic_old->dim-1] * pic_old->n[pic_old->dim-1]; @@ -329,30 +323,30 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, for ( i = 0; i < dim_mask; i++ ) { - end[i] = pic_old->n[i] - pic_mask->n[i] / 2; + end[i] = pic_old->n[i] - pic_mask->n[i] / 2; beg[i] = ( ( pic_mask->n[i] % 2 ) == 1 ) ? - ( pic_mask->n[i] / 2 ) : ( pic_mask->n[i] / 2 - 1 ); + ( pic_mask->n[i] / 2 ) : ( pic_mask->n[i] / 2 - 1 ); off_p[i] = i * offset_h; } for ( i = dim_mask; i < _mitkIpPicNDIM; i++ ) beg[i] = 0; - for ( i = dim_mask; i < pic_old->dim; i++ ) - end[i] = pic_old->n[i]; - for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) + for ( i = dim_mask; i < pic_old->dim; i++ ) + end[i] = pic_old->n[i]; + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) end[i] = beg[i] + 1; /* create a new picture, copy the header, allocate memory */ pic_help2 = mitkIpPicCopyHeader ( pic_old, NULL ); - if ( pic_help2 == NULL ) + if ( pic_help2 == NULL ) { pic_mask->data = NULL; mitkIpPicFree ( pic_mask); _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } - if ( pic_old->type == mitkIpPicUInt || pic_old->type == mitkIpPicInt ) + if ( pic_old->type == mitkIpPicUInt || pic_old->type == mitkIpPicInt ) { pic_help2->type = mitkIpPicFloat; pic_help2->bpe = 64; @@ -379,7 +373,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, pic_help1->dim = pic_help2->dim + 1; pic_help1->n[pic_help1->dim-1] = dim_mask; pic_help1->data = calloc ( _mitkIpPicElements ( pic_help1 ), pic_help1->bpe / 8 ); - if ( pic_help1->data == NULL ) + if ( pic_help1->data == NULL ) { pic_help2->data = NULL; mitkIpPicFree ( pic_help2); @@ -388,9 +382,9 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - + pic_help3 = mitkIpPicCopyHeader ( pic_help2, NULL ); - if ( pic_help3 == NULL ) + if ( pic_help3 == NULL ) { pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); @@ -402,7 +396,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } pic_help3->data = calloc ( _mitkIpPicElements ( pic_help3 ), pic_help3->bpe / 8 ); - if ( pic_help3->data == NULL ) + if ( pic_help3->data == NULL ) { pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); @@ -417,7 +411,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, /* allocate mask-structure */ m = malloc ( sizeof ( mitkIpFuncMasc_t ) ); - if ( m == NULL ) + if ( m == NULL ) { pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); @@ -429,7 +423,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } m->off_vekt = malloc ( _mitkIpPicElements( pic_mask ) * sizeof ( mitkIpInt4_t ) ); - if ( m->off_vekt == NULL ) + if ( m->off_vekt == NULL ) { pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); @@ -444,7 +438,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } m->mask_vekt = malloc ( _mitkIpPicElements( pic_mask ) * sizeof ( mitkIpFloat8_t ) ); - if ( m->mask_vekt == NULL ) + if ( m->mask_vekt == NULL ) { pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); @@ -498,7 +492,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, /* calculate second derivation */ - mitkIpPicFORALL_4 ( CANNY0, pic_new, pic_help1, pic_help2, pic_help3, m ); + mitkIpPicFORALL_4 ( CANNY0, pic_new, pic_help1, pic_help2, pic_help3, m ); /* project second derivation to gradient */ mitkIpPicFORALL_3 ( CANNY2, pic_help2, pic_help3, pic_help1, m ); @@ -506,7 +500,7 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, /* zero crossing */ pic_help4 = mitkIpFuncZeroCr ( pic_help3 ); - + mitkIpPicFORALL_2 ( CANNY3, pic_help2, pic_help4, threshold ); /* free memory */ @@ -527,5 +521,5 @@ mitkIpPicDescriptor *mitkIpFuncCanny( mitkIpPicDescriptor *pic_old, return ( pic_help4 ); } - -#endif + +#endif diff --git a/Utilities/IpFunc/Close.c b/Utilities/IpFunc/Close.c index 0118431cc81..db15b68a358 100644 --- a/Utilities/IpFunc/Close.c +++ b/Utilities/IpFunc/Close.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function performs the morphological closing operation @@ -75,14 +69,14 @@ mitkIpPicDescriptor *mitkIpFuncClose ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif mitkIpPicDescriptor *mitkIpFuncClose ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ) -{ +{ mitkIpPicDescriptor *pic_new; pic_new = _mitkIpFuncOpCl ( pic_old, pic_mask, mitkIpFuncCloseF, border ); @@ -90,8 +84,8 @@ mitkIpPicDescriptor *mitkIpFuncClose ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); diff --git a/Utilities/IpFunc/CompressM.c b/Utilities/IpFunc/CompressM.c index 2b552c7c675..d2d0db95327 100644 --- a/Utilities/IpFunc/CompressM.c +++ b/Utilities/IpFunc/CompressM.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function removes all elements which are zero and @@ -69,16 +63,16 @@ #include "mitkIpFuncP.h" -mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, +mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, mitkIpPicDescriptor *pic_old, - mitkIpFuncFlagI_t kind, - mitkIpInt4_t beg[_mitkIpPicNDIM], + mitkIpFuncFlagI_t kind, + mitkIpInt4_t beg[_mitkIpPicNDIM], mitkIpInt4_t end[_mitkIpPicNDIM] ) ; #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncCompressM\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncCompressM\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -166,12 +160,12 @@ mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, /* */ /* ------------------------------------------------------------------- */ - -mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, + +mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, mitkIpPicDescriptor *pic_old, - mitkIpFuncFlagI_t kind, - mitkIpInt4_t beg[_mitkIpPicNDIM], - mitkIpInt4_t end[_mitkIpPicNDIM] ) + mitkIpFuncFlagI_t kind, + mitkIpInt4_t beg[_mitkIpPicNDIM], + mitkIpInt4_t end[_mitkIpPicNDIM] ) { mitkIpUInt4_t i; /* loop index */ mitkIpFuncMasc_t *m; /* length of mask and offsets */ @@ -184,12 +178,12 @@ mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); /* initialization of vectors */ - + for ( i = 0; i < mask->dim; i++ ) { - end[i] = pic_old->n[i] - mask->n[i] / 2; + end[i] = pic_old->n[i] - mask->n[i] / 2; beg[i] = ( ( mask->n[i] % 2 ) == 1 ) ? - ( mask->n[i] / 2 ) : ( mask->n[i] / 2 - 1 ); + ( mask->n[i] / 2 ) : ( mask->n[i] / 2 - 1 ); } for ( i = mask->dim; i < _mitkIpPicNDIM; i++ ) @@ -198,28 +192,28 @@ mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, mask->n[i] = 1; } - for ( i = mask->dim; i < pic_old->dim; i++ ) - end[i] = pic_old->n[i]; - for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) - end[i] = beg[i] + 1; + for ( i = mask->dim; i < pic_old->dim; i++ ) + end[i] = pic_old->n[i]; + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) + end[i] = beg[i] + 1; /* allocate mask structure */ m = malloc ( sizeof ( mitkIpFuncMasc_t ) ); - if ( m == NULL ) + if ( m == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } m->off_vekt = malloc ( _mitkIpPicElements( mask ) * sizeof ( mitkIpInt4_t ) ); - if ( m->off_vekt == NULL ) + if ( m->off_vekt == NULL ) { free ( m ); _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } m->mask_vekt = malloc ( _mitkIpPicElements( mask ) * sizeof ( mitkIpFloat8_t ) ); - if ( m->mask_vekt == NULL ) + if ( m->mask_vekt == NULL ) { free ( m->off_vekt ); free ( m ); @@ -230,8 +224,8 @@ mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, /* macro to compress mask (for all data types) */ mitkIpPicFORALL_5 ( OFF_M, mask, pic_old, beg, size, m, kind ); - - return ( m ); + + return ( m ); } #endif diff --git a/Utilities/IpFunc/Conv.c b/Utilities/IpFunc/Conv.c index 5820843a383..199fdddc762 100644 --- a/Utilities/IpFunc/Conv.c +++ b/Utilities/IpFunc/Conv.c @@ -1,77 +1,71 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file - * this function convolves an image with a mask + * this function convolves an image with a mask */ -/** this function convolves an image with a mask - * @param pic_old pointer to the image that should be convolved +/** this function convolves an image with a mask + * @param pic_old pointer to the image that should be convolved * @param mask pointer to the mask that is used for convolution - * @param border tells how the edge is transformed - * @arg @c mitkIpFuncFlagBorderOld : original greyvalues + * @param border tells how the edge is transformed + * @arg @c mitkIpFuncFlagBorderOld : original greyvalues * @arg @c mitkIpFuncFlagBorderZero : edge is set to minimal greyvalue * - * @return pointer to the convolved image + * @return pointer to the convolved image * * AUTHOR & DATE */ /* include-Files */ -#include "mitkIpFuncP.h" - -mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, +#include "mitkIpFuncP.h" + +mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncConv\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncConv\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -156,8 +150,8 @@ mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, */ /* ------------------------------------------------------------------- */ -mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, +mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ) { @@ -166,7 +160,7 @@ mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, mitkIpInt4_t beg[_mitkIpPicNDIM]; mitkIpInt4_t end[_mitkIpPicNDIM]; mitkIpFuncMasc_t *m; /* length of mask and offsets */ - mitkIpUInt4_t size[_mitkIpPicNDIM]; + mitkIpUInt4_t size[_mitkIpPicNDIM]; /* check whether data are correct */ @@ -179,7 +173,7 @@ mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); } - + for ( i = 0; i < pic_old->dim; i++ ) { if ( pic_mask->n[i] > pic_old->n[i] ) @@ -191,18 +185,18 @@ mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, /* create a new picture, copy the header, allocate memory */ - if ( border == mitkIpFuncBorderOld ) + if ( border == mitkIpFuncBorderOld ) { /*pic_new = _mitkIpFuncBorder ( pic_old, pic_mask, mitkIpFuncBorderOld );*/ - pic_new = mitkIpPicClone ( pic_old ); + pic_new = mitkIpPicClone ( pic_old ); } else if ( border == mitkIpFuncBorderZero ) - { - /* pic_new = _mitkIpFuncBorder ( pic_old, pic_mask, mitkIpFuncBorderZero ); */ + { + /* pic_new = _mitkIpFuncBorder ( pic_old, pic_mask, mitkIpFuncBorderZero ); */ pic_new = mitkIpPicCopyHeader ( pic_old, 0 ); - pic_new->data = calloc ( _mitkIpPicElements ( pic_new ), pic_new->bpe/8 ); + pic_new->data = calloc ( _mitkIpPicElements ( pic_new ), pic_new->bpe/8 ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); @@ -213,7 +207,7 @@ mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - + /* initialize vectors */ size[0] = 1; @@ -221,12 +215,12 @@ mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, /* compress mask */ - m = _mitkIpFuncCompressM ( pic_mask, pic_old, mitkIpFuncReflect, beg, end ); + m = _mitkIpFuncCompressM ( pic_mask, pic_old, mitkIpFuncReflect, beg, end ); if ( m == NULL ) return ( mitkIpFuncERROR ); /* macro to convolve an image (for all data types) */ - mitkIpPicFORALL_5 ( CONV, pic_old, size, pic_mask, beg, end, m ); + mitkIpPicFORALL_5 ( CONV, pic_old, size, pic_mask, beg, end, m ); /* free memory */ free ( m->off_vekt ); @@ -234,8 +228,8 @@ mitkIpPicDescriptor *mitkIpFuncConv( mitkIpPicDescriptor *pic_old, free ( m ); mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; } diff --git a/Utilities/IpFunc/Convert.c b/Utilities/IpFunc/Convert.c index 55bccea5fe2..c022f516878 100644 --- a/Utilities/IpFunc/Convert.c +++ b/Utilities/IpFunc/Convert.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file @@ -50,13 +44,13 @@ * (at the moment only datatype mitkIpUInt1_t, mitkIpInt2_t, mitkIpFloat8_t ) are * supported. */ - + /** this function converts one image to an image of another data type * (at the moment only datatype mitkIpUInt1_t, mitkIpInt2_t, mitkIpFloat8_t ) are * supported. * * @param pic_old pointer to input image - * @param type image data type + * @param type image data type * 3 mitkIpPicInt * 4 mitkIpPicUInt * 5 mitkIpPicFloat @@ -79,7 +73,7 @@ mitkIpPicDescriptor *mitkIpFuncConvert ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncConvert\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncConvert\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -89,12 +83,12 @@ mitkIpPicDescriptor *mitkIpFuncConvert ( mitkIpPicDescriptor *pic_old, { \ mitkIpPicFORALL_4( CONV_2, pic_new, pic_old, type_old, min_gv, max_gv ) \ } - + #define CONV_3( type_old, pic_old, pic_new ) \ { \ mitkIpPicFORALL_2( CONV_4, pic_new, pic_old, type_old ) \ } - + #define CONV_4( type_new, pic_new, pic_old, type_old ) \ { \ @@ -139,7 +133,7 @@ mitkIpPicDescriptor *mitkIpFuncConvert ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t bpe ) { - mitkIpFloat8_t min, max; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min, max; /* extreme greyvalues of 1. image */ mitkIpFloat8_t max_gv; mitkIpFloat8_t min_gv; /* min. possible greyvalue */ mitkIpPicDescriptor *pic_new; /* pointer to new image */ @@ -156,7 +150,7 @@ mitkIpPicDescriptor *mitkIpFuncConvert ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - + /* calculate max. and min. possible greyvalues for output image */ if ( _mitkIpFuncExtT ( type, bpe, &min_gv, &max_gv ) != mitkIpFuncOK ) @@ -189,12 +183,12 @@ mitkIpPicDescriptor *mitkIpFuncConvert ( mitkIpPicDescriptor *pic_old, if ( ( min < min_gv ) || ( max > max_gv ) ) mitkIpPicFORALL_3 ( CONV_1, pic_old, pic_new, min_gv, max_gv ) - else + else mitkIpPicFORALL_1 ( CONV_3, pic_old, pic_new ) mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; } diff --git a/Utilities/IpFunc/CopyTags.c b/Utilities/IpFunc/CopyTags.c index fac854ba44e..fdbd9c66488 100644 --- a/Utilities/IpFunc/CopyTags.c +++ b/Utilities/IpFunc/CopyTags.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. -*****************************************************************************/ +============================================================================*/ /** @file * this function copies the tags of one image to another @@ -54,20 +48,19 @@ * * @author Carlos and Ivo * @date 14.04.2000 - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ #include "mitkIpFuncP.h" -void mitkIpFuncCopyTags(mitkIpPicDescriptor *pic_new, mitkIpPicDescriptor *pic_old) +void mitkIpFuncCopyTags(mitkIpPicDescriptor *pic_new, mitkIpPicDescriptor *pic_old) { /* Copy Tags */ - + if(pic_new!=NULL) { strncpy( pic_new->info->version, pic_old->info->version, _mitkIpPicTAGLEN ); pic_new->info->tags_head = _mitkIpPicCloneTags( pic_old->info->tags_head ); - pic_new->info->write_protect = pic_old->info->write_protect; + pic_new->info->write_protect = pic_old->info->write_protect; } } diff --git a/Utilities/IpFunc/Curtosis.c b/Utilities/IpFunc/Curtosis.c index e3d49f737e0..fa21d63b67a 100644 --- a/Utilities/IpFunc/Curtosis.c +++ b/Utilities/IpFunc/Curtosis.c @@ -1,65 +1,59 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function calculates the curtosis of all + * this function calculates the curtosis of all * greyvalues in an image */ -/** @brief calculates the curtosis of all +/** @brief calculates the curtosis of all * greyvalues in an image * - * @param pic pointer to the image - * + * @param pic pointer to the image + * * @return curtosis of image * * @author Steffen Gundel */ - - + + /* include-files */ #include "mitkIpFuncP.h" @@ -73,7 +67,7 @@ mitkIpFloat8_t mitkIpFuncCurtosis ( mitkIpPicDescriptor *pic ); /* include-files */ #include "mitkIpFuncP.h" - + /* definition of extreme value macro */ #define CURTOSIS( type, pic, mean, excess ) \ @@ -92,27 +86,27 @@ mitkIpFloat8_t mitkIpFuncCurtosis ( mitkIpPicDescriptor *pic ); excess; \ } \ } - + mitkIpFloat8_t mitkIpFuncCurtosis ( mitkIpPicDescriptor *pic ) { mitkIpFloat8_t curt; - mitkIpFloat8_t mean, std; - + mitkIpFloat8_t mean, std; + /* check image data */ if ( _mitkIpFuncError ( pic ) != mitkIpOK ) return ( mitkIpFuncERROR ); curt = 0.0; - if ( _mitkIpPicElements ( pic ) != 1 ) + if ( _mitkIpPicElements ( pic ) != 1 ) { - + mean = mitkIpFuncMean ( pic ); std = mitkIpFuncSDev( pic ); - mitkIpPicFORALL_2( CURTOSIS, pic, mean, curt ); - + mitkIpPicFORALL_2( CURTOSIS, pic, mean, curt ); + curt = curt / ((( mitkIpFloat8_t )(_mitkIpPicElements ( pic ) - 1 )) *std*std*std*std) -3; } diff --git a/Utilities/IpFunc/CurtosisR.c b/Utilities/IpFunc/CurtosisR.c index 90441cfb9cf..636d385b6c3 100644 --- a/Utilities/IpFunc/CurtosisR.c +++ b/Utilities/IpFunc/CurtosisR.c @@ -1,61 +1,55 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function calculates the curtosis of all + * this function calculates the curtosis of all * greyvalues included by a rectangle */ -/** @brief calculates the curtosis of all +/** @brief calculates the curtosis of all * greyvalues included by a rectangle * - * The rectangle is described by a vector with the coordinates of the + * The rectangle is described by a vector with the coordinates of the * upper left corner and a vector of its length in each direction * - * @param pic_old pointer to the image + * @param pic_old pointer to the image * @param begin vector with the beginning coordinates of the window * @param length vector with the length of the window in each direction * @@ -63,21 +57,21 @@ * * @author Steffen Gundel */ - + /* include-files */ #include "mitkIpFuncP.h" - + /* ========================================================== */ /* -** function picVar : calculates the mean value (mean) +** function picVar : calculates the mean value (mean) ** of an image (pic) */ /* ========================================================== */ double mitkIpFuncCurtosisR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ) { mitkIpFloat8_t var; @@ -90,4 +84,4 @@ double mitkIpFuncCurtosisR ( mitkIpPicDescriptor *pic_old, mitkIpPicFree ( pic_help ); return ( var ); -} +} diff --git a/Utilities/IpFunc/Dila.c b/Utilities/IpFunc/Dila.c index 5a6d152010f..298fea75402 100644 --- a/Utilities/IpFunc/Dila.c +++ b/Utilities/IpFunc/Dila.c @@ -1,63 +1,57 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs a dilation. If the original * image is a binary image each pixel is connected with the surrounding - * pixels which are non zero in the kernel by using logical operations + * pixels which are non zero in the kernel by using logical operations * ( and for erosion, or for dilation ). Greylevel images are transformed - * by taking the minimum (erosion) of the surrounding pixels or the + * by taking the minimum (erosion) of the surrounding pixels or the * maximum (dilation). */ /** @brief performs a dilation. If the original * image is a binary image each pixel is connected with the surrounding - * pixels which are non zero in the kernel by using logical operations + * pixels which are non zero in the kernel by using logical operations * ( and for erosion, or for dilation ). Greylevel images are transformed - * by taking the minimum (erosion) of the surrounding pixels or the + * by taking the minimum (erosion) of the surrounding pixels or the * maximum (dilation). * * @param pic_old pointer to the original image @@ -84,7 +78,7 @@ mitkIpPicDescriptor *mitkIpFuncDila ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mitkIpFuncDila ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ) -{ +{ mitkIpPicDescriptor *pic_new; pic_new = _mitkIpFuncMorph ( pic_old, pic_mask, mitkIpFuncDilaF, border ); @@ -93,7 +87,7 @@ mitkIpPicDescriptor *mitkIpFuncDila ( mitkIpPicDescriptor *pic_old, mitkIpFuncCopyTags(pic_new, pic_old); - + return ( pic_new ); } diff --git a/Utilities/IpFunc/DivC.c b/Utilities/IpFunc/DivC.c index d88952228c6..94a22b32c75 100644 --- a/Utilities/IpFunc/DivC.c +++ b/Utilities/IpFunc/DivC.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function divides the greyvalues of an image by a value @@ -71,14 +65,14 @@ #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncDivC\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncDivC\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -90,7 +84,7 @@ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, { \ mitkIpPicFORALL_3 ( DIVC2, pic_new, pic_1, type_1, value ); \ } \ - + #define DIVC2( type_n, pic_new, pic_1, type_1, value ) \ { \ mitkIpUInt4_t i, no_elem; \ @@ -128,7 +122,7 @@ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, /* ------------------------------------------------------------------- */ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ) { @@ -136,7 +130,7 @@ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ @@ -157,7 +151,7 @@ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, if ( keep == mitkIpFuncKeep ) { - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); } else if ( keep == mitkIpFuncNoKeep ) @@ -173,7 +167,7 @@ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, if ( pic_old->type == mitkIpPicInt ) { - if ( smax < max_gv && smin > min_gv ) + if ( smax < max_gv && smin > min_gv ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } @@ -207,20 +201,20 @@ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncExtT ( pic_new->type, pic_new->bpe, &min_gv, &max_gv ); } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_old->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } - else - { + else + { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } - + } else { @@ -233,7 +227,7 @@ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } - + if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); if ( pic_new->data == NULL ) @@ -254,8 +248,8 @@ mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; diff --git a/Utilities/IpFunc/DivI.c b/Utilities/IpFunc/DivI.c index a29986bc3d2..ad3531d50ea 100644 --- a/Utilities/IpFunc/DivI.c +++ b/Utilities/IpFunc/DivI.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function divides corresponding greyvalues of two images @@ -79,7 +73,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_1, #ifndef lint - static char *what = { "@(#)mitkIpFuncDivI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncDivI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -91,7 +85,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_1, { \ mitkIpPicFORALL_3 ( DIVI2, pic_new, pic_1, pic_2, type_1 ); \ } \ - + #define DIVI2( type_n, pic_new, pic_1, pic_2, type_1 ) \ { \ mitkIpUInt4_t i, no_elem; \ @@ -145,7 +139,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_1, mitkIpUInt4_t i; /* loop index */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t min2, max2; /* extreme greyvalues of 2. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ mitkIpFloat8_t min_max12; /* product of min1 and max2 */ @@ -161,7 +155,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_1, if ( ( pic_1->type != pic_2->type ) || ( pic_1->bpe != pic_2->bpe ) ) { - _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); return NULL; } if ( pic_1->dim == pic_2->dim ) @@ -169,7 +163,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_1, { if ( pic_1->n[i] != pic_2->n[i] ) { - _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); return NULL; } } @@ -188,7 +182,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_1, if ( keep == mitkIpFuncKeep ) { - pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); } else if ( keep == mitkIpFuncNoKeep ) @@ -245,16 +239,16 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_1, } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_1->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_1, NULL ); } - else - { + else + { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } @@ -270,7 +264,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_1, _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } - + if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); if ( pic_new->data == NULL ) diff --git a/Utilities/IpFunc/DrawPoly.c b/Utilities/IpFunc/DrawPoly.c index 49f07446560..0578829cec3 100644 --- a/Utilities/IpFunc/DrawPoly.c +++ b/Utilities/IpFunc/DrawPoly.c @@ -1,64 +1,58 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function draws the edge of an ROI in an image */ - + /** this function draws the edge of an ROI in an image * @param pic_old pointer to original image - * @param pol_x vector with the x-coordinates of the points which + * @param pol_x vector with the x-coordinates of the points which * form the roi - * @param pol_y vector with the y-coordinates of the points which + * @param pol_y vector with the y-coordinates of the points which * form the roi * @param no_pts number of points used to describe ROI * * @arg @c this function could just be used for 2D images * - * @return image with roi + * @return image with roi * * AUTHOR & DATE */ @@ -75,7 +69,7 @@ mitkIpPicDescriptor *mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncDrawPoly\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncDrawPoly\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -245,7 +239,7 @@ mitkIpPicDescriptor *mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, (( type * )pic_help->data )[ j * pic_help->n[1] + y ] = max;\ } \ } \ -} +} /* -------------------------------------------------------------------- */ @@ -270,7 +264,7 @@ mitkIpPicDescriptor *mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, /* check data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( pic_old->dim > 2 ) + if ( pic_old->dim > 2 ) { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); @@ -296,28 +290,28 @@ mitkIpPicDescriptor *mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, /* check whether ROI is in image */ /* Expression is always false. - if ( min_x < 0 ) + if ( min_x < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } */ - if ( max_x > pic_old->n[0] ) + if ( max_x > pic_old->n[0] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } /* Expression is always false. - if ( min_y < 0 ) + if ( min_y < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } */ - if ( max_y > pic_old->n[1] ) + if ( max_y > pic_old->n[1] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); diff --git a/Utilities/IpFunc/Equal.c b/Utilities/IpFunc/Equal.c index c52d55684ce..ab04954e334 100644 --- a/Utilities/IpFunc/Equal.c +++ b/Utilities/IpFunc/Equal.c @@ -1,72 +1,66 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file -* this function equalizes a greyvalue histogram +* this function equalizes a greyvalue histogram */ -/** this function equalizes a greyvalue histogram +/** this function equalizes a greyvalue histogram * * @param pic_old pointer to the image that should be equalized * @param kind intervall of transformation * @arg @c mitkIpFuncMinMax (extreme greyvalues) - * @arg @c mitkIpFuncTotal (max. and min. possible - * greyvalues) + * @arg @c mitkIpFuncTotal (max. and min. possible + * greyvalues) * @param pic_return memory used to store return image ( if pic_return == NULL * new memory is allocated ) * - * @return pointer to the egalized image + * @return pointer to the egalized image * * AUTHOR & DATE */ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t kind, @@ -76,7 +70,7 @@ mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, #ifndef lint - static char *what = { "@(#)mitkIpFuncEqual\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncEqual\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -145,9 +139,9 @@ mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, ( ( type * ) pic_new->data )[i] = ( type ) hist_cp[index]; \ } \ free ( hist_cp ); \ -} - - +} + + /* ------------------------------------------------------------------- */ /* @@ -156,7 +150,7 @@ mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t kind, - mitkIpPicDescriptor *pic_return ) + mitkIpPicDescriptor *pic_return ) { mitkIpPicDescriptor *pic_new; /* inverted picture */ @@ -164,21 +158,21 @@ mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t min_gv; /* min. possible greyvalue */ mitkIpUInt4_t *hist; /* greylevel histogram */ mitkIpUInt4_t size_hist; /* no. of elements in histogram */ - mitkIpFloat4_t factor; + mitkIpFloat4_t factor; mitkIpFloat8_t help; /* check data */ - + if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); /* create a new picture, copy the header, allocate memory */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* calculate max. and min. possible greyvalues */ - if ( _mitkIpFuncExtT ( pic_old->type, pic_old->bpe, &min_gv, &max_gv ) != mitkIpFuncOK ) + if ( _mitkIpFuncExtT ( pic_old->type, pic_old->bpe, &min_gv, &max_gv ) != mitkIpFuncOK ) { mitkIpPicFree ( pic_new ); return ( NULL ); @@ -186,8 +180,8 @@ mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, /* calculate greylevel histogram */ - mitkIpFuncHist ( pic_old, min_gv, max_gv, &hist, &size_hist ); - if ( hist == 0 ) + mitkIpFuncHist ( pic_old, min_gv, max_gv, &hist, &size_hist ); + if ( hist == 0 ) { mitkIpPicFree ( pic_new ); return ( NULL ); @@ -197,11 +191,11 @@ mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, help = fabs ( min_gv ); - if ( pic_old->type == mitkIpPicFloat ) - factor = 1000.; + if ( pic_old->type == mitkIpPicFloat ) + factor = 1000.; else if ( pic_old->type == mitkIpPicInt || pic_old->type == mitkIpPicUInt ) factor = 1.; - else + else { mitkIpPicFree ( pic_new ); free ( hist ); @@ -218,8 +212,8 @@ mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); diff --git a/Utilities/IpFunc/Ero.c b/Utilities/IpFunc/Ero.c index 0d2bb44f232..1d7b96f0a49 100644 --- a/Utilities/IpFunc/Ero.c +++ b/Utilities/IpFunc/Ero.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs an erosion @@ -50,11 +44,11 @@ /** @brief this function performs an erosion * - * If the original image is a binary image each pixel is connected with + * If the original image is a binary image each pixel is connected with * the surrounding - * pixels which are non zero in the kernel by using logical operations + * pixels which are non zero in the kernel by using logical operations * ( and for erosion, or for dilation ). Greylevel images are transformed - * by taking the minimum (erosion) of the surrounding pixels or the + * by taking the minimum (erosion) of the surrounding pixels or the * maximum (dilation). * * @param pic_old pointer to the original image @@ -66,7 +60,7 @@ * @return pointer to the transformed image * * @par Uses - * @arg _mitkIpFuncError() - check the image data + * @arg _mitkIpFuncError() - check the image data * @arg _mitkIpFuncCompressM() - compress filtering mask * * AUTHOR & DATE @@ -85,7 +79,7 @@ mitkIpPicDescriptor *mitkIpFuncEro ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mitkIpFuncEro ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ) -{ +{ mitkIpPicDescriptor *pic_new; pic_new = _mitkIpFuncMorph ( pic_old, pic_mask, mitkIpFuncEroF, border ); @@ -95,8 +89,8 @@ mitkIpPicDescriptor *mitkIpFuncEro ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/Error.c b/Utilities/IpFunc/Error.c index a2e5507233c..a45e0c80b1f 100644 --- a/Utilities/IpFunc/Error.c +++ b/Utilities/IpFunc/Error.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this functions checks, whether the information of the image header @@ -52,9 +46,9 @@ /** @briefs checks, whether the information of the image header * are correct * - * @param pic pointer to the image + * @param pic pointer to the image * - * @return mitkIpFuncOK - if data are correct + * @return mitkIpFuncOK - if data are correct * @return mitkIpFuncERROR - if data aren't correct * * AUTHOR & DATE @@ -70,7 +64,7 @@ mitkIpUInt4_t _mitkIpFuncError ( mitkIpPicDescriptor *pic ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -85,7 +79,7 @@ mitkIpUInt4_t _mitkIpFuncError ( mitkIpPicDescriptor *pic ) /* is image existing ? */ - if ( !pic ) + if ( !pic ) { _mitkIpFuncSetErrno ( mitkIpFuncNOPIC_ERROR ); return ( mitkIpFuncERROR ); @@ -100,16 +94,16 @@ mitkIpUInt4_t _mitkIpFuncError ( mitkIpPicDescriptor *pic ) } /* is size correct ? */ - + for ( i = 0; i < pic->dim; i++ ) if ( pic->n[i] < 1 ) { _mitkIpFuncSetErrno ( mitkIpFuncSIZE_ERROR ); return ( mitkIpFuncERROR ); } - for ( i = pic->dim; i < _mitkIpPicNDIM; i++ ) + for ( i = pic->dim; i < _mitkIpPicNDIM; i++ ) pic->n[i] = 0; - + /* is image data type correct ? */ if ( pic->type == mitkIpPicInt || pic->type == mitkIpPicUInt ) @@ -128,12 +122,12 @@ mitkIpUInt4_t _mitkIpFuncError ( mitkIpPicDescriptor *pic ) return ( mitkIpFuncERROR ); } } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } - + return ( mitkIpFuncOK ); } #endif diff --git a/Utilities/IpFunc/Exp.c b/Utilities/IpFunc/Exp.c index 5a814dde693..beff407d920 100644 --- a/Utilities/IpFunc/Exp.c +++ b/Utilities/IpFunc/Exp.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * transforms the greyvalues by an exponential function (y = exp (ax) + b) @@ -51,9 +45,9 @@ /** transforms the greyvalues by an exponential function (y = exp (ax) + b) * * @param pic_old pointer to the image that should be inverted - * @param kind determines + * @param kind determines * mitkIpFuncTotal => transformation of all greyvalues - * mitkIpFuncMinMax=> transformation of greyvalues between min and max + * mitkIpFuncMinMax=> transformation of greyvalues between min and max * @param pic_return memory used to store return image ( if pic_return == NULL * new memory is allocated ) * @@ -64,7 +58,7 @@ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncExp ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t kind, @@ -74,12 +68,12 @@ mitkIpPicDescriptor *mitkIpFuncExp ( mitkIpPicDescriptor *pic_old, #ifndef lint - static char *what = { "@(#)mitkIpFuncExp\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncExp\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif - + /* definition of macro for normalisation */ #define EXP( type, pic, min_gv, max_gv ) \ @@ -96,13 +90,13 @@ mitkIpPicDescriptor *mitkIpFuncExp ( mitkIpPicDescriptor *pic_old, ( type ) ( exp ( a * ((( type * ) pic->data ) [i] - min_gv)) \ -1 + min_gv ); \ } \ -} +} + - /* ------------------------------------------------------------------- */ /* -** function mitkIpFuncExp: +** function mitkIpFuncExp: */ /* ------------------------------------------------------------------- */ @@ -134,7 +128,7 @@ mitkIpPicDescriptor *mitkIpFuncExp ( mitkIpPicDescriptor *pic_old, if ( mitkIpFuncExtr ( pic_old, &min_gv, &max_gv ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); @@ -142,9 +136,9 @@ mitkIpPicDescriptor *mitkIpFuncExp ( mitkIpPicDescriptor *pic_old, /* create a new picture, copy the header, allocate memory */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); - + /* macro to invert the picture (for all data types) */ mitkIpPicFORALL_2( EXP, pic_old, min_gv, max_gv ); @@ -152,8 +146,8 @@ mitkIpPicDescriptor *mitkIpFuncExp ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; } diff --git a/Utilities/IpFunc/ExtT.c b/Utilities/IpFunc/ExtT.c index 175405b2c1b..134a6304f87 100644 --- a/Utilities/IpFunc/ExtT.c +++ b/Utilities/IpFunc/ExtT.c @@ -1,54 +1,48 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function returns the allowed greyvalue range for a specific data-type */ -/** @brief this function returns the allowed greyvalue range for a +/** @brief this function returns the allowed greyvalue range for a * specific data-type * * @param type data-type of image data @@ -57,14 +51,14 @@ * @param min_gv min. possible greyvalue * * @return mitkIpFuncERROR if an error occured - * @return mitkIpFuncOK when no error occured + * @return mitkIpFuncOK when no error occured * * AUTHOR & DATE */ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" mitkIpInt4_t _mitkIpFuncExtT ( mitkIpPicType_t type, mitkIpUInt4_t bpe, @@ -74,7 +68,7 @@ mitkIpInt4_t _mitkIpFuncExtT ( mitkIpPicType_t type, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)_mitkIpFuncExtT\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)_mitkIpFuncExtT\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -83,7 +77,7 @@ mitkIpInt4_t _mitkIpFuncExtT ( mitkIpPicType_t type, #ifdef _WIN32 #include #endif - + /* definition of EXP-macro */ #define EXP( max_gv, bpe ) \ @@ -93,12 +87,12 @@ mitkIpInt4_t _mitkIpFuncExtT ( mitkIpPicType_t type, *max_gv = 1; \ for ( i = 1; i <= bpe; i++ ) \ *max_gv = *max_gv * 2; \ -} +} /* ------------------------------------------------------------------- */ /* ** function _picExtT: calculates the max. and min. possible greyvalues for -** a certain datatype +** a certain datatype */ /* ------------------------------------------------------------------- */ @@ -126,8 +120,8 @@ mitkIpInt4_t _mitkIpFuncExtT ( mitkIpPicType_t type, { if ( bpe = 32 ) { - *max_gv = FLT_MAX; - *min_gv = - FLT_MAX; + *max_gv = FLT_MAX; + *min_gv = - FLT_MAX; } else if ( bpe = 64 ) { @@ -135,7 +129,7 @@ mitkIpInt4_t _mitkIpFuncExtT ( mitkIpPicType_t type, *min_gv = - DBL_MAX; } } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); diff --git a/Utilities/IpFunc/ExtrC.c b/Utilities/IpFunc/ExtrC.c index fde415050e3..a92fbe95186 100644 --- a/Utilities/IpFunc/ExtrC.c +++ b/Utilities/IpFunc/ExtrC.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function calculates the extreme greyvalues of all greyvalues which are @@ -57,10 +51,10 @@ * @param pic_old pointer to the original image * @param min` pointer to minimal greyvalue in circle ( return value ) * @param max pointer to maximal greyvalue in circle ( return value ) - * @param center pointer to an array that contains the coordinates - * of the center + * @param center pointer to an array that contains the coordinates + * of the center * of the circle - * @param radius radius of the circle + * @param radius radius of the circle * * @return mitkIpFuncOK - if no error occured * @return mitkIpFuncERROR - if an error occured @@ -81,7 +75,7 @@ mitkIpUInt4_t mitkIpFuncExtrC ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncExtrC\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncExtrC\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -175,7 +169,7 @@ mitkIpUInt4_t mitkIpFuncExtrC ( mitkIpPicDescriptor *pic_old, /* check whether data are correct */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( radius <= 0 ) + if ( radius <= 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -218,8 +212,8 @@ mitkIpUInt4_t mitkIpFuncExtrC ( mitkIpPicDescriptor *pic_old, /* allocate image structure */ mitkIpPicFORALL_5 ( EXTR, pic_old, begin, end, size, centr, radius ); - - return ( mitkIpFuncOK ); + + return ( mitkIpFuncOK ); } #endif diff --git a/Utilities/IpFunc/ExtrR.c b/Utilities/IpFunc/ExtrR.c index b4938fdf5b0..9e01811b66b 100644 --- a/Utilities/IpFunc/ExtrR.c +++ b/Utilities/IpFunc/ExtrR.c @@ -1,57 +1,51 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the extreme values of all greyvalues included by a rectangle */ - + /** @brief calculates the extreme values of all greyvalues included by a rectangle * - * The rectangle is described by a vector with the coordinates of the + * The rectangle is described by a vector with the coordinates of the * upper left corner and a vector of its length in each direction * * @param pic_old pointer to original image @@ -68,21 +62,21 @@ #include "mitkIpFuncP.h" mitkIpUInt4_t mitkIpFuncExtrR ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t *min, - mitkIpFloat8_t *max, + mitkIpFloat8_t *min, + mitkIpFloat8_t *max, mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncExtrR\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncExtrR\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif mitkIpUInt4_t mitkIpFuncExtrR ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t *min, - mitkIpFloat8_t *max, + mitkIpFloat8_t *min, + mitkIpFloat8_t *max, mitkIpUInt4_t *begin, mitkIpUInt4_t *length ) { @@ -94,7 +88,7 @@ mitkIpUInt4_t mitkIpFuncExtrR ( mitkIpPicDescriptor *pic_old, if ( pic_help ) error = mitkIpFuncExtr ( pic_help, min, max ); - else + else return ( mitkIpFuncERROR ); mitkIpPicFree ( pic_help ); diff --git a/Utilities/IpFunc/ExtrROI.c b/Utilities/IpFunc/ExtrROI.c index 597708d3759..9fcabb8c341 100644 --- a/Utilities/IpFunc/ExtrROI.c +++ b/Utilities/IpFunc/ExtrROI.c @@ -1,57 +1,51 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the extreme greyvalues - * of all pixels which are included by a polygon which + * of all pixels which are included by a polygon which * is described by a sequence of points */ /** @brief calculates the extreme greyvalues - * of all pixels which are included by a polygon which + * of all pixels which are included by a polygon which * is described by a sequence of points * * @param pic_old pointer to original image @@ -66,7 +60,7 @@ * REMARKS * this function could just be used for 2D images * - * @return mitkIpFuncOK when no error occured + * @return mitkIpFuncOK when no error occured * @return mitkIpFuncERROR when an error occured * * AUTHOR & DATE @@ -85,15 +79,15 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncExtrROI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncExtrROI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /*definition of macros */ -#define MAX( x, y ) ( x > y ) ? x : y -#define MIN( x, y ) ( x < y ) ? x : y +#define MAX( x, y ) ( x > y ) ? x : y +#define MIN( x, y ) ( x < y ) ? x : y #define ROI( type, pic, pic_help ) \ { \ mitkIpBool_t in; \ @@ -139,7 +133,7 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *max, mitkIpUInt4_t *pol_x, mitkIpUInt4_t *pol_y, - mitkIpUInt4_t no_pts ) + mitkIpUInt4_t no_pts ) { mitkIpFloat8_t *a, *b; /* Gerade y = ax+b */ mitkIpPicDescriptor *pic_help; /* contains edge of ROI */ @@ -151,7 +145,7 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, /* check image data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( pic_old->dim > 2 ) + if ( pic_old->dim > 2 ) { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); @@ -173,26 +167,26 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, /* check whether ROI is in image */ - /* Expression is always false! - if ( min_x < 0 ) + /* Expression is always false! + if ( min_x < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } */ - if ( max_x > pic_old->n[0] ) + if ( max_x > pic_old->n[0] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } /* Expression is always false! - if ( min_y < 0 ) + if ( min_y < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } */ - if ( max_y > pic_old->n[1] ) + if ( max_y > pic_old->n[1] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -202,9 +196,9 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, a = ( mitkIpFloat8_t * ) malloc ( no_pts * sizeof ( mitkIpFloat8_t ) ); b = ( mitkIpFloat8_t * ) malloc ( no_pts * sizeof ( mitkIpFloat8_t ) ); - + /* Geraden zwischen zwei benachbarten Punkten berechnen */ - + for ( i = 0; i < no_pts-1; i++ ) { diff = ( mitkIpFloat8_t ) pol_x[i+1] - ( mitkIpFloat8_t ) pol_x[i]; @@ -219,7 +213,7 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, a[i] = 0.; } } - diff = ( mitkIpFloat8_t ) pol_x[no_pts-1] - ( mitkIpFloat8_t ) pol_x[0]; + diff = ( mitkIpFloat8_t ) pol_x[no_pts-1] - ( mitkIpFloat8_t ) pol_x[0]; if ( diff ) { a[no_pts-1] = ( ( mitkIpFloat8_t ) pol_y[no_pts-1] - ( mitkIpFloat8_t ) pol_y[0] ) / diff; @@ -230,11 +224,11 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, b[no_pts-1] = 0.; a[no_pts-1] = 0.; } - + /* draw polygon to image */ pic_help = _mitkIpFuncDrawPoly ( pic_old, pol_x, pol_y, no_pts, a, b ); - if ( ! pic_help ) + if ( ! pic_help ) { free ( a ); free ( b ); @@ -243,7 +237,7 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, /* macro to calculate mean */ - mitkIpPicFORALL_1 ( ROI, pic_old, pic_help ); + mitkIpPicFORALL_1 ( ROI, pic_old, pic_help ); free ( a ); @@ -252,6 +246,6 @@ mitkIpUInt4_t mitkIpFuncExtrROI ( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncOK ); -} +} #endif diff --git a/Utilities/IpFunc/Extrema.c b/Utilities/IpFunc/Extrema.c index c7e8ca0f9b9..eb80a033bc5 100644 --- a/Utilities/IpFunc/Extrema.c +++ b/Utilities/IpFunc/Extrema.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the extreme greyvalues of an image @@ -50,10 +44,10 @@ /** this function calculates the extreme greyvalues of an image - * @param pic pointer to the image - * @param &min result variable: minimum - * @param &max result variable: maximum - * + * @param pic pointer to the image + * @param &min result variable: minimum + * @param &max result variable: maximum + * * @return mitkIpFuncOK no error occured * @return mitkIpFuncERROR an error occured * @@ -65,19 +59,19 @@ #include "mitkIpFuncP.h" mitkIpInt4_t mitkIpFuncExtr ( mitkIpPicDescriptor *pic, - mitkIpFloat8_t *min, + mitkIpFloat8_t *min, mitkIpFloat8_t *max ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncExtr\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncExtr\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif - + /* definition of extreme value macro */ #define EXTR( type, pic, min_c, max_c ) \ @@ -98,18 +92,18 @@ mitkIpInt4_t mitkIpFuncExtr ( mitkIpPicDescriptor *pic, \ } \ } - + /* ========================================================== */ /* */ /* ========================================================== */ mitkIpInt4_t mitkIpFuncExtr ( mitkIpPicDescriptor *pic, - mitkIpFloat8_t *min, + mitkIpFloat8_t *min, mitkIpFloat8_t *max ) { - mitkIpFloat8_t min_c = 0.0; + mitkIpFloat8_t min_c = 0.0; mitkIpFloat8_t max_c = 0.0; /* check data */ diff --git a/Utilities/IpFunc/FillArea.c b/Utilities/IpFunc/FillArea.c index 2c45507f7d9..c2efe084e31 100644 --- a/Utilities/IpFunc/FillArea.c +++ b/Utilities/IpFunc/FillArea.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file @@ -57,20 +51,20 @@ */ #ifndef lint - static char *what = { "@(#)\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include-Files */ -#include "mitkIpFuncP.h" - +#include "mitkIpFuncP.h" + /* definition of macros and constants */ #define KL < -#define GR > +#define GR > -#define MAX( x, y ) ( x > y ) ? x : y -#define MIN( x, y ) ( x < y ) ? x : y +#define MAX( x, y ) ( x > y ) ? x : y +#define MIN( x, y ) ( x < y ) ? x : y #define RECT( type, pic, beg, end, value ) \ { \ @@ -84,7 +78,7 @@ for ( i = beg[0]; i < end[0]; i++ ) \ (( type * )pic->data )[i + offset] = ( type ) value; \ } \ -} +} #define TRI( type, pic, beg, end, value, a, b, OP ) \ { \ mitkIpUInt4_t i, j, n; \ @@ -104,9 +98,9 @@ } \ } \ } \ -} - - +} + + /* ------------------------------------------------------------------- */ /* @@ -115,7 +109,7 @@ mitkIpPicDescriptor *mitkIpFuncFillArea ( mitkIpPicDescriptor *pic_old, mitkIpFuncBox_t box, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t over, mitkIpPicDescriptor *pic_return ) { @@ -132,7 +126,7 @@ mitkIpPicDescriptor *mitkIpFuncFillArea ( mitkIpPicDescriptor *pic_old, /* create a new picture, copy the header, allocate memory */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); if ( pic_new != pic_old ) { @@ -140,8 +134,8 @@ mitkIpPicDescriptor *mitkIpFuncFillArea ( mitkIpPicDescriptor *pic_old, } /* Gerade durch die beiden Punkte */ - - a = ( ( mitkIpFloat8_t ) box.y1 - ( mitkIpFloat8_t ) box.y0 ) / + + a = ( ( mitkIpFloat8_t ) box.y1 - ( mitkIpFloat8_t ) box.y0 ) / ( ( mitkIpFloat8_t ) box.x1 - ( mitkIpFloat8_t ) box.x0 ); b = ( mitkIpFloat8_t ) box.y0 - a * box.x0; @@ -162,7 +156,7 @@ mitkIpPicDescriptor *mitkIpFuncFillArea ( mitkIpPicDescriptor *pic_old, /* printf ( "2.Rechteck: beg %d %d end: %d %d \n", beg[0], beg[1], end[0], end[1] ); */ mitkIpPicFORALL_3 ( RECT, pic_new, beg, end, value ); - beg[0] = box.x0; end[0] = box.x1; + beg[0] = box.x0; end[0] = box.x1; beg[1] = MIN ( box.y0, box.y1 ); end[1] = MAX ( box.y0, box.y1 ); /* printf ( "1.Dreieck: beg %d %d end: %d %d \n", beg[0], beg[1], end[0], end[1] ); */ @@ -176,13 +170,13 @@ mitkIpPicDescriptor *mitkIpFuncFillArea ( mitkIpPicDescriptor *pic_old, mitkIpPicFORALL_3 ( RECT, pic_new, beg, end, value ); beg[0] = ( box.y0 < box.y1 ) ? 0 : box.x1; - end[0] = ( box.y0 < box.y1 ) ? box.x0 : pic_old->n[0]; + end[0] = ( box.y0 < box.y1 ) ? box.x0 : pic_old->n[0]; beg[1] = MIN ( box.y0, box.y1 ); end[1] = MAX ( box.y0, box.y1 ); /* printf ( "2.Rechteck: beg %d %d end: %d %d \n", beg[0], beg[1], end[0], end[1] ); */ mitkIpPicFORALL_3 ( RECT, pic_new, beg, end, value ); - beg[0] = box.x0; end[0] = box.x1; + beg[0] = box.x0; end[0] = box.x1; beg[1] = MIN ( box.y0, box.y1 ); end[1] = MAX ( box.y0, box.y1 ); /* printf ( "1.Dreieck: beg %d %d end: %d %d \n", beg[0], beg[1], end[0], end[1] ); */ @@ -191,14 +185,14 @@ mitkIpPicDescriptor *mitkIpFuncFillArea ( mitkIpPicDescriptor *pic_old, else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); - return ( mitkIpFuncERROR ); + return ( mitkIpFuncERROR ); } /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + diff --git a/Utilities/IpFunc/Frame.c b/Utilities/IpFunc/Frame.c index 32a2f20484e..5d1393039b4 100644 --- a/Utilities/IpFunc/Frame.c +++ b/Utilities/IpFunc/Frame.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function adds a frame around an image @@ -50,10 +44,10 @@ /** @brief adds a frame around an image * - * The thickness of the frame can be chosen separately for each dimension - * (parameter edge). The original image will not be changed, instead a + * The thickness of the frame can be chosen separately for each dimension + * (parameter edge). The original image will not be changed, instead a * new one will be returned. - * + * * @param pic_old image to which the frame will be added * @param edge vector with the thichness' of the frame in each direction * @param value this greyvalue is used for the frame @@ -90,7 +84,7 @@ mitkIpPicDescriptor *mitkIpFuncFrame ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include files */ @@ -111,7 +105,7 @@ mitkIpPicDescriptor *mitkIpFuncFrame ( mitkIpPicDescriptor *pic_old, pic_new = _mitkIpFuncBorderX ( pic_old, edge, value ); if ( mitkIpFuncErrno > mitkIpFuncOK ) return ( mitkIpFuncERROR ); - else + else pic_new = mitkIpFuncWindowR ( pic_new, pic_old, edge, mitkIpFuncNoKeep ); /* Copy Tags */ diff --git a/Utilities/IpFunc/GaussF.c b/Utilities/IpFunc/GaussF.c index 71fca5cf0e2..d45dbbef110 100644 --- a/Utilities/IpFunc/GaussF.c +++ b/Utilities/IpFunc/GaussF.c @@ -1,58 +1,52 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function smoothes an image using a filtering mask which consists + * this function smoothes an image using a filtering mask which consists * of elements calculated from a Gausian distribution */ -/** this function smoothes an image using a filtering mask which consists +/** this function smoothes an image using a filtering mask which consists * of elements calculated from a Gausian distribution * - * @param pic_old pointer to original image + * @param pic_old pointer to original image * @param len_mask number of mask elements for each dimension * @param dim_mask dimension of mask * @param border handling of the edge @@ -69,25 +63,25 @@ #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t len_mask, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncGaussF\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncGaussF\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* --------------------------------------------------------------------- */ -/* -** function mitkIpFuncGausF +/* +** function mitkIpFuncGausF */ /* --------------------------------------------------------------------- */ - + mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t len_mask, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ) { mitkIpPicDescriptor *pic_new; /* pointer to new image structure */ @@ -119,7 +113,7 @@ mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, /* calculate binomial coefficient */ bin = malloc ( len_mask * sizeof ( mitkIpUInt4_t ) ); - if ( bin == NULL ) + if ( bin == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -139,9 +133,9 @@ mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, } /* initialize mask */ - + pic_mask = mitkIpPicNew(); - + if ( pic_mask == NULL ) { free ( bin ); @@ -189,15 +183,15 @@ mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, for ( i = 0; i < pic_mask->dim; i++ ) element = element * bin[ind[i]]; - (( mitkIpFloat8_t * )pic_mask->data)[offset] = + (( mitkIpFloat8_t * )pic_mask->data)[offset] = ( mitkIpFloat8_t ) element; sum = sum + element; offset++; } no_elem = _mitkIpPicElements ( pic_mask ); - for ( i = 0; i < no_elem; i++ ) - (( mitkIpFloat8_t * ) pic_mask->data ) [i] = + for ( i = 0; i < no_elem; i++ ) + (( mitkIpFloat8_t * ) pic_mask->data ) [i] = (( mitkIpFloat8_t * ) pic_mask->data ) [i] / ( mitkIpFloat8_t ) sum; /* convolve image with Gausian mask */ @@ -209,8 +203,8 @@ mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/Grad.c b/Utilities/IpFunc/Grad.c index 73b26625a66..29881ff2f7c 100644 --- a/Utilities/IpFunc/Grad.c +++ b/Utilities/IpFunc/Grad.c @@ -1,64 +1,58 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function performs an absolute gradient to extract + * this function performs an absolute gradient to extract * edges of an image */ -/** @brief performs an absolute gradient to extract +/** @brief performs an absolute gradient to extract * edges of an image * * @param pic_old pointer to original image * @param dim_mask dimension of mask - * @param border tells how the edge is transformed - * mitkIpFuncBorderOld: original greyvalues + * @param border tells how the edge is transformed + * mitkIpFuncBorderOld: original greyvalues * mitkIpFuncBorderZero: edge is set to minimal greyvalue * - * @return pointer to transformed iamge + * @return pointer to transformed iamge * * AUTHOR & DATE */ @@ -73,7 +67,7 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncGrad\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncGrad\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -158,7 +152,7 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t dim_mask, - mitkIpFuncFlagI_t border ) + mitkIpFuncFlagI_t border ) { #include "gradient.h" @@ -168,7 +162,7 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t i, j; /* loopindex */ mitkIpUInt4_t off_mask; /* loopindex */ mitkIpFuncMasc_t *m; /* compressed mask */ - mitkIpInt4_t offset; + mitkIpInt4_t offset; mitkIpInt4_t beg[_mitkIpPicNDIM]; mitkIpInt4_t end[_mitkIpPicNDIM]; mitkIpInt4_t ind[_mitkIpPicNDIM]; @@ -184,7 +178,7 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); } - if ( pic_old->dim < dim_mask ) + if ( pic_old->dim < dim_mask ) { _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); @@ -192,14 +186,14 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, /* create a new picture, copy the header, allocate memory */ - if ( border == mitkIpFuncBorderOld ) + if ( border == mitkIpFuncBorderOld ) pic_new = mitkIpPicClone ( pic_old ); else if ( border == mitkIpFuncBorderZero ) - { + { pic_new = mitkIpPicCopyHeader ( pic_old, 0 ); pic_new->data = calloc ( _mitkIpPicElements ( pic_new ), pic_new->bpe/8 ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); @@ -220,7 +214,7 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, /* initialisation of pic_mask */ pic_mask = mitkIpPicNew (); - if ( pic_mask == NULL ) + if ( pic_mask == NULL ) { mitkIpPicFree ( pic_new ); _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); @@ -234,13 +228,13 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, pic_mask->n[i] = 3; pic_mask->n[dim_mask] = dim_mask; - if ( dim_mask == 4 ) - pic_mask->data = mask4; - else if ( dim_mask == 3 ) - pic_mask->data = mask3; + if ( dim_mask == 4 ) + pic_mask->data = mask4; + else if ( dim_mask == 3 ) + pic_mask->data = mask3; else if ( dim_mask == 2 ) - pic_mask->data = mask2; - else + pic_mask->data = mask2; + else { pic_mask->data = NULL; mitkIpPicFree ( pic_new ); @@ -258,27 +252,27 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, for ( i = 0; i < dim_mask; i++ ) { - end[i] = pic_old->n[i] - pic_mask->n[i] / 2; + end[i] = pic_old->n[i] - pic_mask->n[i] / 2; beg[i] = ( ( pic_mask->n[i] % 2 ) == 1 ) ? - ( pic_mask->n[i] / 2 ) : ( pic_mask->n[i] / 2 - 1 ); + ( pic_mask->n[i] / 2 ) : ( pic_mask->n[i] / 2 - 1 ); } for ( i = dim_mask; i < _mitkIpPicNDIM; i++ ) beg[i] = 0; - for ( i = dim_mask; i < pic_old->dim; i++ ) - end[i] = pic_old->n[i]; - for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) + for ( i = dim_mask; i < pic_old->dim; i++ ) + end[i] = pic_old->n[i]; + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) end[i] = beg[i] + 1; - size [0] = 1; - for ( i = 1; i < pic_old->dim; i++ ) - size[i] = size[i-1] * pic_old->n[i-1]; + size [0] = 1; + for ( i = 1; i < pic_old->dim; i++ ) + size[i] = size[i-1] * pic_old->n[i-1]; /* allocate mask-structure */ m = malloc ( sizeof ( mitkIpFuncMasc_t ) ); - if ( m == NULL ) + if ( m == NULL ) { mitkIpPicFree ( pic_new ); pic_mask->data = NULL; @@ -287,7 +281,7 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } m->off_vekt = malloc ( _mitkIpPicElements( pic_mask ) * sizeof ( mitkIpInt4_t ) ); - if ( m->off_vekt == NULL ) + if ( m->off_vekt == NULL ) { mitkIpPicFree ( pic_new ); pic_mask->data = NULL; @@ -341,7 +335,7 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, sum = sum + fabs ( m->mask_vekt[i] ); pos++; } - + sum = sum / ( 2 * dim_mask ); mitkIpPicFORALL_6 ( GRAD, pic_old, pic_new, pic_mask, m, beg, end, dim_mask ); @@ -355,10 +349,10 @@ mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } -#endif - +#endif + diff --git a/Utilities/IpFunc/Grav.c b/Utilities/IpFunc/Grav.c index b0e3bb8cfa7..623ce9243fa 100644 --- a/Utilities/IpFunc/Grav.c +++ b/Utilities/IpFunc/Grav.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * This Function calculates the center of gravity of an region of @@ -54,7 +48,7 @@ * * @param pic binary image: contains the region of interest * - * @return pointer to the vector which contains the coordinates + * @return pointer to the vector which contains the coordinates * of the center of gravity * * AUTHOR & DATE @@ -68,7 +62,7 @@ mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ); -#ifndef DOXYGEN_IGNORE +#ifndef DOXYGEN_IGNORE /* definition of reflect-macro */ @@ -124,7 +118,7 @@ mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ); */ /* ------------------------------------------------------------------- */ -mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ) +mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ) { mitkIpUInt4_t index_vect[_mitkIpPicNDIM]; /* loopindex-vector */ @@ -136,12 +130,12 @@ mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ) /* check data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - + /* initialisation of vectors */ for ( i = 0; i < pic_old->dim; i++ ) n[i] = pic_old->n[i]; - + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) n[i] = 1; @@ -149,7 +143,7 @@ mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ) index_vect[i] = 0; gravity = ( mitkIpFloat8_t * ) malloc ( 8 * sizeof ( mitkIpFloat8_t ) ); - if ( gravity == NULL ) + if ( gravity == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -157,8 +151,8 @@ mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ) for ( i = 0; i < _mitkIpPicNDIM; i++ ) gravity[i] = 0.; - - mitkIpPicFORALL_1 ( GRAV, pic_old, index_vect ) + + mitkIpPicFORALL_1 ( GRAV, pic_old, index_vect ) return gravity; } diff --git a/Utilities/IpFunc/Hist.c b/Utilities/IpFunc/Hist.c index d57c7502610..c7ce45a968a 100644 --- a/Utilities/IpFunc/Hist.c +++ b/Utilities/IpFunc/Hist.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function calculates the greyvalue histogram of an image @@ -65,9 +59,9 @@ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" -mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, +mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t min_gv, mitkIpFloat8_t max_gv, mitkIpUInt4_t **hist, @@ -77,12 +71,12 @@ mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, #ifndef lint - static char *what = { "@(#)mitkIpFuncHist\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncHist\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif - + /* definition of HIST-macro */ #define HIST( type, pic, help, factor ) \ @@ -100,20 +94,20 @@ mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, ( factor * ( (( type * ) pic->data)[i] + ( type ) help) );\ ( hist_help[index] )++; \ } \ -} - - +} + + /* ------------------------------------------------------------------- */ /* */ /* ------------------------------------------------------------------- */ -mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, +mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t min_gv, mitkIpFloat8_t max_gv, mitkIpUInt4_t **hist, - mitkIpUInt4_t *size_hist ) + mitkIpUInt4_t *size_hist ) { mitkIpUInt4_t *hist_help; mitkIpFloat8_t help; /* absolute of min_gv */ @@ -128,9 +122,9 @@ mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, { if ( mitkIpFuncExtr ( pic_old, &min_gv, &max_gv ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); } - else + else { - if ( min_gv > max_gv ) + if ( min_gv > max_gv ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -152,12 +146,12 @@ mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, factor = 1; else if ( pic_old->type == mitkIpPicFloat ) factor = 1000; - else + else { _mitkIpFuncSetErrno (mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } - + /* allocate memory */ *size_hist = factor * ( ( mitkIpUInt4_t ) max_gv + ( mitkIpUInt4_t ) help ); @@ -165,9 +159,9 @@ mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, /*hist = ( mitkIpUInt4_t ** ) malloc ( sizeof ( mitkIpUInt4_t * ) );*/ *hist = ( mitkIpUInt4_t * ) calloc ( *size_hist+1, sizeof ( mitkIpUInt4_t ) ); hist_help = *hist; - if ( hist_help == NULL ) + if ( hist_help == NULL ) { - _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } diff --git a/Utilities/IpFunc/Histo.c b/Utilities/IpFunc/Histo.c index 242094a79e1..5c3644ec4f4 100644 --- a/Utilities/IpFunc/Histo.c +++ b/Utilities/IpFunc/Histo.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function calculates the greyvalue histogram of an image @@ -66,16 +60,16 @@ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" -mitkIpInt4_t mitkIpFuncHisto( mitkIpPicDescriptor *pic_old, +mitkIpInt4_t mitkIpFuncHisto( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *min_gv, mitkIpFloat8_t *max_gv, mitkIpUInt4_t **hist, mitkIpUInt4_t *size_hist ) ; #ifndef DOXYGEN_IGNORE - + /* definition of HIST-macro */ #define HIST( type, pic, help, factor ) \ @@ -94,20 +88,20 @@ mitkIpInt4_t mitkIpFuncHisto( mitkIpPicDescriptor *pic_old, if ( ( index <= *size_hist ) ) \ ( hist_help[index] )++; \ } \ -} - - +} + + /* ------------------------------------------------------------------- */ /* */ /* ------------------------------------------------------------------- */ -mitkIpInt4_t mitkIpFuncHisto( mitkIpPicDescriptor *pic_old, +mitkIpInt4_t mitkIpFuncHisto( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *min_gv, mitkIpFloat8_t *max_gv, mitkIpUInt4_t **hist, - mitkIpUInt4_t *size_hist ) + mitkIpUInt4_t *size_hist ) { mitkIpUInt4_t *hist_help; mitkIpFloat8_t help; /* absolute of min_gv */ @@ -120,15 +114,15 @@ mitkIpInt4_t mitkIpFuncHisto( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( *min_gv == 0 && *max_gv == 0 ) { - if ( mitkIpFuncExtr ( pic_old, min_gv, max_gv ) != mitkIpFuncOK ) + if ( mitkIpFuncExtr ( pic_old, min_gv, max_gv ) != mitkIpFuncOK ) { printf("ipFunc: Probleme mit dem eingegebenen Intervall\n"); return ( mitkIpFuncERROR ); } } - else + else { - if ( *min_gv > *max_gv ) + if ( *min_gv > *max_gv ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); printf("ipFunc: Probleme mit dem eingegebenen Intervall\n"); @@ -155,13 +149,13 @@ mitkIpInt4_t mitkIpFuncHisto( mitkIpPicDescriptor *pic_old, factor = 1; else if ( pic_old->type == mitkIpPicFloat ) factor = 1000; - else + else { printf("ipFunc: Probleme mit dem von ipFunc Extrema berechnete Intervall\n"); _mitkIpFuncSetErrno (mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } - + /* allocate memory */ *size_hist = 1 + factor * (mitkIpUInt4_t ) ( ( mitkIpInt4_t ) *max_gv - ( mitkIpInt4_t ) *min_gv ); @@ -169,10 +163,10 @@ mitkIpInt4_t mitkIpFuncHisto( mitkIpPicDescriptor *pic_old, /*hist = ( mitkIpUInt4_t ** ) malloc ( sizeof ( mitkIpUInt4_t * ) );*/ *hist = ( mitkIpUInt4_t * ) calloc ( *size_hist+1, sizeof ( mitkIpUInt4_t ) ); hist_help = *hist; - if ( hist_help == NULL ) + if ( hist_help == NULL ) { printf("ipFunc: Probleme mit dem Allokieren von Platz\n"); - _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } diff --git a/Utilities/IpFunc/HitMiss.c b/Utilities/IpFunc/HitMiss.c index a817b519225..1c358fe2c10 100644 --- a/Utilities/IpFunc/HitMiss.c +++ b/Utilities/IpFunc/HitMiss.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs the morphological hit and miss operation @@ -54,10 +48,10 @@ * @param pic_masks pointer to a set of hit and miss masks * ( if pic_masks = NULL -> default masks are used ) * @param border tells how the edge is transformed - * @arg @c mitkIpFuncBorderOld original greyvalues + * @arg @c mitkIpFuncBorderOld original greyvalues * @arg @c mitkIpFuncBorderZero : edge is set to minimal greyvalue * - * @return pointer to image after hit and miss operation + * @return pointer to image after hit and miss operation * * AUTHOR & DATE */ @@ -66,32 +60,32 @@ #include "mitkIpFuncP.h" -mitkIpPicDescriptor *mitkIpFuncHitMiss ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncHitMiss ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_masks, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncHitMiss\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncHitMiss\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* ------------------------------------------------------------------ */ /* -** mitkIpFuncHitMiss +** mitkIpFuncHitMiss */ /* ------------------------------------------------------------------ */ -mitkIpPicDescriptor *mitkIpFuncHitMiss ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncHitMiss ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_masks, mitkIpFuncFlagI_t border ) { mitkIpBool_t allocated=mitkIpFalse; mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpUInt1_t mask[] = /* hit and miss mask (edge detection) */ - { 0, 0, 0, 0, 1, 0, 0, 0, 0, + { 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, @@ -105,7 +99,7 @@ mitkIpPicDescriptor *mitkIpFuncHitMiss ( mitkIpPicDescriptor *pic_old, { allocated = mitkIpTrue; pic_masks = mitkIpPicNew (); - if ( pic_masks == NULL ) + if ( pic_masks == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); @@ -117,9 +111,9 @@ mitkIpPicDescriptor *mitkIpFuncHitMiss ( mitkIpPicDescriptor *pic_old, pic_masks->n[1] = 3; pic_masks->n[2] = 8; pic_masks->data = mask; - } + } pic_new = _mitkIpFuncHitMissI ( pic_old, pic_masks, border ); - + if ( allocated ) { pic_masks->data = NULL; @@ -129,10 +123,10 @@ mitkIpPicDescriptor *mitkIpFuncHitMiss ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); -} +} #endif diff --git a/Utilities/IpFunc/HitMissI.c b/Utilities/IpFunc/HitMissI.c index ede6686a76c..834a412fe8e 100644 --- a/Utilities/IpFunc/HitMissI.c +++ b/Utilities/IpFunc/HitMissI.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. -*****************************************************************************/ +============================================================================*/ /* performs the morphological hit and miss operator * @@ -62,10 +56,9 @@ * a short history of the file * *--------------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ #ifndef lint - static char *what = { "@(#)mitkIpFuncHitMissI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncHitMissI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include files */ @@ -106,7 +99,7 @@ m1 = _mitkIpFuncCompressM ( mask_1, pic_old, mitkIpFuncNoReflect, beg, end ); \ m2 = _mitkIpFuncCompressM ( mask_2, pic_old, mitkIpFuncNoReflect, beg, end ); \ \ -} +} #define HITMISS( type_i, pic_old, pic_new, pic_inv ) \ { \ @@ -215,13 +208,13 @@ /* ------------------------------------------------------------------------- */ mitkIpPicDescriptor *_mitkIpFuncHitMissI ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_masks, + mitkIpPicDescriptor *pic_masks, mitkIpFuncFlagI_t border ) { - mitkIpPicDescriptor *pic_inv; /* pointer to the inverted image */ - mitkIpPicDescriptor *pic_1; /* image after hit and miss */ - mitkIpPicDescriptor *mask_1; /* hit mask */ - mitkIpPicDescriptor *mask_2; /* miss mask */ + mitkIpPicDescriptor *pic_inv; /* pointer to the inverted image */ + mitkIpPicDescriptor *pic_1; /* image after hit and miss */ + mitkIpPicDescriptor *mask_1; /* hit mask */ + mitkIpPicDescriptor *mask_2; /* miss mask */ mitkIpInt4_t beg[_mitkIpPicNDIM]; /* */ mitkIpInt4_t end[_mitkIpPicNDIM]; /* */ mitkIpFuncMasc_t *m1, *m2; /* compressed masks */ @@ -235,10 +228,10 @@ /* allocate memory for masks */ - dim = pic_masks->dim - 1; + dim = pic_masks->dim - 1; mask_1 = mitkIpPicCopyHeader ( pic_masks, NULL ); - mask_1->dim = dim; - if ( mask_1 == NULL ) + mask_1->dim = dim; + if ( mask_1 == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -258,7 +251,7 @@ return ( mitkIpFuncERROR ); } mask_2->data = malloc ( _mitkIpPicSize ( mask_2 ) ); - if ( mask_2->data == NULL ) + if ( mask_2->data == NULL ) { mitkIpPicFree ( mask_1 ); mitkIpPicFree ( mask_2 ); @@ -285,12 +278,12 @@ _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); } - + if ( pic_1 == NULL ) { mitkIpPicFree ( mask_1 ); mitkIpPicFree ( mask_2 ); - _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } @@ -299,7 +292,7 @@ mitkIpPicFree ( mask_1 ); mitkIpPicFree ( mask_2 ); mitkIpPicFree ( pic_1 ); - _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } diff --git a/Utilities/IpFunc/Inertia.c b/Utilities/IpFunc/Inertia.c index 9f9105231fd..86a0afc0fe9 100644 --- a/Utilities/IpFunc/Inertia.c +++ b/Utilities/IpFunc/Inertia.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * mitkIpFuncInertia @@ -54,7 +48,7 @@ * FUNCTION DECLARATION * mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, * mitkIpFloat8_t **eigen_vekt, - * mitkIpFloat8_t **eigen_val ) + * mitkIpFloat8_t **eigen_val ) * * PARAMETERS * pic_old - pointer to an image structure which contains the ROI @@ -63,7 +57,7 @@ * * RETURN VALUES * mitkIpFuncOK - no error occured - * mitkIpFuncERROR - an error occured + * mitkIpFuncERROR - an error occured * * UPDATES * update of Manu's program to calculate axis of inertia. It's a @@ -74,7 +68,6 @@ * Antje Schroeder 08.06.95 * *--------------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ /* include Files */ @@ -141,7 +134,7 @@ mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t **eigen_vekt, - mitkIpFloat8_t **eigen_val ) + mitkIpFloat8_t **eigen_val ) { mitkIpUInt4_t index_vect[_mitkIpPicNDIM]; /* loopindex-vector */ @@ -159,12 +152,12 @@ mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, /* check data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - + /* initialisation of vectors */ for ( i = 0; i < pic_old->dim; i++ ) n[i] = pic_old->n[i]; - + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) n[i] = 1; @@ -174,56 +167,56 @@ mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, /* memory allocation */ gravity = ( mitkIpFloat8_t * ) malloc ( pic_old->dim * sizeof ( mitkIpFloat8_t ) ); - if ( gravity == NULL ) + if ( gravity == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - + dist = ( mitkIpFloat8_t * ) malloc ( pic_old->dim * sizeof ( mitkIpFloat8_t ) ); - if ( dist == NULL ) + if ( dist == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); free ( gravity ); return ( mitkIpFuncERROR ); } - + s_diag = ( mitkIpFloat8_t * ) malloc ( pic_old->dim * sizeof ( mitkIpFloat8_t ) ); - if ( s_diag == NULL ) + if ( s_diag == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); free ( gravity ); - free ( dist ); + free ( dist ); return ( mitkIpFuncERROR ); } - + s = ( mitkIpFloat8_t * ) malloc ( pic_old->dim * pic_old->dim * sizeof ( mitkIpFloat8_t ) ); - if ( s == NULL ) + if ( s == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); free ( gravity ); - free ( dist ); + free ( dist ); free ( s_diag ); return ( mitkIpFuncERROR ); } - + tt = m_get ( pic_old->dim, pic_old->dim ); - if ( tt == NULL ) + if ( tt == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); free ( gravity ); - free ( dist ); + free ( dist ); free ( s_diag ); free ( s ); return ( mitkIpFuncERROR ); } ev = m_get ( pic_old->dim, pic_old->dim ); - if ( ev == NULL ) + if ( ev == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); free ( gravity ); - free ( dist ); + free ( dist ); free ( s_diag ); free ( s ); M_FREE ( tt ); @@ -231,11 +224,11 @@ mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, } ew = v_get ( pic_old->dim-1 ); - if ( ew == NULL ) + if ( ew == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); free ( gravity ); - free ( dist ); + free ( dist ); free ( s_diag ); free ( s ); M_FREE ( tt ); @@ -259,7 +252,7 @@ mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, /* preparation for calculating the tensor of inertia */ - mitkIpPicFORALL_4 ( GRAV, pic_old, index_vect, s, s_diag, dist ) + mitkIpPicFORALL_4 ( GRAV, pic_old, index_vect, s, s_diag, dist ) /* calculate tensor of inertia */ @@ -272,7 +265,7 @@ mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, tt->me[i][j] = s[i*pic_old->dim+j]; else if ( j < i ) tt->me[i][j] = s[j*pic_old->dim+i]; - if ( i != j ) + if ( i != j ) tt->me[i][i] = tt->me[i][i] + s_diag[j]; } } @@ -301,6 +294,6 @@ mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, free ( s_diag ); free ( gravity ); - return mitkIpFuncOK; + return mitkIpFuncOK; } #endif diff --git a/Utilities/IpFunc/Inv.c b/Utilities/IpFunc/Inv.c index 7f8d2f5ebf5..f498a9514c8 100644 --- a/Utilities/IpFunc/Inv.c +++ b/Utilities/IpFunc/Inv.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function inverts the greyvalues of an image @@ -51,7 +45,7 @@ /** @brief inverts the greyvalues of an image * * @param pic_old pointer to the image that should be inverted - * @param pic_return memory which could be used for pic_new. If + * @param pic_return memory which could be used for pic_new. If * pic_retrun == NULL new memory is allocated * * @return pointer to the inverted image @@ -61,7 +55,7 @@ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncInv ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); @@ -69,11 +63,11 @@ mitkIpPicDescriptor *mitkIpFuncInv ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncInv\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncInv\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif - + /* definition of invert-macro */ #define INV( type, pic ) \ @@ -101,9 +95,9 @@ mitkIpPicDescriptor *mitkIpFuncInv ( mitkIpPicDescriptor *pic_old, (( type * ) pic_new->data ) [i] = \ max + min - (( type * ) pic->data ) [i]; \ } \ -} - - +} + + /* ------------------------------------------------------------------- */ /* @@ -122,7 +116,7 @@ mitkIpPicDescriptor *mitkIpFuncInv ( mitkIpPicDescriptor *pic_old, /* create a new picture, copy the header, allocate memory */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* macro to invert the picture (for all data types) */ @@ -130,8 +124,8 @@ mitkIpPicDescriptor *mitkIpFuncInv ( mitkIpPicDescriptor *pic_old, mitkIpPicFORALL ( INV, pic_old ); mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; } diff --git a/Utilities/IpFunc/LN.c b/Utilities/IpFunc/LN.c index ecc55ccc31f..a5c73ce5efb 100644 --- a/Utilities/IpFunc/LN.c +++ b/Utilities/IpFunc/LN.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function transforms the greyvalues by a ln-function + * this function transforms the greyvalues by a ln-function * (y = a ln (x+1)) */ -/** @brief transforms the greyvalues by a ln-function +/** @brief transforms the greyvalues by a ln-function * (y = a ln (x+1)) * * @param pic_old pointer to the original image @@ -68,7 +62,7 @@ mitkIpPicDescriptor *mitkIpFuncLN ( mitkIpPicDescriptor *pic_old ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncLN\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncLN\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -86,7 +80,7 @@ mitkIpPicDescriptor *mitkIpFuncLN ( mitkIpPicDescriptor *pic_old ); for ( i = 0; i < no_elem; i++ ) \ (( type * )pic_new->data )[i] = \ ( type ) ( a * log ( 1. + (( type * )pic->data )[i] ) ); \ -} +} /* ------------------------------------------------------------------------ */ /* @@ -117,12 +111,12 @@ mitkIpPicDescriptor *mitkIpFuncLN ( mitkIpPicDescriptor *pic_old ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); pic_new->data = malloc ( _mitkIpPicSize ( pic_old ) ); - + if ( ( pic_new != NULL ) && ( pic_new->data != NULL ) ) { mitkIpPicFORALL_1 ( LN, pic_old, max_gv ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -145,37 +139,37 @@ mitkIpPicDescriptor *mitkIpFuncLN ( mitkIpPicDescriptor *pic_old ) if ( pic_new->data == NULL ) { mitkIpPicFree ( pic_new ); - _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } /* transform integer image to unsigned integer image */ if ( pic_new->bpe == 8 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpUInt1_t * )pic_new->data )[i] = (( mitkIpInt1_t * )pic_old->data )[i] - min_gv; - } + } else if ( pic_new->bpe == 16 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpUInt2_t * )pic_new->data )[i] = (( mitkIpInt2_t * )pic_old->data )[i] - min_gv; - } + } else if ( pic_new->bpe == 32 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpUInt4_t * )pic_new->data )[i] = (( mitkIpInt4_t * )pic_old->data )[i] - min_gv; - } + } - else + else { mitkIpPicFree ( pic_new ); - _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } @@ -188,25 +182,25 @@ mitkIpPicDescriptor *mitkIpFuncLN ( mitkIpPicDescriptor *pic_old ) pic_new->type = mitkIpPicInt; if ( pic_new->bpe == 8 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpInt1_t * )pic_new->data )[i] = (( mitkIpUInt1_t * )pic_new->data )[i] + min_gv; - } + } else if ( pic_new->bpe == 16 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpInt2_t * )pic_new->data )[i] = (( mitkIpUInt2_t * )pic_new->data )[i] + min_gv; - } + } else if ( pic_new->bpe == 32 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpInt4_t * )pic_new->data )[i] = (( mitkIpUInt4_t * )pic_new->data )[i] + min_gv; - } + } } @@ -220,8 +214,8 @@ mitkIpPicDescriptor *mitkIpFuncLN ( mitkIpPicDescriptor *pic_old ) /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/Label.c b/Utilities/IpFunc/Label.c index 16073306cd2..27e163fd5e6 100644 --- a/Utilities/IpFunc/Label.c +++ b/Utilities/IpFunc/Label.c @@ -1,59 +1,53 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * This functions looks for areas in an image with the same greyvalue. - * Each of these areas gets it's own greyvalue. + * Each of these areas gets it's own greyvalue. */ /** This functions looks for areas in an image with the same greyvalue. - * Each of these areas gets it's own greyvalue. + * Each of these areas gets it's own greyvalue. * - * CAUTION! In case of many small regions to label, the routine may - * break down without exception handling, if the number of labels is + * CAUTION! In case of many small regions to label, the routine may + * break down without exception handling, if the number of labels is * running out. * * @param pic_old pointer to original image structure @@ -66,7 +60,7 @@ * function _mitkIpFuncExtr - calculates extreme greyvalues * function _mitkIpFuncHist - calculates greyvalue histogram * - * AUTHOR & DATE + * AUTHOR & DATE */ /* include files */ @@ -79,7 +73,7 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncLabel\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncLabel\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -179,8 +173,8 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, /* ------------------------------------------------------------------- */ -/* -** mitkIpFuncLabel +/* +** mitkIpFuncLabel */ /* ------------------------------------------------------------------- */ @@ -196,7 +190,7 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t new_label; /* */ mitkIpUInt4_t size[_mitkIpPicNDIM]; mitkIpFloat8_t min, max; /* extreme greyvalues in image */ - + /* check image data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); @@ -207,7 +201,7 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, /* check whether image is binary */ /* mitkIpFuncHist ( pic_old, min, max, &hist, &size_hist ); - if ( hist == NULL ) + if ( hist == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -220,8 +214,8 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, if ( hist [i] != 0 ) no_gv++; i++; } - - if ( no_gv != 2 ) + + if ( no_gv != 2 ) { free ( hist ); _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); @@ -261,9 +255,9 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, } /* allocation and initialisation of vectors */ - + a = malloc ( ( no_label + 1 ) * sizeof ( mitkIpUInt4_t ) ); - if ( a == NULL ) + if ( a == NULL ) { mitkIpPicFree ( pic_new ); _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); @@ -287,9 +281,9 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } - for ( i = 0; i <= no_label; i++ ) + for ( i = 0; i <= no_label; i++ ) { - a[i] = i; + a[i] = i; a_new[i] = i; a_sort[i] = 0; } @@ -316,7 +310,7 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, } /* - ** replace image with new labels + ** replace image with new labels */ /* hit used labels with 1 */ @@ -331,7 +325,7 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, { new_label++; a_sort[i] = new_label; - } + } } /* renumber pixels with new labels */ @@ -356,10 +350,10 @@ mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - - free ( a ); + + + + free ( a ); free ( a_new ); free ( a_sort ); return ( pic_new ); diff --git a/Utilities/IpFunc/Laplace.c b/Utilities/IpFunc/Laplace.c index 533302a5ce3..c1c0ff67a9c 100644 --- a/Utilities/IpFunc/Laplace.c +++ b/Utilities/IpFunc/Laplace.c @@ -1,64 +1,58 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * This function performs a filtering with a 2D or 3D Laplace filtering + * This function performs a filtering with a 2D or 3D Laplace filtering * mask */ -/** This function performs a filtering with a 2D or 3D Laplace filtering +/** This function performs a filtering with a 2D or 3D Laplace filtering * mask * - * @param pic_old pointer to the image that should be convolved - * @param dim_mask dimension of filtering mask - * @param border tells how the edge is transformed - * @arg @c mitkIpFuncBorderOld : original greyvalues + * @param pic_old pointer to the image that should be convolved + * @param dim_mask dimension of filtering mask + * @param border tells how the edge is transformed + * @arg @c mitkIpFuncBorderOld : original greyvalues * @arg @c mitkIpFuncBorderZero : edge is set to minimal greyvalue * - * @return pointer to the transformed image + * @return pointer to the transformed image * * USES * function mitkIpFuncConv: convolves image with mask @@ -68,22 +62,22 @@ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" -mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncLaplace\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncLaplace\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif - -mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, + +mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ) { @@ -94,13 +88,13 @@ mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, { 0, -1, 0, -1, 4, -1, 0, -1, 0 }; mitkIpInt2_t laplace3[] = /* 3D laplace-mask */ { 0, 0, 0, 0, -1, 0, 0, 0, 0, - 0, -1, 0, -1, 6, -1, 0, -1, 0, + 0, -1, 0, -1, 6, -1, 0, -1, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0 }; /* check whether data are correct */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( pic_old->dim < dim_mask || dim_mask < 2 || dim_mask > 3 ) + if ( pic_old->dim < dim_mask || dim_mask < 2 || dim_mask > 3 ) { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); @@ -109,7 +103,7 @@ mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, /* initialisation of pic_mask */ pic_mask = mitkIpPicNew (); - if ( pic_mask == NULL ) + if ( pic_mask == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); @@ -117,19 +111,19 @@ mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, pic_mask->type = mitkIpPicInt; pic_mask->bpe = 16; - pic_mask->dim = dim_mask; + pic_mask->dim = dim_mask; for ( i = 0; i < dim_mask; i++ ) pic_mask->n[i] = 3; - if ( dim_mask == 3 ) - { - pic_mask->data = laplace3; + if ( dim_mask == 3 ) + { + pic_mask->data = laplace3; } else if ( dim_mask == 2 ) { pic_mask->data = laplace2; } - else + else { pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); @@ -147,8 +141,8 @@ mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; } diff --git a/Utilities/IpFunc/LevWind.c b/Utilities/IpFunc/LevWind.c index 6773762ae66..07174c85345 100644 --- a/Utilities/IpFunc/LevWind.c +++ b/Utilities/IpFunc/LevWind.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs a level-window operation @@ -50,9 +44,9 @@ /** @brief this function performs a level-window operation * - * All greyvalues which are not included in the - * intervall [level-0.5*window, level+0.5*window] are set to - * the minimal (if greyvaluelevel-0.5*window), respectively. * * @param pic_old pointer to original image @@ -74,14 +68,14 @@ #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t level, + mitkIpFloat8_t level, mitkIpFloat8_t window, mitkIpPicDescriptor *pic_return ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncLevWin\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncLevWin\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -93,11 +87,11 @@ mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, /* ------------------------------------------------------------------------- */ mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t level, + mitkIpFloat8_t level, mitkIpFloat8_t window, mitkIpPicDescriptor *pic_return ) { - mitkIpPicDescriptor *pic_new; /* pointer to new image */ + mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpFloat8_t gv_low; /* lower greyvalue of range */ mitkIpFloat8_t gv_up; /* upper greyvalue of range */ mitkIpFloat8_t max_gv, min_gv; /* max and min possible greyvalues */ @@ -119,7 +113,7 @@ mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, else if ( gv_low > max_gv ) gv_low = max_gv; - gv_up = level + 0.5 * window; + gv_up = level + 0.5 * window; if ( gv_up < min_gv ) gv_up = min_gv; @@ -131,11 +125,11 @@ mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, pic_new = mitkIpFuncSelMM ( pic_old, gv_low, gv_up, pic_return ); /* Copy Tags */ - + mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return ( pic_new ); } diff --git a/Utilities/IpFunc/Log.c b/Utilities/IpFunc/Log.c index e39e7cae05c..79429e9119f 100644 --- a/Utilities/IpFunc/Log.c +++ b/Utilities/IpFunc/Log.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this functions transforms the greyvalues of an image with a lg-function @@ -51,7 +45,7 @@ /** this functions transforms the greyvalues of an image with a lg-function * (y = a lg (x+1)) - * @param pic_old pointer to original image + * @param pic_old pointer to original image * * @return pointer to transformed image * @@ -67,7 +61,7 @@ mitkIpPicDescriptor *mitkIpFuncLog ( mitkIpPicDescriptor *pic_old ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncLog\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncLog\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -85,7 +79,7 @@ mitkIpPicDescriptor *mitkIpFuncLog ( mitkIpPicDescriptor *pic_old ); for ( i = 0; i < no_elem; i++ ) \ (( type * )pic_new->data )[i] = \ ( type ) ( a * log10 ( 1. + (( type * )pic->data )[i] ) ); \ -} +} /* ------------------------------------------------------------------------ */ /* @@ -115,12 +109,12 @@ mitkIpPicDescriptor *mitkIpFuncLog ( mitkIpPicDescriptor *pic_old ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); pic_new->data = malloc ( _mitkIpPicSize ( pic_old ) ); - + if ( ( pic_new != NULL ) && ( pic_new->data != NULL ) ) { mitkIpPicFORALL_1 ( LOG, pic_old, max_gv ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -149,25 +143,25 @@ mitkIpPicDescriptor *mitkIpFuncLog ( mitkIpPicDescriptor *pic_old ) /* transform integer image to unsigned integer image */ if ( pic_new->bpe == 8 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpUInt1_t * )pic_new->data )[i] = (( mitkIpInt1_t * )pic_old->data )[i] - min_gv; - } + } else if ( pic_new->bpe == 16 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpUInt2_t * )pic_new->data )[i] = (( mitkIpInt2_t * )pic_old->data )[i] - min_gv; - } + } else if ( pic_new->bpe == 32 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpUInt4_t * )pic_new->data )[i] = (( mitkIpInt4_t * )pic_old->data )[i] - min_gv; - } + } else { @@ -184,30 +178,30 @@ mitkIpPicDescriptor *mitkIpFuncLog ( mitkIpPicDescriptor *pic_old ) pic_new->type = mitkIpPicInt; if ( pic_new->bpe == 8 ) - { - for ( i = 0; i < no_elem; i++ ); + { + for ( i = 0; i < no_elem; i++ ); (( mitkIpInt1_t * )pic_new->data )[i] = (( mitkIpUInt1_t * )pic_new->data )[i] + min_gv; - } + } else if ( pic_new->bpe == 16 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpInt2_t * )pic_new->data )[i] = (( mitkIpUInt2_t * )pic_new->data )[i] + min_gv; - } + } else if ( pic_new->bpe == 32 ) - { - for ( i = 0; i < no_elem; i++ ) + { + for ( i = 0; i < no_elem; i++ ) (( mitkIpInt4_t * )pic_new->data )[i] = (( mitkIpUInt4_t * )pic_new->data )[i] + min_gv; - } + } } } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); diff --git a/Utilities/IpFunc/MakePicName.c b/Utilities/IpFunc/MakePicName.c index 9f4ec76ccd9..ef91a62910b 100644 --- a/Utilities/IpFunc/MakePicName.c +++ b/Utilities/IpFunc/MakePicName.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function inserts an extension into a filename @@ -53,8 +47,8 @@ * @warning not tested * * @param pic_name file name of input image - * @param extension extension which shoulb be inserted into the filename - + * @param extension extension which shoulb be inserted into the filename + * @return name for the file for the output image * * AUTHOR & DATE @@ -62,14 +56,14 @@ char *mitkIpFuncMakePicName ( char *pic_name, char *extension ); #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif #include #include #include -#define NAME_MAX 40 +#define NAME_MAX 40 /* ===================================================================*/ @@ -85,7 +79,7 @@ char *mitkIpFuncMakePicName ( char *pic_name, char *extension ) char *result_name; int length, pos; - if ( pic_name == NULL || extension == NULL ) + if ( pic_name == NULL || extension == NULL ) return NULL; length = strlen ( pic_name ) + strlen ( extension ) + 5; @@ -96,7 +90,7 @@ char *mitkIpFuncMakePicName ( char *pic_name, char *extension ) pos = strstr ( pic_name, ".pic" ) - pic_name; if ( pos >= 0 ) strncpy ( result_name, pic_name, pos ); - else + else strcpy ( result_name, pic_name ); strcat ( result_name, extension ); diff --git a/Utilities/IpFunc/Malloc.c b/Utilities/IpFunc/Malloc.c index 8ea6cf953f3..fab1b3a4f8a 100644 --- a/Utilities/IpFunc/Malloc.c +++ b/Utilities/IpFunc/Malloc.c @@ -1,57 +1,51 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function allocates the memory for a new image depending on the - * parameter pic_return. If pic_return is equal NULL, new memory is + * parameter pic_return. If pic_return is equal NULL, new memory is * allocated otherwise it is reused. */ /** this function allocates the memory for a new image depending on the - * parameter pic_return. If pic_return is equal NULL, new memory is + * parameter pic_return. If pic_return is equal NULL, new memory is * allocated otherwise it is reused. * * @param pic_old pointer to original image @@ -59,7 +53,7 @@ * @param over_write tells whether the memory could be reused * @arg @c mitkIpTrue => memory could be reused * @arg @c mitkIpFalse => new memory must be allocated - * + * * @return pointer to the memory for transformed image * * AUTHOR & DATE @@ -77,14 +71,14 @@ mitkIpPicDescriptor *_mitkIpFuncMalloc ( mitkIpPicDescriptor *pic_old, #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* ** mitkIpFuncMalloc -*/ +*/ mitkIpPicDescriptor *_mitkIpFuncMalloc ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return, @@ -108,8 +102,8 @@ mitkIpPicDescriptor *_mitkIpFuncMalloc ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - } - else + } + else { if ( pic_old->type != pic_return->type ) okay = mitkIpFalse; if ( pic_old->bpe != pic_return->bpe ) okay = mitkIpFalse; @@ -133,8 +127,8 @@ mitkIpPicDescriptor *_mitkIpFuncMalloc ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - } - + } + return ( pic_return ); } #endif diff --git a/Utilities/IpFunc/Mean.c b/Utilities/IpFunc/Mean.c index b28b4aac3c1..9c17e356379 100644 --- a/Utilities/IpFunc/Mean.c +++ b/Utilities/IpFunc/Mean.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the mean greyvalue of all greyvalues @@ -52,9 +46,9 @@ /** this function calculates the mean greyvalue of all greyvalues * in an image * - * - * @param pic pointer to the image - * + * + * @param pic pointer to the image + * * @return mean greyvalue * * AUTHOR & DATE @@ -67,13 +61,13 @@ mitkIpFloat8_t mitkIpFuncMean ( mitkIpPicDescriptor *pic ); #ifndef DOXYGEN_IGNORE - + #ifndef lint - static char *what = { "@(#)mitkIpFuncMean\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncMean\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif - + /* definition of extreme value macro */ #define MEAN( type, pic, mean ) \ @@ -89,7 +83,7 @@ mitkIpFloat8_t mitkIpFuncMean ( mitkIpPicDescriptor *pic ); } \ mean = mean / _mitkIpPicElements ( pic ); \ } - + /* ========================================================== */ /* */ @@ -98,9 +92,9 @@ mitkIpFloat8_t mitkIpFuncMean ( mitkIpPicDescriptor *pic ); mitkIpFloat8_t mitkIpFuncMean ( mitkIpPicDescriptor *pic ) { - mitkIpFloat8_t mean = 0.0; + mitkIpFloat8_t mean = 0.0; - /* check data */ + /* check data */ if ( _mitkIpFuncError ( pic ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); diff --git a/Utilities/IpFunc/MeanC.c b/Utilities/IpFunc/MeanC.c index 8735776ee54..5c4928ca00d 100644 --- a/Utilities/IpFunc/MeanC.c +++ b/Utilities/IpFunc/MeanC.c @@ -1,52 +1,46 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the mean of all greyvalues which are included - * by a circle + * by a circle * * @param pic_old pointer to riginal image * @param center coordiantest of the center of the circle @@ -68,7 +62,7 @@ mitkIpFloat8_t mitkIpFuncMeanC ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncMeanC\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncMeanC\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -153,7 +147,7 @@ mitkIpFloat8_t mitkIpFuncMeanC ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( radius <= 0 ) + if ( radius <= 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -199,10 +193,10 @@ mitkIpFloat8_t mitkIpFuncMeanC ( mitkIpPicDescriptor *pic_old, count = 0; mitkIpPicFORALL_5 ( MEAN, pic_old, begin, end, size, centr, radius ); - + mean = mean / count; - return ( mean ); + return ( mean ); } #endif diff --git a/Utilities/IpFunc/MeanF.c b/Utilities/IpFunc/MeanF.c index 4d90485c864..cfd8e0497e1 100644 --- a/Utilities/IpFunc/MeanF.c +++ b/Utilities/IpFunc/MeanF.c @@ -1,54 +1,48 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs a smoothing by a mean-value filter */ -/** @brief performs a smoothing by a mean-value filter +/** @brief performs a smoothing by a mean-value filter * * @param pic_old pointer to original image * @param len_mask number of pixels for each dimension @@ -70,26 +64,26 @@ mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t len_mask, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* --------------------------------------------------------------------- */ -/* +/* */ /* --------------------------------------------------------------------- */ - + mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t len_mask, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ) { mitkIpPicDescriptor *pic_new; /* pointer to new image structure */ @@ -106,17 +100,17 @@ mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); } - if ( len_mask % 2 != 1 ) + if ( len_mask % 2 != 1 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); - return ( mitkIpFuncERROR ); + return ( mitkIpFuncERROR ); } /* initialize mask */ - + pic_mask = mitkIpPicNew(); - - if ( pic_mask == NULL ) + + if ( pic_mask == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); @@ -137,8 +131,8 @@ mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, } no_elem = _mitkIpPicElements ( pic_mask ); - help = 1. / ( mitkIpFloat8_t ) no_elem; - for ( i = 0; i < no_elem; i++ ) + help = 1. / ( mitkIpFloat8_t ) no_elem; + for ( i = 0; i < no_elem; i++ ) (( mitkIpFloat8_t * ) pic_mask->data ) [i] = help; /* convolve image with filtering mask */ @@ -150,8 +144,8 @@ mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/MeanR.c b/Utilities/IpFunc/MeanR.c index 66181064790..ef8710927fd 100644 --- a/Utilities/IpFunc/MeanR.c +++ b/Utilities/IpFunc/MeanR.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * calculates the mean value of all greyvalues included by a rectangle @@ -50,7 +44,7 @@ /** @brief calculates the mean value of all greyvalues included by a rectangle * - * The rectangle is described by a vector with the coordinates of the + * The rectangle is described by a vector with the coordinates of the * upper left corner and a vector of its length in each direction * * @param pic_old pointer to original image @@ -65,17 +59,17 @@ #include "mitkIpFuncP.h" mitkIpFloat8_t mitkIpFuncMeanR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)ipFUncMeanR\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)ipFUncMeanR\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif mitkIpFloat8_t mitkIpFuncMeanR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ) { mitkIpFloat8_t mean; /* mean value */ diff --git a/Utilities/IpFunc/MeanROI.c b/Utilities/IpFunc/MeanROI.c index c3ecfdb41f4..0c99645e953 100644 --- a/Utilities/IpFunc/MeanROI.c +++ b/Utilities/IpFunc/MeanROI.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the mean of all pixels inside of a polygon @@ -79,15 +73,15 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, #ifndef lint - static char *what = { "@(#)mitkIpFuncMeanROI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncMeanROI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /*definition of macros */ -#define MAX( x, y ) ( x > y ) ? x : y -#define MIN( x, y ) ( x < y ) ? x : y +#define MAX( x, y ) ( x > y ) ? x : y +#define MIN( x, y ) ( x < y ) ? x : y #define ROI( type, pic, pic_help, sum, count ) \ { \ mitkIpBool_t in; \ @@ -127,7 +121,7 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *pol_x, mitkIpUInt4_t *pol_y, - mitkIpUInt4_t no_pts ) + mitkIpUInt4_t no_pts ) { mitkIpFloat8_t mean; /* mean of greyvalues in ROI */ mitkIpFloat8_t sum=0; /* sum of greyvalues in ROI */ @@ -142,7 +136,7 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, /* check image data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( pic_old->dim > 2 ) + if ( pic_old->dim > 2 ) { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); @@ -161,12 +155,12 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, max_x = MAX ( max_x, pol_x[i] ); max_y = MAX ( max_y, pol_y[i] ); } - + /* check whether ROI is in image */ /* Expression is always false. - if ( min_x < 0 ) + if ( min_x < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -180,14 +174,14 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, } /* Expression is always false. - if ( min_y < 0 ) + if ( min_y < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } */ - if ( max_y > pic_old->n[1] ) + if ( max_y > pic_old->n[1] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -197,9 +191,9 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, a = ( mitkIpFloat8_t * ) malloc ( no_pts * sizeof ( mitkIpFloat8_t ) ); b = ( mitkIpFloat8_t * ) malloc ( no_pts * sizeof ( mitkIpFloat8_t ) ); - + /* Geraden zwischen zwei benachbarten Punkten berechnen */ - + for ( i = 0; i < no_pts-1; i++ ) { diff = ( mitkIpFloat8_t ) pol_x[i+1] - ( mitkIpFloat8_t ) pol_x[i]; @@ -214,7 +208,7 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, a[i] = 0.; } } - diff = ( mitkIpFloat8_t ) pol_x[no_pts-1] - ( mitkIpFloat8_t ) pol_x[0]; + diff = ( mitkIpFloat8_t ) pol_x[no_pts-1] - ( mitkIpFloat8_t ) pol_x[0]; if ( diff ) { a[no_pts-1] = ( ( mitkIpFloat8_t ) pol_y[no_pts-1] - ( mitkIpFloat8_t ) pol_y[0] ) / diff; @@ -225,9 +219,9 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, b[no_pts-1] = 0.; a[no_pts-1] = 0.; } - + /* draw polygon to image */ - + pic_help = _mitkIpFuncDrawPoly ( pic_old, pol_x, pol_y, no_pts, a, b ); if ( ! pic_help ) { @@ -248,5 +242,5 @@ mitkIpFloat8_t mitkIpFuncMeanROI ( mitkIpPicDescriptor *pic_old, return ( mean ); -} +} #endif diff --git a/Utilities/IpFunc/Median.c b/Utilities/IpFunc/Median.c index ae6eeb5cd1c..58cc6f49e7e 100644 --- a/Utilities/IpFunc/Median.c +++ b/Utilities/IpFunc/Median.c @@ -1,79 +1,73 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function calculates the median of the image data + * this function calculates the median of the image data */ -/** @brief calculates the median of the image data +/** @brief calculates the median of the image data * - * @param pic_old pointer to the image + * @param pic_old pointer to the image * - * @return median of the image data + * @return median of the image data * * AUTHOR & DATE */ /* include files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" mitkIpFloat8_t mitkIpFuncMedI ( mitkIpPicDescriptor *pic_old ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncMedI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncMedI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* ------------------------------------------------------------------- */ /* -** function mitkIpFuncMedI: +** function mitkIpFuncMedI: */ /* ------------------------------------------------------------------- */ @@ -87,7 +81,7 @@ mitkIpFloat8_t mitkIpFuncMedI ( mitkIpPicDescriptor *pic_old ) mitkIpUInt4_t i; /* loop index */ mitkIpUInt4_t sum; /* sum of histogram elements */ mitkIpUInt4_t limit; /* */ - mitkIpFloat4_t factor; + mitkIpFloat4_t factor; mitkIpFloat8_t median; /* median of image data */ /* check whether image data are ok */ @@ -96,26 +90,26 @@ mitkIpFloat8_t mitkIpFuncMedI ( mitkIpPicDescriptor *pic_old ) /* calculate max. and min. possible greyvalues */ - if ( _mitkIpFuncExtT ( pic_old->type, pic_old->bpe, &min_gv, &max_gv ) == mitkIpFuncERROR ) + if ( _mitkIpFuncExtT ( pic_old->type, pic_old->bpe, &min_gv, &max_gv ) == mitkIpFuncERROR ) { return ( mitkIpFuncERROR ); } /* calculate greylevel histogram */ - mitkIpFuncHist ( pic_old, min_gv, max_gv, &hist, &size_hist ); - if ( hist == 0 ) + mitkIpFuncHist ( pic_old, min_gv, max_gv, &hist, &size_hist ); + if ( hist == 0 ) { return ( mitkIpFuncERROR ); } /* factor to calculate the greyvalue belonging to an histogram index */ - - if ( pic_old->type == mitkIpPicFloat ) - factor = 0.001; + + if ( pic_old->type == mitkIpPicFloat ) + factor = 0.001; else if ( pic_old->type == mitkIpPicInt || pic_old->type == mitkIpPicUInt ) factor = 1.; - else + else { free ( hist ); _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); diff --git a/Utilities/IpFunc/Morph.c b/Utilities/IpFunc/Morph.c index bf305aa837a..6bd8df9b588 100644 --- a/Utilities/IpFunc/Morph.c +++ b/Utilities/IpFunc/Morph.c @@ -1,60 +1,54 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs a morphological operation */ -/** @brief performs a morphological operation. +/** @brief performs a morphological operation. * * Depending on the parameter kind a erosion or dilation is performed. If the original * image is an binary image each pixel is connected with the surrounding - * pixels which are non zero in the kernel by using logical operations + * pixels which are non zero in the kernel by using logical operations * ( and for erosion, or for dilation ). Greylevel images are transformed - * by taking the minimum (erosion) of the surrounding pixels or the + * by taking the minimum (erosion) of the surrounding pixels or the * maximum (dilation). * * @param pic_old pointer to the original image @@ -69,7 +63,7 @@ * @return pointer to the transformed image * * @par Uses - * @arg _mitkIpFuncError() - check the image data + * @arg _mitkIpFuncError() - check the image data * @arg mitkIpFuncHist() - calculate the greylevel histogram * @arg _mitkIpFuncCompressM() - compress filtering mask * @@ -82,12 +76,12 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mask, - _mitkIpFuncFlagF_t kind, + _mitkIpFuncFlagF_t kind, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncMorph\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncMorph\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include files */ @@ -217,21 +211,21 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, } /* ---------------------------------------------------------------------- */ -/* +/* ** function _mitkIpFuncMorph */ /* ---------------------------------------------------------------------- */ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mask, - _mitkIpFuncFlagF_t kind, + _mitkIpFuncFlagF_t kind, mitkIpFuncFlagI_t border ) { mitkIpPicDescriptor *pic_new; /* pointer to transformed image */ mitkIpFuncMasc_t *m; /* compressed mask and belonging offsets*/ mitkIpInt4_t beg[_mitkIpPicNDIM]; mitkIpInt4_t end[_mitkIpPicNDIM]; - mitkIpUInt4_t size[_mitkIpPicNDIM]; /* */ + mitkIpUInt4_t size[_mitkIpPicNDIM]; /* */ mitkIpUInt4_t no_gv; /* number of different greyvalues */ mitkIpUInt4_t i; /* loop index */ mitkIpUInt4_t size_hist; /* number of elements in histogram */ @@ -242,14 +236,14 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( _mitkIpFuncError ( mask ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( mask->dim > pic_old->dim ) + if ( mask->dim > pic_old->dim ) { _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); } - + for ( i = 0; i < mask->dim; i++ ) - if ( mask->n[i] > pic_old->n[i] ) + if ( mask->n[i] > pic_old->n[i] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -257,17 +251,17 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, pic_new = NULL; - /* initialisation of vectors */ - - size [0] = 1; - for ( i = 1; i < _mitkIpPicNDIM; i++ ) - size[i] = size[i-1] * pic_old->n[i-1]; - size[pic_old->dim] = 0; + /* initialisation of vectors */ + + size [0] = 1; + for ( i = 1; i < _mitkIpPicNDIM; i++ ) + size[i] = size[i-1] * pic_old->n[i-1]; + size[pic_old->dim] = 0; /* compress filtering mask */ m = _mitkIpFuncCompressM ( mask, pic_old, mitkIpFuncNoReflect, beg, end ); - if ( m == NULL ) + if ( m == NULL ) { free ( hist ); mitkIpPicFree ( pic_new ); @@ -275,11 +269,11 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, } /* allocate and initialize pic_new */ - - if ( border == mitkIpFuncBorderOld ) + + if ( border == mitkIpFuncBorderOld ) pic_new = mitkIpPicClone ( pic_old ); else if ( border == mitkIpFuncBorderZero ) - { + { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); if ( pic_new == NULL ) { @@ -294,28 +288,28 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } - if ( kind == mitkIpFuncEroF ) + if ( kind == mitkIpFuncEroF ) { - mitkIpPicFORALL ( INIT, pic_new ); + mitkIpPicFORALL ( INIT, pic_new ); } } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); } - - if ( pic_new == NULL ) - { + + if ( pic_new == NULL ) + { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } /* check whether binary or greylevel image */ - + if ( mitkIpFuncExtr ( pic_old, &min, &max ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); mitkIpFuncHist ( pic_old, min, max, &hist, &size_hist ); - if ( hist == NULL ) + if ( hist == NULL ) { mitkIpPicFree ( pic_new ); return ( mitkIpFuncERROR ); @@ -328,7 +322,7 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, if ( hist [i] != 0 ) no_gv++; i++; } - + /* transform image (depending on kind and no_gv) */ @@ -342,7 +336,7 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, { mitkIpPicFORALL_5 ( MORPH_G, pic_old, pic_new, m, beg, end, ERO_G ); } - else + else { free ( hist ); free ( m->off_vekt ); @@ -362,7 +356,7 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, { mitkIpPicFORALL_5 ( MORPH_G, pic_old, pic_new, m, beg, end, DILA_G ); } - else + else { free ( hist ); free ( m->off_vekt ); diff --git a/Utilities/IpFunc/MultC.c b/Utilities/IpFunc/MultC.c index f98f855fcb1..cfffd817fe2 100644 --- a/Utilities/IpFunc/MultC.c +++ b/Utilities/IpFunc/MultC.c @@ -1,51 +1,45 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function multiplies two images + * this function multiplies two images */ /** @brief multiplies two images @@ -71,13 +65,13 @@ #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncMultI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncMultI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* definition of macros */ @@ -86,7 +80,7 @@ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, { \ mitkIpPicFORALL_3 ( MULTC2, pic_new, pic_1, type_1, value ); \ } \ - + #define MULTC2( type_n, pic_new, pic_1, type_1, value ) \ { \ @@ -134,7 +128,7 @@ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, /* ------------------------------------------------------------------- */ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ) { @@ -142,7 +136,7 @@ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ @@ -163,7 +157,7 @@ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, if ( keep == mitkIpFuncKeep ) { - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); } else if ( keep == mitkIpFuncNoKeep ) @@ -179,7 +173,7 @@ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, if ( pic_old->type == mitkIpPicInt ) { - if ( smax < max_gv && smin > min_gv ) + if ( smax < max_gv && smin > min_gv ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } @@ -213,22 +207,22 @@ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncExtT ( pic_new->type, pic_new->bpe, &min_gv, &max_gv ); } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_old->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } - else - { + else + { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } - + } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); @@ -239,7 +233,7 @@ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } - + if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); if ( pic_new->data == NULL ) @@ -261,9 +255,9 @@ mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return pic_new; } #endif diff --git a/Utilities/IpFunc/MultI.c b/Utilities/IpFunc/MultI.c index 1bd1476377e..f939d2b243e 100644 --- a/Utilities/IpFunc/MultI.c +++ b/Utilities/IpFunc/MultI.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function multiplies two images @@ -83,7 +77,7 @@ mitkIpPicDescriptor *mitkIpFuncMultI ( mitkIpPicDescriptor *pic_1, { \ mitkIpPicFORALL_3 ( MULTI2, pic_new, pic_1, pic_2, type_1 ); \ } \ - + #define MULTI2( type_n, pic_new, pic_1, pic_2, type_1 ) \ { \ @@ -134,7 +128,7 @@ mitkIpPicDescriptor *mitkIpFuncMultI ( mitkIpPicDescriptor *pic_1, mitkIpUInt4_t i; /* loop index */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t min2, max2; /* extreme greyvalues of 2. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ mitkIpFloat8_t min_max12; /* product of min1 and max2 */ @@ -178,7 +172,7 @@ mitkIpPicDescriptor *mitkIpFuncMultI ( mitkIpPicDescriptor *pic_1, if ( keep == mitkIpFuncKeep ) { - pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); } else if ( keep == mitkIpFuncNoKeep ) @@ -235,16 +229,16 @@ mitkIpPicDescriptor *mitkIpFuncMultI ( mitkIpPicDescriptor *pic_1, } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_1->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_1, NULL ); } - else - { + else + { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } @@ -260,7 +254,7 @@ mitkIpPicDescriptor *mitkIpFuncMultI ( mitkIpPicDescriptor *pic_1, _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } - + if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); if ( pic_new->data == NULL ) diff --git a/Utilities/IpFunc/Norm.c b/Utilities/IpFunc/Norm.c index 0db516c1378..e266e60fa50 100644 --- a/Utilities/IpFunc/Norm.c +++ b/Utilities/IpFunc/Norm.c @@ -1,54 +1,48 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function normalizes an image + * this function normalizes an image */ -/** @brief normalizes an image +/** @brief normalizes an image * @param pic_old pointer to the image that should be inverted * @param pic_return memory used to store return image ( if pic_return == NULL * new memory is allocated ) @@ -60,14 +54,14 @@ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncNorm ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); #ifndef DOXYGEN_IGNORE - + /* definition of macro for normalisation */ #define NORM( type, pic, min, max, min_gv, max_gv ) \ @@ -84,9 +78,9 @@ mitkIpPicDescriptor *mitkIpFuncNorm ( mitkIpPicDescriptor *pic_old, (( type * ) pic_new->data ) [i] = \ ( type ) ( a * (( type * ) pic->data ) [i] + b ); \ } \ -} +} + - /* ------------------------------------------------------------------- */ /* @@ -115,28 +109,28 @@ mitkIpPicDescriptor *mitkIpFuncNorm ( mitkIpPicDescriptor *pic_old, /* calculate max. or min possible greyvalue for datatype */ - if ( _mitkIpFuncExtT ( pic_old->type, pic_old->bpe, &min_gv, &max_gv ) != mitkIpFuncOK ) + if ( _mitkIpFuncExtT ( pic_old->type, pic_old->bpe, &min_gv, &max_gv ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); /* test whether normalisation is necessary */ - + if ( ( max_gv == max ) && ( min_gv == min ) ) return ( pic_old ); /* create a new picture, copy the header, allocate memory */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* macro to invert the picture (for all data types) */ mitkIpPicFORALL_4( NORM, pic_old, min, max, min_gv, max_gv ); - + /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; } diff --git a/Utilities/IpFunc/NormXY.c b/Utilities/IpFunc/NormXY.c index 9747f25852e..929dfa94407 100644 --- a/Utilities/IpFunc/NormXY.c +++ b/Utilities/IpFunc/NormXY.c @@ -1,51 +1,45 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function normalizes an image to a specified range + * this function normalizes an image to a specified range */ /** @brief normalizes an image to a specified range @@ -63,10 +57,10 @@ /* include-Files */ -#include "mitkIpFuncP.h" - -mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t low, +#include "mitkIpFuncP.h" + +mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t low, mitkIpFloat8_t up, mitkIpPicDescriptor *pic_return ); @@ -88,9 +82,9 @@ mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, (( type * ) pic_new->data ) [i] = \ ( type ) ( a * (( type * ) pic->data ) [i] + b ); \ } \ -} +} + - /* ------------------------------------------------------------------- */ /* @@ -99,8 +93,8 @@ mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, */ /* ------------------------------------------------------------------- */ -mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t low, +mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t low, mitkIpFloat8_t up, mitkIpPicDescriptor *pic_return ) { @@ -121,7 +115,7 @@ mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, /* calculate max and min. possible greyvalues */ - if ( _mitkIpFuncExtT ( pic_old->type, pic_old->bpe, &min_gv, &max_gv ) != mitkIpFuncOK ) + if ( _mitkIpFuncExtT ( pic_old->type, pic_old->bpe, &min_gv, &max_gv ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); /* check data */ @@ -132,26 +126,26 @@ mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } - if ( low >= up ) + if ( low >= up ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - if ( low < min_gv || up > max_gv ) + if ( low < min_gv || up > max_gv ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } /* test whether normalisation is necessary */ - + if ( ( up == max ) && ( low == min ) ) return ( pic_old ); /* create a new picture, copy the header, allocate memory */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* macro to invert the picture (for all data types) */ @@ -161,9 +155,9 @@ mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return pic_new; } #endif diff --git a/Utilities/IpFunc/Not.c b/Utilities/IpFunc/Not.c index bea3a8f2436..b2b4d2e3a1c 100644 --- a/Utilities/IpFunc/Not.c +++ b/Utilities/IpFunc/Not.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs the logical not operation on an image @@ -61,8 +55,8 @@ /* include-Files */ -#include "mitkIpFuncP.h" - +#include "mitkIpFuncP.h" + mitkIpPicDescriptor *mitkIpFuncNot ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); @@ -79,9 +73,9 @@ mitkIpPicDescriptor *mitkIpFuncNot ( mitkIpPicDescriptor *pic_old, { \ (( type * ) pic_new->data ) [i] = ! ( (( type * ) pic->data ) [i] ); \ } \ -} - - +} + + /* ------------------------------------------------------------------- */ /* @@ -101,7 +95,7 @@ mitkIpPicDescriptor *mitkIpFuncNot ( mitkIpPicDescriptor *pic_old, /* create a new picture, copy the header, allocate memory */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* macro to invert the picture (for all data types) */ @@ -111,9 +105,9 @@ mitkIpPicDescriptor *mitkIpFuncNot ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return pic_new; } #endif diff --git a/Utilities/IpFunc/OpCl.c b/Utilities/IpFunc/OpCl.c index 232c3822078..9c742d9ea2d 100644 --- a/Utilities/IpFunc/OpCl.c +++ b/Utilities/IpFunc/OpCl.c @@ -1,65 +1,59 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this functions performs the morphological operations opening and + * this functions performs the morphological operations opening and * closing. */ -/** @briefs performs the morphological operations opening and - * closing. +/** @briefs performs the morphological operations opening and + * closing. * - * Opening is an erosion followed by a dilation and a + * Opening is an erosion followed by a dilation and a * closing is a dilation followed by an erosion. * * @param pic_old pointer to the original image * @param mask pointer to the kernel * @param kind tells whether opening or closing is performed * @arg @c 0 (mitkIpOPEN) : opening - * @arg @c 1 (mitkIpCLOSE) : closing + * @arg @c 1 (mitkIpCLOSE) : closing * @param border tells how the edge is transformed * @arg @c mitkIpFuncBorderOld : original greyvalues * @arg @c mitkIpFuncBorderZero : edge is set to zero @@ -67,7 +61,7 @@ * @return pointer to the transformed image * * USES - * function _mitkIpFuncError - checks the image data + * function _mitkIpFuncError - checks the image data * function _mitkIpFuncMorph - performs morphological operations * * AUTHOR & DATE @@ -79,26 +73,26 @@ mitkIpPicDescriptor *_mitkIpFuncOpCl ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mask, - _mitkIpFuncFlagF_t kind, + _mitkIpFuncFlagF_t kind, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* ---------------------------------------------------------------------- */ -/* -** function mitkIpFuncOpCl +/* +** function mitkIpFuncOpCl */ /* ---------------------------------------------------------------------- */ mitkIpPicDescriptor *_mitkIpFuncOpCl ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mask, - _mitkIpFuncFlagF_t kind, + _mitkIpFuncFlagF_t kind, mitkIpFuncFlagI_t border ) { mitkIpPicDescriptor *pic_new1; /* pointer to transformed image */ @@ -109,14 +103,14 @@ mitkIpPicDescriptor *_mitkIpFuncOpCl ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( _mitkIpFuncError ( mask ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( mask->dim > pic_old->dim ) - { + if ( mask->dim > pic_old->dim ) + { _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); } for ( i = 0; i < mask->dim; i++ ) - if ( mask->n[i] > pic_old->n[i] ) - { + if ( mask->n[i] > pic_old->n[i] ) + { _mitkIpFuncSetErrno ( mitkIpFuncSIZE_ERROR ); return ( mitkIpFuncERROR ); } @@ -141,7 +135,7 @@ mitkIpPicDescriptor *_mitkIpFuncOpCl ( mitkIpPicDescriptor *pic_old, if ( border == mitkIpFuncBorderZero ) pic_new2 = mitkIpFuncBorder ( pic_new2, mask, pic_new2 ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); diff --git a/Utilities/IpFunc/Open.c b/Utilities/IpFunc/Open.c index 6648ee55f83..f0469bed677 100644 --- a/Utilities/IpFunc/Open.c +++ b/Utilities/IpFunc/Open.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this functions performs the morphological opening operation @@ -72,7 +66,7 @@ mitkIpPicDescriptor *mitkIpFuncOpen ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -80,7 +74,7 @@ mitkIpPicDescriptor *mitkIpFuncOpen ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mitkIpFuncOpen ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ) -{ +{ mitkIpPicDescriptor *pic_new; pic_new = _mitkIpFuncOpCl ( pic_old, pic_mask, mitkIpFuncOpenF, border ); @@ -88,9 +82,9 @@ mitkIpPicDescriptor *mitkIpFuncOpen ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return ( pic_new ); } diff --git a/Utilities/IpFunc/Or.c b/Utilities/IpFunc/Or.c index c1fc8d0e092..9ae42777751 100644 --- a/Utilities/IpFunc/Or.c +++ b/Utilities/IpFunc/Or.c @@ -1,57 +1,51 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function connects two images using the OR */ -/** @brief connects two images using the OR +/** @brief connects two images using the OR * - * @param pic_1 pointer to the first image - * @param pic_2 pointer to the second image + * @param pic_1 pointer to the first image + * @param pic_2 pointer to the second image * @param pic_return memory used to store return image ( if pic_return == NULL * new memory is allocated ) * @@ -62,9 +56,9 @@ /* include-Files */ -#include "mitkIpFuncP.h" - -mitkIpPicDescriptor *mitkIpFuncOr ( mitkIpPicDescriptor *pic_1, +#include "mitkIpFuncP.h" + +mitkIpPicDescriptor *mitkIpFuncOr ( mitkIpPicDescriptor *pic_1, mitkIpPicDescriptor *pic_2, mitkIpPicDescriptor *pic_return ) ; #ifndef DOXYGEN_IGNORE @@ -82,18 +76,18 @@ mitkIpPicDescriptor *mitkIpFuncOr ( mitkIpPicDescriptor *pic_1, (( type * ) pic_1->data ) [i] || \ (( type * ) pic_2->data ) [i]; \ } \ -} - - +} + + /* ------------------------------------------------------------------- */ /* */ /* ------------------------------------------------------------------- */ -mitkIpPicDescriptor *mitkIpFuncOr ( mitkIpPicDescriptor *pic_1, +mitkIpPicDescriptor *mitkIpFuncOr ( mitkIpPicDescriptor *pic_1, mitkIpPicDescriptor *pic_2, - mitkIpPicDescriptor *pic_return ) + mitkIpPicDescriptor *pic_return ) { mitkIpPicDescriptor *pic_new; /* pointer to new image */ @@ -117,7 +111,7 @@ mitkIpPicDescriptor *mitkIpFuncOr ( mitkIpPicDescriptor *pic_1, return NULL; } } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncUNFIT_ERROR ); return NULL; @@ -125,17 +119,17 @@ mitkIpPicDescriptor *mitkIpFuncOr ( mitkIpPicDescriptor *pic_1, /* allocate new iumage */ - pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_1, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* macro to connect two images using AND */ - mitkIpPicFORALL_2 ( OR, pic_1, pic_2, pic_new ); + mitkIpPicFORALL_2 ( OR, pic_1, pic_2, pic_new ); /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_1); - + return pic_new; } #endif diff --git a/Utilities/IpFunc/Pot.c b/Utilities/IpFunc/Pot.c index 2d6e9f3a879..43c2aa33458 100644 --- a/Utilities/IpFunc/Pot.c +++ b/Utilities/IpFunc/Pot.c @@ -1,57 +1,51 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * This function takes all greyvalues of the image to the power of the exponent. */ -/** @brief takes all greyvalues of the image to the power of the exponent. +/** @brief takes all greyvalues of the image to the power of the exponent. * * @param pic_1 pointer to the first image - * @param exponent exponent + * @param exponent exponent * @param keep tells whether the image type could be changed when * necessary * @arg @c mitkIpFuncNoKeep : image data type could be changed @@ -82,7 +76,7 @@ mitkIpPicDescriptor *mitkIpFuncPot ( mitkIpPicDescriptor *pic_1, { \ mitkIpPicFORALL_3 ( POT2, pic_new, pic_1, exponent, type_1 ); \ } \ - + #define POT2( type_n, pic_new, pic_1, exponent, type_1 ) \ { \ @@ -117,7 +111,7 @@ mitkIpPicDescriptor *mitkIpFuncPot ( mitkIpPicDescriptor *pic_1, mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ @@ -185,35 +179,35 @@ mitkIpPicDescriptor *mitkIpFuncPot ( mitkIpPicDescriptor *pic_1, } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_1->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_1, NULL ); } - else - { + else + { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); } - if ( pic_new == NULL ) - { + if ( pic_new == NULL ) + { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); - if ( pic_new->data == NULL ) - { + if ( pic_new->data == NULL ) + { mitkIpPicFree ( pic_new ); _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -226,7 +220,7 @@ mitkIpPicDescriptor *mitkIpFuncPot ( mitkIpPicDescriptor *pic_1, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_1); - + return pic_new; } #endif diff --git a/Utilities/IpFunc/Range.c b/Utilities/IpFunc/Range.c index ce0f793eb09..a14b66ed907 100644 --- a/Utilities/IpFunc/Range.c +++ b/Utilities/IpFunc/Range.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function checks whether the greyvalues of the image are in the + * this function checks whether the greyvalues of the image are in the * spezified range */ -/** @brief checks whether the greyvalues of the image are in the +/** @brief checks whether the greyvalues of the image are in the * spezified range * * @param pic_old pointer to original image @@ -57,7 +51,7 @@ * @param gv_up upper end of range * * @return mitkIpFuncOK when greyvalues are in specified range - * @return mitkIpFuncERROR when greyvalues are not in specigfied range or an error + * @return mitkIpFuncERROR when greyvalues are not in specigfied range or an error * occured * * USES @@ -76,7 +70,7 @@ mitkIpUInt4_t mitkIpFuncRange ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -96,7 +90,7 @@ mitkIpUInt4_t mitkIpFuncRange ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( gv_low > gv_up ) - { + { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } diff --git a/Utilities/IpFunc/Rank.c b/Utilities/IpFunc/Rank.c index e94f880fe30..5ac4cb530a3 100644 --- a/Utilities/IpFunc/Rank.c +++ b/Utilities/IpFunc/Rank.c @@ -1,63 +1,57 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs a filtering of the image. The new greyvalue of - * the image is calculated by taking the greyvalue belonging to the + * the image is calculated by taking the greyvalue belonging to the * specified range after having sorted the greyvalues included by the mask */ /** @brief performs a filtering of the image. The new greyvalue of - * the image is calculated by taking the greyvalue belonging to the + * the image is calculated by taking the greyvalue belonging to the * specified range after having sorted the greyvalues included by the mask * * @param pic_old pointer to original image - * @param rank rank (number of pixel which is taken after having sorted + * @param rank rank (number of pixel which is taken after having sorted * the pixels under the mask) - * rank = 0 : Median + * rank = 0 : Median * @param mask_dim dimension of mask * @param mask_size number of pixel in each dimension of the mask * @param border tells how the edge is handled @@ -81,7 +75,7 @@ mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include files */ @@ -91,11 +85,11 @@ mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, /* definition of macros */ #define INDEX0( typ, pic ) ( mitkIpUInt4_t ) ( factor * (( typ * ) pic->data ) \ - [off_vekt[i] + off[0]] + help ) + [off_vekt[i] + off[0]] + help ) #define INDEX2( typ, pic ) ( mitkIpUInt4_t ) ( factor * (( typ * ) pic->data ) \ - [off_vekt[i] + off[0]] + help ) + [off_vekt[i] + off[0]] + help ) #define INDEX3( typ, pic ) ( mitkIpUInt4_t ) ( factor * (( typ * ) pic->data ) \ - [off[0] - off_vekt[i]] + help ) + [off[0] - off_vekt[i]] + help ) #define RANK( typ, pic, begin, no_elem, size, rank ) \ { \ mitkIpUInt4_t n[_mitkIpPicNDIM]; /* size of each dimension */ \ @@ -200,22 +194,22 @@ mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, } \ } \ /*free ( hist ); */ \ -} +} /* ------------------------------------------------------------------------------ */ /* -** function mitkIpFuncRank +** function mitkIpFuncRank */ /* ------------------------------------------------------------------------------ */ - + mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t rank, mitkIpUInt4_t mask_dim, mitkIpUInt4_t mask_size, mitkIpFuncFlagI_t border ) { - + mitkIpPicDescriptor *pic_new; /* pointer to transformed image */ mitkIpInt4_t i; /* loop index */ mitkIpInt4_t offset; /* offset of image */ @@ -236,18 +230,18 @@ mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, /* check whether data are correct */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( mask_dim < 1 || mask_dim > pic_old->dim ) - { + if ( mask_dim < 1 || mask_dim > pic_old->dim ) + { _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); } - if ( rank > no_elem ) - { + if ( rank > no_elem ) + { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - if ( mask_size % 2 != 1 ) - { + if ( mask_size % 2 != 1 ) + { _mitkIpFuncSetErrno ( mitkIpFuncSIZE_ERROR ); return ( mitkIpFuncERROR ); } @@ -265,7 +259,7 @@ mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, n[i] = begin + 1; for ( i = mask_dim; i < _mitkIpPicNDIM; i++ ) n[i] = 1 - begin; - + /* allocate image structure */ if ( border == mitkIpFuncBorderOld ) @@ -275,7 +269,7 @@ mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, pic_new = mitkIpPicCopyHeader ( pic_old, 0 ); pic_new->data = calloc ( _mitkIpPicElements ( pic_new ), pic_new->bpe/8 ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); @@ -306,24 +300,24 @@ mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, for ( ind[3] = -begin; ind[3] < n[3]; ind[3]++ ) for ( ind[2] = -begin; ind[2] < n[2]; ind[2]++ ) for ( ind[1] = -begin; ind[1] < n[1]; ind[1]++ ) - { + { offset = 0; for ( i = 0; i < pic_old->dim; i++ ) - offset = offset + ind[i] * size[i]; + offset = offset + ind[i] * size[i]; off_vekt[len] = offset; len++; } if ( rank == 0 ) rank = no_elem / 2 + 1; mitkIpPicFORALL_4 ( RANK, pic_old, begin, no_elem, size, rank ); - + free ( off_vekt ); /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return ( pic_new ); } #endif diff --git a/Utilities/IpFunc/Refl.c b/Utilities/IpFunc/Refl.c index d2ea7ce7dbe..1fc3d895607 100644 --- a/Utilities/IpFunc/Refl.c +++ b/Utilities/IpFunc/Refl.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function reflects an image along one axis @@ -53,7 +47,7 @@ * @param pic_old pointer to the image that should be inverted * @param axis reflection axis: 1 => x-axis * 2 => y-axis - * 3 => z-axis + * 3 => z-axis * 4 => t-axis * * @return pointer to the reflected image @@ -112,7 +106,7 @@ mitkIpPicDescriptor *mitkIpFuncRefl ( mitkIpPicDescriptor *pic_old, int axis ); /* ** function picRefl : reflects a picture (pic_old) along one axis ** (axis) -** axis: 1 => x-axis +** axis: 1 => x-axis ** 2 => y-axis ** 3 => z-axis ** 4 => t-axis @@ -125,7 +119,7 @@ mitkIpPicDescriptor *mitkIpFuncRefl ( mitkIpPicDescriptor *pic_old, int axis ) mitkIpPicDescriptor *pic_new; /* inverted picture */ mitkIpUInt4_t index_vect[_mitkIpPicNDIM]; /* loop index vector */ mitkIpUInt4_t length_vect[_mitkIpPicNDIM]; - mitkIpUInt4_t axis_vect[_mitkIpPicNDIM]; + mitkIpUInt4_t axis_vect[_mitkIpPicNDIM]; mitkIpInt4_t n[_mitkIpPicNDIM]; /* number of pixels in each */ /* dimension */ mitkIpUInt4_t i; /* loop index */ @@ -134,21 +128,21 @@ mitkIpPicDescriptor *mitkIpFuncRefl ( mitkIpPicDescriptor *pic_old, int axis ) /* check data */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( axis < 1 || axis > pic_old->dim ) + if ( axis < 1 || axis > pic_old->dim ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - + /* initialisation of vectors */ for ( i = 0; i < pic_old->dim; i++ ) n[i] = pic_old->n[i]; - + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) n[i] = 1; - + for ( i = 0; i < _mitkIpPicNDIM; i++ ) { index_vect[i] = 0; @@ -160,14 +154,14 @@ mitkIpPicDescriptor *mitkIpFuncRefl ( mitkIpPicDescriptor *pic_old, int axis ) if ( axis == 1 ) axis = 2; else if ( axis == 2 ) - axis = 1; + axis = 1; axis_vect[axis - 1] = n[axis - 1] - 1; length_vect[0] = 1; for ( i = 1; i < pic_old->dim; i++ ) { length_vect[i] = n[i-1] * length_vect[i-1]; - } + } /* create a new picture, copy the header, allocate memory */ @@ -186,23 +180,23 @@ mitkIpPicDescriptor *mitkIpFuncRefl ( mitkIpPicDescriptor *pic_old, int axis ) } /* macro to reflect image (for all image data types) */ - mitkIpPicFORALL_4 ( ForLoop, pic_old, pic_new, index_vect, offset_orig, + mitkIpPicFORALL_4 ( ForLoop, pic_old, pic_new, index_vect, offset_orig, offset_orig = 0; for ( i = 0; i < pic_old->dim; i++ ) { - offset_orig = offset_orig + length_vect [i] * - (( axis_vect [i] == 0 ) ? - index_vect [i] : + offset_orig = offset_orig + length_vect [i] * + (( axis_vect [i] == 0 ) ? + index_vect [i] : ( axis_vect [i] - index_vect[i] )); } - ) + ) /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return pic_new; } #endif diff --git a/Utilities/IpFunc/RegGrow.c b/Utilities/IpFunc/RegGrow.c index aa0a0a97854..7fb62631aff 100644 --- a/Utilities/IpFunc/RegGrow.c +++ b/Utilities/IpFunc/RegGrow.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs a region growing by mean and standard deviation. @@ -50,13 +44,13 @@ /** @brief performs a region growing by mean and standard deviation. * - * The growing criteria is, that the new pixels greyvalue must be in the + * The growing criteria is, that the new pixels greyvalue must be in the * standard deviation of the seed region. * After calculating the mean and standard deviation of the seed region, all - * pixels of this region are investigated whether they belong to a region - * or not. All accepted pixels are marked with a region_label. In the next + * pixels of this region are investigated whether they belong to a region + * or not. All accepted pixels are marked with a region_label. In the next * step the neigbours of all accepted pixels are investigated whether they - * belong to the region or to the border or to none of them. At the end all + * belong to the region or to the border or to none of them. At the end all * pixels which belong to the boder (which contains the first pixel of the * outside region) are marked. * @@ -101,7 +95,7 @@ */ /* include files */ - + #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, @@ -110,18 +104,18 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *end_seed, mitkIpUInt4_t border_label, mitkIpUInt4_t region_label, - mitkIpFloat8_t std_fact, + mitkIpFloat8_t std_fact, mitkIpUInt4_t kind ) ; #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include files */ - + #include "mitkIpFuncP.h" /* definition of macros */ @@ -359,7 +353,7 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, /* ** mitkIpFuncRegGrow */ -/* -------------------------------------------------------------------------- */ +/* -------------------------------------------------------------------------- */ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t dim_seed, @@ -367,8 +361,8 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *end_seed, mitkIpUInt4_t border_label, mitkIpUInt4_t region_label, - mitkIpFloat8_t std_fact, - mitkIpUInt4_t kind ) + mitkIpFloat8_t std_fact, + mitkIpUInt4_t kind ) { mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpUInt4_t i; /* loop index */ @@ -380,7 +374,7 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, mitkIpInt4_t offset_v; /* offset */ mitkIpInt4_t *off_vekt; /* offsets of all neighbour pixels */ mitkIpUInt4_t no_neigh; /* number of neighbour pixels */ - + /* parameters of seed region */ mitkIpFloat8_t mean; /* mean of greyvalues in seed region */ @@ -400,10 +394,10 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *next; /* offsets of acc. pixels for next step*/ mitkIpUInt4_t *help; /* */ mitkIpUInt4_t *border; /* offsets of all border pixels */ - + /* check image data */ - if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); + if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); /* check parameters */ @@ -411,7 +405,7 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, for ( i = 0; i < dim_seed; i++ ) { if ( end_seed[i] <= beg_seed[i] || end_seed[i] > pic_old->n[i] || - beg_seed[i] < 0 ) + beg_seed[i] < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -420,18 +414,18 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, /* allocate vectors */ - no_neigh = ( mitkIpUInt4_t ) pow ( 3., pic_old->dim ); + no_neigh = ( mitkIpUInt4_t ) pow ( 3., pic_old->dim ); off_vekt = malloc ( no_neigh * sizeof ( mitkIpInt4_t ) ); - if ( off_vekt == NULL ) - { + if ( off_vekt == NULL ) + { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - + acpt = malloc ( _mitkIpPicElements ( pic_old ) * sizeof ( mitkIpUInt4_t ) ); - if ( acpt == NULL ) - { + if ( acpt == NULL ) + { free ( off_vekt ); _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -439,7 +433,7 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, next = malloc ( _mitkIpPicElements ( pic_old ) * sizeof ( mitkIpUInt4_t ) ); if ( next == NULL ) - { + { free ( off_vekt ); free ( acpt ); _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); @@ -448,8 +442,8 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, /* help = malloc ( _mitkIpPicElements ( pic_old ) * sizeof ( mitkIpUInt4_t ) ); - if ( help == NULL ) - { + if ( help == NULL ) + { free ( off_vekt ); free ( acpt ); free ( next ); @@ -459,20 +453,20 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, */ border = malloc ( _mitkIpPicElements ( pic_old ) * sizeof ( mitkIpUInt4_t ) ); - if ( border == NULL ) - { + if ( border == NULL ) + { free ( off_vekt ); free ( acpt ); free ( next ); _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - + /* allocate pic_new and initialize it to zero */ pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); - if ( pic_new == NULL ) - { + if ( pic_new == NULL ) + { free ( off_vekt ); free ( acpt ); free ( next ); @@ -481,8 +475,8 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, return ( mitkIpFuncERROR ); } pic_new->data = calloc ( _mitkIpPicElements (pic_new), pic_new->bpe / 8 ); - if ( pic_new->data == NULL ) - { + if ( pic_new->data == NULL ) + { free ( off_vekt ); free ( acpt ); free ( next ); @@ -495,7 +489,7 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, /* initialize variables and vectors */ size[0] = 1; - for ( i = 1; i < pic_old->dim; i++ ) + for ( i = 1; i < pic_old->dim; i++ ) size[i] = size[i-1] * pic_old->n[i-1]; for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) size[i] = 0; @@ -505,11 +499,11 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, beg[i] = ( i < pic_old->n[i] ) ? -1 : 0 ; end[i] = ( i < pic_old->n[i] ) ? 2 : 1 ; } - + acpt_len = 0; next_len = 0; border_len = 0; - + /* calculate offset vector */ offset_v = 0; @@ -534,7 +528,7 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, for ( ind[1] = beg[1]; ind[1] < end[1]; ind[1]++ ) { off[1] = size[1] * ind[1] + off[2]; - off[0] = off[1] + beg[0]; + off[0] = off[1] + beg[0]; for ( ind[0] = beg[0]; ind[0] < end[0]; ind[0]++ ) { off_vekt[offset_v] = off[0]; @@ -552,7 +546,7 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, /* calculate parameters of seed region */ size_seed = 1; - + for ( i = 0; i < dim_seed; i++ ) { beg[i] = beg_seed[i]; @@ -565,16 +559,16 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, beg[i] = 0; end[i] = 1; } - + mitkIpPicFORALL_6 ( STAT, pic_old, pic_new, mean, std_win, size_seed, beg, end ); /* find accepted pixels in seed region */ - + mitkIpPicFORALL_5 ( ACPT, pic_old, pic_new, acpt, acpt_len, region_label, std_win ); /* region growing */ - mitkIpPicFORALL_6 ( REGGROW, pic_old, pic_new, acpt, acpt_len, + mitkIpPicFORALL_6 ( REGGROW, pic_old, pic_new, acpt, acpt_len, border, border_len, std_win ); /* free memory */ @@ -584,16 +578,16 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, free ( next ); /* free ( help );*/ free ( border ); - + /* Copy Tags */ strncpy( pic_new->info->version, pic_old->info->version, _mitkIpPicTAGLEN ); pic_new->info->tags_head = _mitkIpPicCloneTags( pic_old->info->tags_head ); pic_new->info->write_protect = pic_old->info->write_protect; - + return ( pic_new ); - + } - -#endif + +#endif diff --git a/Utilities/IpFunc/Roberts.c b/Utilities/IpFunc/Roberts.c index da93342527a..b952142c151 100644 --- a/Utilities/IpFunc/Roberts.c +++ b/Utilities/IpFunc/Roberts.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs an edge detection by the Roberts gradient @@ -50,7 +44,7 @@ /** @brief performs an edge detection by the Roberts gradient * - * This gradient uses a 2x2 or 2x2x2 mask and calculates the maximum + * This gradient uses a 2x2 or 2x2x2 mask and calculates the maximum * of the difference of all diagonal elements * * @param pic_old pointer to original image @@ -69,13 +63,13 @@ #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -123,13 +117,13 @@ mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, } \ /* --------------------------------------------------------------------- */ -/* -** function mitkIpFuncRoberts +/* +** function mitkIpFuncRoberts */ /* --------------------------------------------------------------------- */ - + mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ) { mitkIpPicDescriptor *pic_new; /* pointer to new image structure */ @@ -156,7 +150,7 @@ mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, for ( i = 0; i < dim_mask; i++ ) n[i] = 2; - + for ( i = dim_mask; i < _mitkIpPicNDIM; i++ ) n[i] = 1; @@ -173,7 +167,7 @@ mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, mask_size = ( mitkIpUInt4_t ) pow ( 2., ( mitkIpFloat8_t ) dim_mask ); off_vekt = calloc ( mask_size, sizeof( mitkIpInt4_t ) ); off_mask = 0; - if ( off_vekt == NULL ) + if ( off_vekt == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -207,7 +201,7 @@ mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, } /* allocate new image */ - + if ( border == mitkIpFuncBorderOld ) pic_new = mitkIpPicClone ( pic_old ); else if ( border == mitkIpFuncBorderZero ) @@ -215,7 +209,7 @@ mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, pic_new = mitkIpPicCopyHeader ( pic_old, 0 ); pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); } - else + else { free ( off_vekt ); _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); @@ -232,7 +226,7 @@ mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, if ( pic_new->data == NULL ) { free ( off_vekt ); - mitkIpPicFree ( pic_new ); + mitkIpPicFree ( pic_new ); _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } @@ -241,10 +235,10 @@ mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, for ( i = 0; i < pic_old->dim; i++ ) n[i] = pic_old->n[i] - 1; - + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) n[i] = 1; - + mitkIpPicFORALL_4 ( ROBERTS, pic_old, mask_size, n, off_vekt, size ); free ( off_vekt ); @@ -252,8 +246,8 @@ mitkIpPicDescriptor *mitkIpFuncRoberts ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/Rotate.c b/Utilities/IpFunc/Rotate.c index a7d6464bdd6..469947f9d1b 100644 --- a/Utilities/IpFunc/Rotate.c +++ b/Utilities/IpFunc/Rotate.c @@ -1,75 +1,69 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * Rotates image by a given angle + * Rotates image by a given angle */ /** @brief Rotates image by a given angle. * * The angle has to be a multiple of 90 degrees. * - * @param pic pointer to picture - * @param pic_old pointer to picture old, which is not used in this version - * @param grad angle array for every axes - * @param order order of the axes + * @param pic pointer to picture + * @param pic_old pointer to picture old, which is not used in this version + * @param grad angle array for every axes + * @param order order of the axes * parameter example: grad: 90 270 90 * order: 3 1 2 * means: first step: the third axis is rotated with 90 degrees * second step: the first axis is rotated with 90 degrees * third step: the second axis is rotated with 270 degrees - * - * @return image * - * @author Judith Dilo @date 5.5.1990 - * @author Ulrike Guennel @date 18.3.1994 + * @return image + * + * @author Judith Dilo @date 5.5.1990 + * @author Ulrike Guennel @date 18.3.1994 * * * This a total rewritten version of 'ipRot' written by Judith Dilo - * 7.6.1990 by J.D. (small improvements) + * 7.6.1990 by J.D. (small improvements) * 18.3.1994 by U.G. (new pic format) * $Log$ * Revision 1.3 2003/08/21 08:20:06 tobiask @@ -97,7 +91,7 @@ /* ** ipFunc includefiles -*/ +*/ #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, @@ -107,17 +101,17 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncRotate\tDKFZ (Dept. MBI) $Revision$ "__DATE__ }; -#endif - - + static char *what = { "@(#)mitkIpFuncRotate\tGerman Cancer Research Center (DKFZ) $Revision$ "__DATE__ }; +#endif + + /* ** private macros */ #define COEFF_DEF( x,i ) (( (x) > (0)) ? ((x) - *p_index[i]) : (*p_index[i]) ) - -/* + +/* ** the action starts here */ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, @@ -129,7 +123,7 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, mitkIpUInt4_t *p_index[_mitkIpPicNDIM]; mitkIpUInt4_t index[_mitkIpPicNDIM]; mitkIpUInt4_t coeff_sum[_mitkIpPicNDIM]; - mitkIpUInt1_t coefficient[_mitkIpPicNDIM]; + mitkIpUInt1_t coefficient[_mitkIpPicNDIM]; mitkIpUInt4_t r_size[_mitkIpPicNDIM]; mitkIpUInt4_t r_offset,i; int order_alloc = 0; @@ -151,7 +145,7 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, return( NULL ); } - + /* ** init pic_return->n, pointer to index and calculated_coeff ** init coefficient matrix, r_size @@ -187,8 +181,8 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, */ int tt[_mitkIpPicNDIM]; for( i=0; i<_mitkIpPicNDIM; i++ ) tt[i] = 0; - for( i=0; i< pic->dim; i++ ) - { + for( i=0; i< pic->dim; i++ ) + { if( order[i] > 0 && order[i]<= (mitkIpInt4_t) pic->dim ) tt[ order[i]-1 ]++; else @@ -208,7 +202,7 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, return( NULL ); } } - + /* ** fill of the coefficient array and change the p_index array */ @@ -217,8 +211,8 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, int d1,d2; mitkIpUInt4_t *tmp; - d1 = order [i]-1; - d2 = (d1+1 >= (mitkIpInt4_t) pic->dim ) ? ( 0 ) : ( d1+1 ); + d1 = order [i]-1; + d2 = (d1+1 >= (mitkIpInt4_t) pic->dim ) ? ( 0 ) : ( d1+1 ); switch( grad[d1] ) { @@ -228,7 +222,7 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, tmp = p_index[d2]; p_index[d2] = p_index[d1]; p_index[d1] = tmp; - + coefficient[ p_index[d2] - index ] = (coefficient[ p_index[d2] - index ] == 1 ) ? 0 : 1; break; @@ -242,7 +236,7 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, tmp = p_index[d2]; p_index[d2] = p_index[d1]; p_index[d1] = tmp; - + coefficient[ p_index[d1] - index ] = (coefficient[ p_index[d1] - index ] == 1 ) ? 0 : 1; break; @@ -256,14 +250,14 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, } } } - + /* - ** calculate coefficient, and pic_return->n[i] + ** calculate coefficient, and pic_return->n[i] */ for( i=0; idim; i++ ) { - coeff_sum[ i ] = (pic->n[p_index[i] - index]-1) + coeff_sum[ i ] = (pic->n[p_index[i] - index]-1) * coefficient[ p_index[i] - index]; pic_return->n[i] = pic->n[p_index[i] - index]; } @@ -284,7 +278,7 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, */ mitkIpPicFORALL_4( mitkIpFuncFORALL, pic, pic_return, index, r_offset, for( r_offset = COEFF_DEF( coeff_sum[0],0) , i=1; idim; i++ ) - r_offset += COEFF_DEF( coeff_sum[i],i ) * r_size[i]; + r_offset += COEFF_DEF( coeff_sum[i],i ) * r_size[i]; ) /* @@ -298,7 +292,7 @@ mitkIpPicDescriptor *mitkIpFuncRotate( mitkIpPicDescriptor *pic, strncpy( pic_return->info->version, pic->info->version, _mitkIpPicTAGLEN ); pic_return->info->tags_head = _mitkIpPicCloneTags( pic->info->tags_head ); pic_return->info->write_protect = pic->info->write_protect; - + return( pic_return ); } #endif diff --git a/Utilities/IpFunc/SDev.c b/Utilities/IpFunc/SDev.c index 680c5dd487f..2ed9ce8d3ff 100644 --- a/Utilities/IpFunc/SDev.c +++ b/Utilities/IpFunc/SDev.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the standard deviation of all greyvalues @@ -52,8 +46,8 @@ /** this function calculates the standard deviation of all greyvalues * in an image * - * @param pic pointer to the image - * + * @param pic pointer to the image + * * @return standard deviation * * USES @@ -61,7 +55,7 @@ * * AUTHOR */ - + /* include-files */ #include "mitkIpFuncP.h" @@ -80,7 +74,7 @@ mitkIpFloat8_t mitkIpFuncSDev ( mitkIpPicDescriptor *pic ) if ( _mitkIpFuncError ( pic ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); s_der = sqrt ( mitkIpFuncVar ( pic ) ); - + return( s_der ); } #endif diff --git a/Utilities/IpFunc/SDevC.c b/Utilities/IpFunc/SDevC.c index 28f7568eb26..df9982879b3 100644 --- a/Utilities/IpFunc/SDevC.c +++ b/Utilities/IpFunc/SDevC.c @@ -1,57 +1,51 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the standrad deviation of all grey- - * values included by a circle. This circle is described by + * values included by a circle. This circle is described by * its center and radius */ /** this function calculates the standrad deviation of all grey- - * values included by a circle. This circle is described by + * values included by a circle. This circle is described by * its center and radius * * @param pic_old pointer to image structure @@ -76,9 +70,9 @@ mitkIpFloat8_t mitkIpFuncSDevC ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif - + /* include files */ #include "mitkIpFuncP.h" @@ -98,7 +92,7 @@ mitkIpFloat8_t mitkIpFuncSDevC ( mitkIpPicDescriptor *pic_old, if ( var < 0 ) return ( mitkIpFuncERROR ); - s_dev = sqrt ( var ); + s_dev = sqrt ( var ); return ( s_dev ); } diff --git a/Utilities/IpFunc/SDevR.c b/Utilities/IpFunc/SDevR.c index 61c1a4ee038..9ec28db3698 100644 --- a/Utilities/IpFunc/SDevR.c +++ b/Utilities/IpFunc/SDevR.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the standard deviation of all greyvalues included by a rectangle @@ -50,7 +44,7 @@ /** calculates the standard deviation of all greyvalues included by a rectangle * - * The rectangle is described by a vector with the coordinates of the + * The rectangle is described by a vector with the coordinates of the * upper left corner and a vector of its length in each direction * * @param pic_old pointer to original image @@ -65,19 +59,19 @@ #include "mitkIpFuncP.h" mitkIpFloat8_t mitkIpFuncSDevR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif mitkIpFloat8_t mitkIpFuncSDevR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ) { mitkIpFloat8_t sder; /* standard deviation */ diff --git a/Utilities/IpFunc/SDevROI.c b/Utilities/IpFunc/SDevROI.c index 96e6e3e659d..fd9e337278e 100644 --- a/Utilities/IpFunc/SDevROI.c +++ b/Utilities/IpFunc/SDevROI.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function calculates the standard deviation of all pixels + * this function calculates the standard deviation of all pixels * inside of a polygon */ -/** @brief calculates the standard deviation of all pixels +/** @brief calculates the standard deviation of all pixels * inside of a polygon * * The polygon is described by a sequence of points @@ -81,7 +75,7 @@ mitkIpFloat8_t mitkIpFuncSDevROI ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncSDevROI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncSDevROI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -94,7 +88,7 @@ mitkIpFloat8_t mitkIpFuncSDevROI ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t mitkIpFuncSDevROI ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *pol_x, mitkIpUInt4_t *pol_y, - mitkIpUInt4_t no_pts ) + mitkIpUInt4_t no_pts ) { mitkIpFloat8_t var; /* variance of greyvalues in ROI */ mitkIpFloat8_t s_dev; /* standard dev.of greyvalues in ROI*/ @@ -105,7 +99,7 @@ mitkIpFloat8_t mitkIpFuncSDevROI ( mitkIpPicDescriptor *pic_old, return ( s_dev ); -} +} #endif diff --git a/Utilities/IpFunc/ScBl.c b/Utilities/IpFunc/ScBl.c index 5d0e9781f68..067270fae31 100644 --- a/Utilities/IpFunc/ScBl.c +++ b/Utilities/IpFunc/ScBl.c @@ -1,76 +1,70 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * internal only. used by Scale.c */ /*@file - * this function scales the first image to the size of the second image - * using bilinear interpolation + * this function scales the first image to the size of the second image + * using bilinear interpolation */ -/* @brief scales the first image to the size of the second image - * using bilinear interpolation +/* @brief scales the first image to the size of the second image + * using bilinear interpolation * - * @param pic_old pointer to the image that should be scaled - * @param pic_new pointer to the scaled image ( contains the information + * @param pic_old pointer to the image that should be scaled + * @param pic_new pointer to the scaled image ( contains the information * for the scaling in th header ) * !!! All Header Information necessary when calling function !!! * - * @return pointer to the scaled image + * @return pointer to the scaled image * * AUTHOR & DATE */ /* include-Files */ -#include "mitkIpFuncP.h" - -mitkIpPicDescriptor *_mitkIpFuncScBL( mitkIpPicDescriptor *pic_old, +#include "mitkIpFuncP.h" + +mitkIpPicDescriptor *_mitkIpFuncScBL( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_new ) ; #ifndef DOXYGEN_IGNORE @@ -294,15 +288,15 @@ mitkIpPicDescriptor *_mitkIpFuncScBL( mitkIpPicDescriptor *pic_old, */ /* ------------------------------------------------------------------- */ -mitkIpPicDescriptor *_mitkIpFuncScBL( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_new ) +mitkIpPicDescriptor *_mitkIpFuncScBL( mitkIpPicDescriptor *pic_old, + mitkIpPicDescriptor *pic_new ) { mitkIpUInt4_t i; /* loopindex */ mitkIpUInt4_t n[_mitkIpPicNDIM]; /* no. of pixels in each dimension*/ mitkIpFloat8_t scale[_mitkIpPicNDIM]; /* scaling factors */ - mitkIpUInt4_t size[_mitkIpPicNDIM]; - mitkIpUInt4_t sizeo[_mitkIpPicNDIM]; + mitkIpUInt4_t size[_mitkIpPicNDIM]; + mitkIpUInt4_t sizeo[_mitkIpPicNDIM]; char is_color=0; @@ -317,21 +311,21 @@ mitkIpPicDescriptor *_mitkIpFuncScBL( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( _mitkIpFuncError ( pic_new ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( pic_old->dim != pic_new->dim ) - { + { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); } /* initialisation of vectors */ - - for ( i = 0; i < pic_new->dim; i++ ) + + for ( i = 0; i < pic_new->dim; i++ ) // if(pic_new->n[i]>=pic_old->n[i]) n[i] = pic_new->n[i];//ivo - 2; // else // n[i] = pic_new->n[i]-1; - - for ( i = pic_new->dim; i < _mitkIpPicNDIM; i++ ) - n[i] = 0; + + for ( i = pic_new->dim; i < _mitkIpPicNDIM; i++ ) + n[i] = 0; sizeo[0] = 1; for ( i = 1; i < _mitkIpPicNDIM; i++ ) @@ -344,12 +338,12 @@ mitkIpPicDescriptor *_mitkIpFuncScBL( mitkIpPicDescriptor *pic_old, /* calculate scaling factors */ for ( i = 0; i < pic_old->dim; i++ ) - scale[i] = ( mitkIpFloat8_t ) ( pic_old->n[i] - 1 ) / + scale[i] = ( mitkIpFloat8_t ) ( pic_old->n[i] - 1 ) / ( mitkIpFloat8_t ) ( pic_new->n[i] - 1 ); - + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) scale[i] = 1.; - + /* add header information for pic_new and allocate memory */ pic_new->bpe = pic_old->bpe*(is_color!=0?3:1); @@ -367,29 +361,29 @@ mitkIpPicDescriptor *_mitkIpFuncScBL( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - + /* macro to scale an image ( for all data types )s) */ if(pic_old->type==mitkIpPicFloat) { if(is_color==0) { - mitkIpPicFORALL_4 ( SCBL, pic_old, pic_new, size, scale, n ); + mitkIpPicFORALL_4 ( SCBL, pic_old, pic_new, size, scale, n ); } else { - mitkIpPicFORALL_4 ( SCBLCOLOR, pic_old, pic_new, size, scale, n ); + mitkIpPicFORALL_4 ( SCBLCOLOR, pic_old, pic_new, size, scale, n ); } } else { if(is_color==0) { - mitkIpPicFORALL_4 ( SCBL_INT, pic_old, pic_new, size, scale, n ); + mitkIpPicFORALL_4 ( SCBL_INT, pic_old, pic_new, size, scale, n ); } else { - mitkIpPicFORALL_4 ( SCBLCOLOR_INT, pic_old, pic_new, size, scale, n ); + mitkIpPicFORALL_4 ( SCBLCOLOR_INT, pic_old, pic_new, size, scale, n ); } } diff --git a/Utilities/IpFunc/ScFact.c b/Utilities/IpFunc/ScFact.c index 68df79b0bfa..ddc1d855014 100644 --- a/Utilities/IpFunc/ScFact.c +++ b/Utilities/IpFunc/ScFact.c @@ -1,66 +1,60 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function scales an image with a factor for all directions + * this function scales an image with a factor for all directions */ -/** this function scales an image with a factor for all directions +/** this function scales an image with a factor for all directions * - * @param pic_old pointer to the image - * @param sc_fact vector that contains the scaling factors + * @param pic_old pointer to the image + * @param sc_fact vector that contains the scaling factors * @param sc_kind parameter for the kind of interpolation * @arg @c mitkIpFuncScaleNN: next neighbour interpolation * qarg @c mitkIpFuncScaleBl: bilinear interpolation - * + * * @return pointer to the scaled image * * AUTHOR & DATE */ - + /* include-files */ #include "mitkIpFuncP.h" @@ -70,17 +64,17 @@ mitkIpPicDescriptor *mitkIpFuncScFact ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t sc_kind ) ; #ifndef DOXYGEN_IGNORE - + mitkIpPicDescriptor *mitkIpFuncScFact ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t factor, - mitkIpFuncFlagI_t sc_kind ) + mitkIpFuncFlagI_t sc_kind ) { mitkIpUInt4_t i; /* loop index */ mitkIpPicDescriptor *pic_new; /* pointer to scaled image */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - + /* allocate pic_new */ pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); @@ -95,7 +89,7 @@ mitkIpPicDescriptor *mitkIpFuncScFact ( mitkIpPicDescriptor *pic_old, pic_new->dim = pic_old->dim; for ( i = 0; i < pic_old->dim; i++ ) pic_new->n[i] = pic_old->n[i] * factor; - + /* call scaling routines */ if ( sc_kind == mitkIpFuncScaleNN ) @@ -105,16 +99,16 @@ mitkIpPicDescriptor *mitkIpFuncScFact ( mitkIpPicDescriptor *pic_old, else { mitkIpPicFree ( pic_new ); - _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); } /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return( pic_new ); } #endif diff --git a/Utilities/IpFunc/ScNN.c b/Utilities/IpFunc/ScNN.c index 28cf9adace0..243ddb4af36 100644 --- a/Utilities/IpFunc/ScNN.c +++ b/Utilities/IpFunc/ScNN.c @@ -1,76 +1,70 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * internal only. used by Scale.c */ /*@file - * this function scales the first image to the size of the second image - * using next-neighbour interpolation + * this function scales the first image to the size of the second image + * using next-neighbour interpolation */ -/* @brief scales the first image to the size of the second image - * using next-neighbour interpolation +/* @brief scales the first image to the size of the second image + * using next-neighbour interpolation * - * @param pic_old pointer to the image that should be scaled - * @param pic_new pointer to the scaled image ( contains the information + * @param pic_old pointer to the image that should be scaled + * @param pic_new pointer to the scaled image ( contains the information * for the scaling in th header ) * !!! Header must contain all information when calling !!! * !!! function !!! * - * @return pointer to the scaled image + * @return pointer to the scaled image * * AUTHOR & DATE */ /* include-Files */ -#include "mitkIpFuncP.h" - -mitkIpPicDescriptor *_mitkIpFuncScNN( mitkIpPicDescriptor *pic_old, +#include "mitkIpFuncP.h" + +mitkIpPicDescriptor *_mitkIpFuncScNN( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_new ) ; #ifndef DOXYGEN_IGNORE @@ -153,14 +147,14 @@ mitkIpPicDescriptor *_mitkIpFuncScNN( mitkIpPicDescriptor *pic_old, */ /* ------------------------------------------------------------------- */ -mitkIpPicDescriptor *_mitkIpFuncScNN( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_new ) +mitkIpPicDescriptor *_mitkIpFuncScNN( mitkIpPicDescriptor *pic_old, + mitkIpPicDescriptor *pic_new ) { mitkIpUInt4_t i; /* loopindex */ mitkIpUInt4_t n[_mitkIpPicNDIM]; /* no. of pixels in each dimension*/ mitkIpFloat8_t weights[_mitkIpPicNDIM]; - mitkIpUInt4_t size[_mitkIpPicNDIM]; + mitkIpUInt4_t size[_mitkIpPicNDIM]; char is_color=0; @@ -174,18 +168,18 @@ mitkIpPicDescriptor *_mitkIpFuncScNN( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( _mitkIpFuncError ( pic_new ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( pic_old->dim != pic_new->dim ) + if ( pic_old->dim != pic_new->dim ) { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); } /* initialisation of vectors */ - - for ( i = 0; i < pic_new->dim; i++ ) - n[i] = pic_new->n[i]; - - for ( i = pic_new->dim; i < _mitkIpPicNDIM; i++ ) + + for ( i = 0; i < pic_new->dim; i++ ) + n[i] = pic_new->n[i]; + + for ( i = pic_new->dim; i < _mitkIpPicNDIM; i++ ) n[i] = 1; size[0] = 1*(is_color!=0?3:1); @@ -193,12 +187,12 @@ mitkIpPicDescriptor *_mitkIpFuncScNN( mitkIpPicDescriptor *pic_old, size[i] = size[i-1] * pic_old->n[i-1]; for ( i = 0; i < pic_old->dim; i++ ) - weights[i] = ( mitkIpFloat8_t ) ( pic_old->n[i] - 1 ) / + weights[i] = ( mitkIpFloat8_t ) ( pic_old->n[i] - 1 ) / ( mitkIpFloat8_t ) ( pic_new->n[i] - 1 ); - + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) weights[i] = 0.; - + /* add header information for pic_new and allocate memory */ pic_new->bpe = pic_old->bpe*(is_color!=0?3:1); @@ -208,18 +202,18 @@ mitkIpPicDescriptor *_mitkIpFuncScNN( mitkIpPicDescriptor *pic_old, if ( pic_new->data == NULL ) { mitkIpPicFree ( pic_new ); - _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - + /* macro to scale an image */ if(is_color==0) { - mitkIpPicFORALL_4 ( SCNN, pic_old, pic_new, size, weights, n ); + mitkIpPicFORALL_4 ( SCNN, pic_old, pic_new, size, weights, n ); } else { - mitkIpPicFORALL_4 ( SCNNCOLOR, pic_old, pic_new, size, weights, n ); + mitkIpPicFORALL_4 ( SCNNCOLOR, pic_old, pic_new, size, weights, n ); pic_old->bpe=pic_new->bpe=24; } diff --git a/Utilities/IpFunc/Scale.c b/Utilities/IpFunc/Scale.c index 76900ddd0bb..396aff12a4b 100644 --- a/Utilities/IpFunc/Scale.c +++ b/Utilities/IpFunc/Scale.c @@ -1,66 +1,60 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function scales an image + * this function scales an image */ /** @brief this function scales an image * - * @param pic_old pointer to the image + * @param pic_old pointer to the image * @param sc_fact vector that contains the scaling factors for each dimension * @param sc_kind parameter for the kind of interpolation * @arg @c mitkIpFuncScaleNN: next neighbour interpolation * @arg @c mitkIpFuncScaleBl: bilinear interpolation - * + * * @return pointer to the scaled image * * AUTHOR AND DATE */ - + /* include-files */ #include "mitkIpFuncP.h" @@ -69,10 +63,10 @@ mitkIpPicDescriptor *mitkIpFuncScale ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t sc_fact[_mitkIpPicNDIM], mitkIpFuncFlagI_t sc_kind ) ; #ifndef DOXYGEN_IGNORE - + mitkIpPicDescriptor *mitkIpFuncScale ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t sc_fact[_mitkIpPicNDIM], - mitkIpFuncFlagI_t sc_kind ) + mitkIpFuncFlagI_t sc_kind ) { mitkIpUInt4_t i; /* loop index */ @@ -93,7 +87,7 @@ mitkIpPicDescriptor *mitkIpFuncScale ( mitkIpPicDescriptor *pic_old, if(is_color) pic_old->bpe=24; - + /* allocate pic_new */ pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); @@ -107,17 +101,17 @@ mitkIpPicDescriptor *mitkIpFuncScale ( mitkIpPicDescriptor *pic_old, pic_new->dim = pic_old->dim; for ( i = 0; i < pic_old->dim; i++ ) - pic_new->n[i] = + pic_new->n[i] = ( sc_fact[i] == 0 ) ? pic_old->n[i] : ( mitkIpUInt4_t ) ( sc_fact[i] * pic_old->n[i] ); - + /* call scaling routines */ if ( sc_kind == mitkIpFuncScaleNN ) pic_new = _mitkIpFuncScNN ( pic_old, pic_new ); else if ( sc_kind == mitkIpFuncScaleBl ) { - pic_new = _mitkIpFuncScBL ( pic_old, pic_new ); + pic_new = _mitkIpFuncScBL ( pic_old, pic_new ); /*printf("using NN due to error in _mitkIpFuncScaleBL ... "); pic_new = _mitkIpFuncScNN ( pic_old, pic_new );*/ } @@ -131,9 +125,9 @@ mitkIpPicDescriptor *mitkIpFuncScale ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return( pic_new ); } #endif diff --git a/Utilities/IpFunc/SelInv.c b/Utilities/IpFunc/SelInv.c index 0f0cc60af65..46356356785 100644 --- a/Utilities/IpFunc/SelInv.c +++ b/Utilities/IpFunc/SelInv.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function sets the greyvalues of all pixels @e inside a given @@ -79,7 +73,7 @@ mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include files */ @@ -114,7 +108,7 @@ mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t gv_low, mitkIpFloat8_t gv_up, mitkIpFloat8_t gv, - mitkIpPicDescriptor *pic_return ) + mitkIpPicDescriptor *pic_return ) { mitkIpFloat8_t min_gv, max_gv; /* max and min posiible greyvalues */ mitkIpPicDescriptor *pic_new; /* pointer to transformed image */ @@ -129,17 +123,17 @@ mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( gv_low > gv_up ) + if ( gv_low > gv_up ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - if ( min_gv > gv_low || max_gv < gv_up ) + if ( min_gv > gv_low || max_gv < gv_up ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - if ( min_gv > gv || max_gv < gv ) + if ( min_gv > gv || max_gv < gv ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -148,7 +142,7 @@ mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, /* allocate memory for the transformed image */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* macro to transform the image */ @@ -156,8 +150,8 @@ mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, mitkIpPicFORALL_3 ( SELECT, pic_old, gv_low, gv_up, gv ); mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/SelMM.c b/Utilities/IpFunc/SelMM.c index ee50d764a5a..0c5a9942713 100644 --- a/Utilities/IpFunc/SelMM.c +++ b/Utilities/IpFunc/SelMM.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function sets the greyvalues of all pixels outside a given @@ -73,13 +67,13 @@ mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t gv_low, - mitkIpFloat8_t gv_up, + mitkIpFloat8_t gv_up, mitkIpPicDescriptor *pic_return ) ; #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -103,7 +97,7 @@ mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, (( help > ( type ) gv_low ) ? help : ( type ) gv_low ) : \ ( type ) gv_up ; \ } \ -} +} /* ------------------------------------------------------------------------ */ /* @@ -112,8 +106,8 @@ mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t gv_low, - mitkIpFloat8_t gv_up, - mitkIpPicDescriptor *pic_return ) + mitkIpFloat8_t gv_up, + mitkIpPicDescriptor *pic_return ) { mitkIpFloat8_t min_gv, max_gv; /* max and min possible greyvalues */ mitkIpPicDescriptor *pic_new; /* pointer to transformed image */ @@ -128,13 +122,13 @@ mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( gv_low >= gv_up ) + if ( gv_low >= gv_up ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - - if ( min_gv > gv_low || max_gv < gv_up ) + + if ( min_gv > gv_low || max_gv < gv_up ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -150,8 +144,8 @@ mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, mitkIpPicFORALL_4 ( SELECT, pic_old, gv_low, gv_up, min_gv, max_gv ); mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/Select.c b/Utilities/IpFunc/Select.c index 05481af647b..c720c793d78 100644 --- a/Utilities/IpFunc/Select.c +++ b/Utilities/IpFunc/Select.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function sets the greyvalues of all pixels @e outside a given @@ -80,7 +74,7 @@ mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -114,7 +108,7 @@ mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t gv_low, mitkIpFloat8_t gv_up, mitkIpFloat8_t gv, - mitkIpPicDescriptor *pic_return ) + mitkIpPicDescriptor *pic_return ) { mitkIpFloat8_t min_gv, max_gv; /* max and min possible greyvalues */ mitkIpPicDescriptor *pic_new; /* pointer to transformed image */ @@ -129,19 +123,19 @@ mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( gv_low > gv_up ) + if ( gv_low > gv_up ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } -/* iw - commented out on 3.8.2000 - if ( min_gv > gv_low || max_gv < gv_up ) +/* iw - commented out on 3.8.2000 + if ( min_gv > gv_low || max_gv < gv_up ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } */ - if ( min_gv > gv || max_gv < gv ) + if ( min_gv > gv || max_gv < gv ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -150,7 +144,7 @@ mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, /* allocate memory for the transformed image */ - pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); + pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); /* macro to transform the image */ @@ -158,8 +152,8 @@ mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, mitkIpPicFORALL_3 ( SELECT, pic_old, gv_low, gv_up, gv ); mitkIpFuncCopyTags(pic_new, pic_old); - - + + return ( pic_new ); } diff --git a/Utilities/IpFunc/SetErrno.c b/Utilities/IpFunc/SetErrno.c index acf4f8d8924..a19276cd0e7 100644 --- a/Utilities/IpFunc/SetErrno.c +++ b/Utilities/IpFunc/SetErrno.c @@ -1,56 +1,50 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this functions sets a global error-number (mitkIpFuncErrno) if an error - * occured + * occured */ /** this functions sets a global error-number (mitkIpFuncErrno) if an error - * occured + * occured * * @param error_no number which describes the error * @@ -67,7 +61,7 @@ #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)_mitkIpFuncSetErrno\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)_mitkIpFuncSetErrno\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -91,7 +85,7 @@ void _mitkIpFuncSetErrno ( int error_no ) /* ------------------------------------------------------------------- */ /* -** mitkIpFuncPError +** mitkIpFuncPError */ @@ -105,7 +99,7 @@ void mitkIpFuncPError ( char *string ) err_string = "ipFunc: no error occured"; break; case mitkIpFuncNOPIC_ERROR : - err_string = "no image"; + err_string = "no image"; break; case mitkIpFuncDIM_ERROR : err_string = "ipFunc: incorrect dimension of image"; diff --git a/Utilities/IpFunc/SetTag.c b/Utilities/IpFunc/SetTag.c index 517f8fdfd9d..557f532d572 100644 --- a/Utilities/IpFunc/SetTag.c +++ b/Utilities/IpFunc/SetTag.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * this function sets a tag into an image @@ -58,13 +52,13 @@ * @param size size of the whole data * @param el_size size of one element of the data * @param data pointer to the data - * @return + * @return * @arg 0 : error (pic==NULL or data==NULL) * @arg 1 : new tag added * @arg 2 : tag replaced * * @b Examples: - * @code + * @code * mitkIpFuncSetTag(pic, "OUTSIDE_VALUE", mitkIpPicInt, sizeof(mitkIpInt4_t), 1, &outside_value); * * char startpoint[11]; @@ -76,12 +70,11 @@ * * @author Ivo (based on Gerald's NewTag) * @date 26.06.2000 - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ #include "mitkIpFuncP.h" -int mitkIpFuncSetTag( mitkIpPicDescriptor *pic, char *name, int type, int size, +int mitkIpFuncSetTag( mitkIpPicDescriptor *pic, char *name, int type, int size, int el_size, void *data ) { mitkIpPicTSV_t *tsv; diff --git a/Utilities/IpFunc/ShapeInterpolation.c b/Utilities/IpFunc/ShapeInterpolation.c index b41b3a0ba70..eb8bbe11dae 100644 --- a/Utilities/IpFunc/ShapeInterpolation.c +++ b/Utilities/IpFunc/ShapeInterpolation.c @@ -1,10 +1,50 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + #include #include #include "mitkIpFuncP.h" /*! The algorithm implements the shape-based interpolation technique. -Further detailed information can be found in: +Further detailed information can be found in: G.T. Herman, J. Zheng, C.A. Bucholtz: "Shape-based interpolation" IEEE Computer Graphics & Applications, pp. 69-79,May 1992 @@ -73,9 +113,9 @@ static mitkIpInt2_t distance (const mitkIpInt2_t* const old_distance, const mitk /*! \brief Computes an intermediate image by linear shape-based interpolation. @param pic1,pic2 the images which enclose the intermediate image -@param threshold the threshold which extracts the shape in the images +@param threshold the threshold which extracts the shape in the images @param ratio the ratio the ratio specifies the weights for interpolation, i.e. the intermediate -image equals to pic1 or pic2 if the ratio is zero and one, respectively +image equals to pic1 or pic2 if the ratio is zero and one, respectively @returns the intermediate image */ mitkIpPicDescriptor* @@ -88,14 +128,14 @@ mitkIpFuncShapeInterpolation (mitkIpPicDescriptor* pic1, mitkIpPicDescriptor* pi if (result == NULL) { return NULL; } - result->data = malloc (_mitkIpPicSize (result)); + result->data = malloc (_mitkIpPicSize (result)); if (result->data == NULL) { _mitkIpFuncSetErrno (mitkIpFuncMALLOC_ERROR); - mitkIpPicFree (result); + mitkIpPicFree (result); return NULL; } - pic[0] = setup (pic1, threshold); - pic[1] = setup (pic2, threshold); + pic[0] = setup (pic1, threshold); + pic[1] = setup (pic2, threshold); mitkIpPicFORALL_2(INTERPOLATE, result, pic[0], pic[1]); @@ -139,11 +179,11 @@ setup (mitkIpPicDescriptor* pic_old, const mitkIpFloat4_t threshold) dst = (mitkIpInt2_t *) pic->data; for (x = 0; x < pic->n[0]; x++) { *dst++ = -MAX; - } + } dst = (mitkIpInt2_t *) pic->data + _mitkIpPicElements (pic) - pic->n[0]; for (x = 0; x < pic->n[0]; x++) { *dst++ = -MAX; - } + } dst = (mitkIpInt2_t *) pic->data; for (y = 0; y < pic->n[1]; y++) { *dst = -MAX; @@ -165,7 +205,7 @@ setup (mitkIpPicDescriptor* pic_old, const mitkIpFloat4_t threshold) *dst = -5; } else if ((dst[0] > dst[1]) || (dst[0] > dst[pic->n[0]])) { *dst = 5; - } + } dst++; } dst += 2; @@ -179,8 +219,8 @@ setup (mitkIpPicDescriptor* pic_old, const mitkIpFloat4_t threshold) *dst = -5; } else if ((dst[0] > dst[-1]) || (dst[0] > dst[-pic->n[0]])) { *dst = 5; - } - } + } + } } } return pic; diff --git a/Utilities/IpFunc/Shp.c b/Utilities/IpFunc/Shp.c index f1d4383f551..7361bc744f0 100644 --- a/Utilities/IpFunc/Shp.c +++ b/Utilities/IpFunc/Shp.c @@ -1,65 +1,59 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function performs a high pass filter using 2D or 3D filtering + * this function performs a high pass filter using 2D or 3D filtering * masks */ -/** @brief performs a high pass filter using 2D or 3D filtering +/** @brief performs a high pass filter using 2D or 3D filtering * masks * - * @param pic_old pointer to the image that should be convolved - * @param dim_mask dimension of filtering mask - * @param border tells how the edge is transformed - * @arg @c mitkIpFuncBorderOld : original greyvalues + * @param pic_old pointer to the image that should be convolved + * @param dim_mask dimension of filtering mask + * @param border tells how the edge is transformed + * @arg @c mitkIpFuncBorderOld : original greyvalues * @arg @c mitkIpFuncBorderZero : edge is set to zero * @param mask_nr tells which mask should be taken * - * @return pointer to the tranformed image + * @return pointer to the tranformed image * * USES * function mitkIpFuncConv: convolves image with mask @@ -69,18 +63,18 @@ /* include-Files */ -#include "mitkIpFuncP.h" - -mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +#include "mitkIpFuncP.h" + +mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border, mitkIpUInt4_t mask_nr ) ; #ifndef DOXYGEN_IGNORE -mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border, - mitkIpUInt4_t mask_nr ) + mitkIpUInt4_t mask_nr ) { mitkIpPicDescriptor *pic_new; /* convolved image */ @@ -95,27 +89,27 @@ mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, mitkIpInt2_t mask3[] = /* 3D masks */ { 0, 0, 0, 0, -1, 0, 0, 0, 0, /* mask 0 */ - 0, -1, 0, -1, 7, -1, 0, -1, 0, - 0, 0, 0, 0, -1, 0, 0, 0, 0, + 0, -1, 0, -1, 7, -1, 0, -1, 0, + 0, 0, 0, 0, -1, 0, 0, 0, 0, 1, 1, 1, 1, -4, 1, 1, 1, 1, /* mask 1 */ - 1, -4, 1, -4, 5, -4, 1, -4, 1, - 1, 1, 1, 1, -4, 1, 1, 1, 1, + 1, -4, 1, -4, 5, -4, 1, -4, 1, + 1, 1, 1, 1, -4, 1, 1, 1, 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, /* mask 2 */ - -1, -1, -1, -1, 27, -1, -1, -1, -1, + -1, -1, -1, -1, 27, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; /* check whether data are correct */ if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( pic_old->dim < dim_mask || dim_mask < 2 ) + if ( pic_old->dim < dim_mask || dim_mask < 2 ) { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); } - if ( /* mask_nr < 0 || */ mask_nr > 2 ) + if ( /* mask_nr < 0 || */ mask_nr > 2 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -124,7 +118,7 @@ mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, /* initialisation of pic_mask */ pic_mask = mitkIpPicNew (); - if ( pic_mask == NULL ) + if ( pic_mask == NULL ) { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); @@ -132,12 +126,12 @@ mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, pic_mask->type = mitkIpPicInt; pic_mask->bpe = 16; - pic_mask->dim = dim_mask; + pic_mask->dim = dim_mask; for ( i = 0; i < dim_mask; i++ ) pic_mask->n[i] = 3; - if ( dim_mask == 3 ) - { + if ( dim_mask == 3 ) + { pic_mask->data = mask3 + mask_nr * 27; } else if ( dim_mask == 2 ) @@ -162,9 +156,9 @@ mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return pic_new; } #endif diff --git a/Utilities/IpFunc/Skewness.c b/Utilities/IpFunc/Skewness.c index 26f2e6d9b02..e0ca5872c79 100644 --- a/Utilities/IpFunc/Skewness.c +++ b/Utilities/IpFunc/Skewness.c @@ -1,69 +1,63 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function calculates the skewness (Schiefe) of all + * this function calculates the skewness (Schiefe) of all * greyvalues in an image */ -/** @brief calculates the skewness (Schiefe) of all +/** @brief calculates the skewness (Schiefe) of all * greyvalues in an image * - * @param pic pointer to the image - * + * @param pic pointer to the image + * * @return skewness of image * * @author Steffen Gundel */ - - + + /* include-files */ #include "mitkIpFuncP.h" - + /* definition of extreme value macro */ mitkIpFloat8_t mitkIpFuncSkewness ( mitkIpPicDescriptor *pic ); @@ -85,10 +79,10 @@ mitkIpFloat8_t mitkIpFuncSkewness ( mitkIpPicDescriptor *pic ); skew; \ } \ } - + /* ========================================================== */ /* -** function picVar : calculates the mean value (mean) +** function picVar : calculates the mean value (mean) ** of an image (pic) */ /* ========================================================== */ @@ -96,9 +90,9 @@ mitkIpFloat8_t mitkIpFuncSkewness ( mitkIpPicDescriptor *pic ); mitkIpFloat8_t mitkIpFuncSkewness ( mitkIpPicDescriptor *pic ) { - mitkIpFloat8_t var; - mitkIpFloat8_t mean, std; - mitkIpFloat8_t skew; + mitkIpFloat8_t var; + mitkIpFloat8_t mean, std; + mitkIpFloat8_t skew; /* check image data */ @@ -108,12 +102,12 @@ mitkIpFloat8_t mitkIpFuncSkewness ( mitkIpPicDescriptor *pic ) if ( _mitkIpPicElements ( pic ) == 1 ) var = 0; else { - + mean = mitkIpFuncMean ( pic ); std = mitkIpFuncSDev( pic ); - mitkIpPicFORALL_2( SKEWNESS, pic, mean, skew ); - + mitkIpPicFORALL_2( SKEWNESS, pic, mean, skew ); + var = skew / (( mitkIpFloat8_t ) (( _mitkIpPicElements ( pic ) - 1 ) *std*std*std)); } diff --git a/Utilities/IpFunc/SkewnessR.c b/Utilities/IpFunc/SkewnessR.c index 4a704b54fbf..e132e6d9deb 100644 --- a/Utilities/IpFunc/SkewnessR.c +++ b/Utilities/IpFunc/SkewnessR.c @@ -1,61 +1,55 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function calculates the skewness (Schiefe) of all + * this function calculates the skewness (Schiefe) of all * greyvalues included by a rectangle */ -/** @brief calculates the skewness (Schiefe) of all +/** @brief calculates the skewness (Schiefe) of all * greyvalues included by a rectangle * - * The rectangle is described by a vector with the coordinates of the + * The rectangle is described by a vector with the coordinates of the * upper left corner and a vector of its length in each direction * - * @param pic_old pointer to the image + * @param pic_old pointer to the image * @param begin vector with the beginning coordinates of the window * @param length vector with the length of the window in each direction * @@ -63,31 +57,31 @@ * * @author Steffen Gundel */ - + /* include-files */ #include "mitkIpFuncP.h" - + /* ========================================================== */ /* -** function picVar : calculates the mean value (mean) +** function picVar : calculates the mean value (mean) ** of an image (pic) */ /* ========================================================== */ mitkIpFloat8_t mitkIpFuncSkewnessR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ) { - mitkIpFloat8_t var; + mitkIpFloat8_t var; mitkIpPicDescriptor *pic_help; pic_help = mitkIpFuncWindow ( pic_old, begin, length ); - + var = mitkIpFuncSkewness ( pic_help ); mitkIpPicFree ( pic_help ); return var ; -} +} diff --git a/Utilities/IpFunc/Sobel.c b/Utilities/IpFunc/Sobel.c index cc346434385..c54dc7b7fb6 100644 --- a/Utilities/IpFunc/Sobel.c +++ b/Utilities/IpFunc/Sobel.c @@ -1,63 +1,57 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs a 3*3 nonlinear edge enhancement operation - * using a sobel operator. The operator could be used with 2D and 3D - * filtering masks. + * using a sobel operator. The operator could be used with 2D and 3D + * filtering masks. */ /** @brief performs a 3*3 nonlinear edge enhancement operation - * using a sobel operator. The operator could be used with 2D and 3D - * filtering masks. + * using a sobel operator. The operator could be used with 2D and 3D + * filtering masks. * - * @param pic_old pointer to the image that should be convolved + * @param pic_old pointer to the image that should be convolved * @param mask pointer to the mask that is used for convolution - * @param border tells how the edge is transformed - * @arg @c mitkIpFuncBorderOld : original greyvalues + * @param border tells how the edge is transformed + * @arg @c mitkIpFuncBorderOld : original greyvalues * @arg @c mitkIpFuncBorderZero : edge is set to minimal greyvalue * * @return pointer to the transformed image @@ -67,13 +61,13 @@ /* include-Files */ -#include "mitkIpFuncP.h" +#include "mitkIpFuncP.h" -mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); #ifndef DOXYGEN_IGNORE - + /* definition of macros */ #define SOBEL( typ, pic, size, mask_anz, m ) \ @@ -140,13 +134,13 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, /* ------------------------------------------------------------------- */ /* -** function mitkIpFuncSobel: -** +** function mitkIpFuncSobel: +** */ /* ------------------------------------------------------------------- */ -mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ) { @@ -155,11 +149,11 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, mitkIpInt4_t offset, off_mask; mitkIpUInt4_t i, j; /* loopindex */ mitkIpUInt4_t pos; - mitkIpUInt1_t mask_anz; /* number of masks */ + mitkIpUInt1_t mask_anz; /* number of masks */ mitkIpInt4_t n[_mitkIpPicNDIM]; - mitkIpInt4_t ind[_mitkIpPicNDIM]; /* vector of loop indices (image) */ + mitkIpInt4_t ind[_mitkIpPicNDIM]; /* vector of loop indices (image) */ mitkIpFuncMasc_t *m; /* length of mask and offsets */ - mitkIpUInt4_t size[_mitkIpPicNDIM]; + mitkIpUInt4_t size[_mitkIpPicNDIM]; mitkIpInt2_t sobel2[] = /* 2D Sobel mask */ { 1, 0, -1, 2, 0, -2, 1, 0, -1, 1, 2, 1, 0, 0, 0, -1, -2, -1 }; @@ -168,19 +162,19 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, 1, 0, -1, 2, 0, -2, 1, 0, -1, 1, 0, -1, 2, 0, -2, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 2, 0, -2, 2, 0, -2, 2, 0, -2, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - - 1, 2, 1, 0, 0, 0, -1, -2, -1, - 1, 2, 1, 0, 0, 0, -1, -2, -1, - 1, 2, 1, 0, 0, 0, -1, -2, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 2, 0, -2, 2, 0, -2, 2, 0, -2, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + + 1, 2, 1, 0, 0, 0, -1, -2, -1, + 1, 2, 1, 0, 0, 0, -1, -2, -1, + 1, 2, 1, 0, 0, 0, -1, -2, -1, 1, 1, 1, 0, 0, 0, -1, -1, -1, 2, 2, 2, 0, 0, 0, -2, -2, -2, 1, 1, 1, 0, 0, 0, -1, -1, -1, - 1, 2, 1, 1, 2, 1, 1, 2, 1, + 1, 2, 1, 1, 2, 1, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -2, -1, -1, -2, -1, -1, -2, -1, @@ -192,7 +186,7 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( ( pic_old->dim < dim_mask ) || ( dim_mask < 1 ) ) - { + { _mitkIpFuncSetErrno ( mitkIpFuncDIMMASC_ERROR ); return ( mitkIpFuncERROR ); } @@ -200,8 +194,8 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, /* initialisation of pic_mask */ pic_mask = mitkIpPicNew (); - if ( pic_mask == NULL ) - { + if ( pic_mask == NULL ) + { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } @@ -212,11 +206,11 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, for ( i = 0; i < dim_mask; i++ ) pic_mask->n[i] = 3; - if ( dim_mask == 3 ) - { + if ( dim_mask == 3 ) + { mask_anz = 6; pic_mask->n[dim_mask] = mask_anz; - pic_mask->data = sobel3; + pic_mask->data = sobel3; } else if ( dim_mask == 2 ) { @@ -225,7 +219,7 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, pic_mask->data = sobel2; } else - { + { pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); @@ -233,17 +227,17 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, } /* initialisation of vectors */ - + for ( i = 0; i < dim_mask; i++ ) - n[i] = 2; - + n[i] = 2; + for ( i = dim_mask; i < _mitkIpPicNDIM; i++ ) n[i] = 0; /* allocate mask structure */ m = malloc ( sizeof ( mitkIpFuncMasc_t ) ); - if ( m == NULL ) + if ( m == NULL ) { pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); @@ -251,7 +245,7 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, return NULL; } m->off_vekt = malloc ( _mitkIpPicElements( pic_mask ) * sizeof ( mitkIpInt4_t ) ); - if ( m->off_vekt == NULL ) + if ( m->off_vekt == NULL ) { free ( m ); pic_mask->data = NULL; @@ -260,7 +254,7 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, return NULL; } m->mask_vekt = malloc ( _mitkIpPicElements( pic_mask ) * sizeof ( mitkIpFloat8_t ) ); - if ( m->mask_vekt == NULL ) + if ( m->mask_vekt == NULL ) { free ( m->off_vekt ); free ( m ); @@ -268,17 +262,17 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return NULL; } - + /* create a new picture, copy the header, allocate memory */ - if ( border == mitkIpFuncBorderOld ) + if ( border == mitkIpFuncBorderOld ) pic_new = mitkIpPicClone ( pic_old ); else if ( border == mitkIpFuncBorderZero ) - { + { pic_new = mitkIpPicCopyHeader ( pic_old, 0 ); pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); pic_mask->data = NULL; @@ -290,17 +284,17 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, if ( pic_new == NULL ) { - _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); free ( m->off_vekt ); free ( m ); return ( mitkIpFuncERROR ); } - + /* calculate offset vector for the compressed mask */ - m->length = 0; + m->length = 0; size[0] = 1; for ( i = 1; i < pic_old->dim; i++ ) size[i] = size[i-1] * pic_old->n[i-1]; @@ -319,23 +313,23 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, m->off_vekt[m->length] = offset; m->length++; } - off_mask++; + off_mask++; } - - /* remove elements that are zero from mask */ - - pos = 0; - for ( i = 0; i < m->length; i++ ) - { - while ( (( mitkIpInt2_t * )pic_mask->data)[pos] == 0 ) pos++; - m->mask_vekt[i] = ( mitkIpFloat8_t )(( mitkIpInt2_t * )pic_mask->data)[pos]; - pos++; - } - - + + /* remove elements that are zero from mask */ + + pos = 0; + for ( i = 0; i < m->length; i++ ) + { + while ( (( mitkIpInt2_t * )pic_mask->data)[pos] == 0 ) pos++; + m->mask_vekt[i] = ( mitkIpFloat8_t )(( mitkIpInt2_t * )pic_mask->data)[pos]; + pos++; + } + + /* macro for the sobel operator */ - mitkIpPicFORALL_3 ( SOBEL, pic_old, size, mask_anz, m ); + mitkIpPicFORALL_3 ( SOBEL, pic_old, size, mask_anz, m ); pic_mask->data = NULL; mitkIpPicFree ( pic_mask ); @@ -346,9 +340,9 @@ mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return pic_new; } #endif diff --git a/Utilities/IpFunc/Sqrt.c b/Utilities/IpFunc/Sqrt.c index 9ddb5f08d1e..2cc5b7d7c77 100644 --- a/Utilities/IpFunc/Sqrt.c +++ b/Utilities/IpFunc/Sqrt.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this functions calculates the square root of all pixels @@ -79,7 +73,7 @@ mitkIpPicDescriptor *mitkIpFuncSqrt ( mitkIpPicDescriptor *pic_1, { \ mitkIpPicFORALL_2 ( SQRT2, pic_new, pic_1, type_1 ); \ } \ - + #define SQRT2( type_n, pic_new, pic_1, type_1 ) \ { \ @@ -109,7 +103,7 @@ mitkIpPicDescriptor *mitkIpFuncSqrt ( mitkIpPicDescriptor *pic_1, mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpUInt4_t i; /* loop index */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ /* check image data */ @@ -135,17 +129,17 @@ mitkIpPicDescriptor *mitkIpFuncSqrt ( mitkIpPicDescriptor *pic_1, pic_new->dim = pic_1->dim; pic_new->bpe = 64; pic_new->type = mitkIpPicFloat; - for ( i = 0; i < pic_new->dim; i++ ) + for ( i = 0; i < pic_new->dim; i++ ) pic_new->n[i] = pic_1->n[i]; } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); } if ( pic_new == NULL ) - { + { _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } @@ -166,7 +160,7 @@ mitkIpPicDescriptor *mitkIpFuncSqrt ( mitkIpPicDescriptor *pic_1, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_1); - + return pic_new; } #endif diff --git a/Utilities/IpFunc/SubC.c b/Utilities/IpFunc/SubC.c index 1805d4d4e70..79bb2c42ae2 100644 --- a/Utilities/IpFunc/SubC.c +++ b/Utilities/IpFunc/SubC.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function subtracts an constant from an image @@ -71,7 +65,7 @@ #include "mitkIpFuncP.h" mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); #ifndef DOXYGEN_IGNORE @@ -82,7 +76,7 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, { \ mitkIpPicFORALL_3 ( SUBC2, pic_new, pic_1, type_1, value ); \ } \ - + #define SUBC2( type_n, pic_new, pic_1, type_1, value ) \ { \ mitkIpUInt4_t i, no_elem; \ @@ -121,7 +115,7 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, /* ------------------------------------------------------------------- */ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ) { @@ -129,7 +123,7 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_new; /* pointer to new image */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ @@ -172,7 +166,7 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, if ( pic_old->type == mitkIpPicInt ) { - if ( smax < max_gv && smin > min_gv ) + if ( smax < max_gv && smin > min_gv ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } @@ -206,22 +200,22 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncExtT ( pic_new->type, pic_new->bpe, &min_gv, &max_gv ); } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_old->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_old, NULL ); } - else - { + else + { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } - + } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); return ( mitkIpFuncERROR ); @@ -232,7 +226,7 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } - + if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); if ( pic_new->data == NULL ) @@ -252,9 +246,9 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return pic_new; } #endif diff --git a/Utilities/IpFunc/SubI.c b/Utilities/IpFunc/SubI.c index 2347b1b563f..3912d08d91c 100644 --- a/Utilities/IpFunc/SubI.c +++ b/Utilities/IpFunc/SubI.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function subtracts two images @@ -82,7 +76,7 @@ mitkIpPicDescriptor *mitkIpFuncSubI ( mitkIpPicDescriptor *pic_1, { \ mitkIpPicFORALL_3 ( SUBI2, pic_new, pic_1, pic_2, type_1 ); \ } \ - + #define SUBI2( type_n, pic_new, pic_1, pic_2, type_1 ) \ { \ mitkIpUInt4_t i, no_elem; \ @@ -132,7 +126,7 @@ mitkIpPicDescriptor *mitkIpFuncSubI ( mitkIpPicDescriptor *pic_1, mitkIpUInt4_t i; /* loop index */ mitkIpFloat8_t max_gv; /* max. possible greyvalue */ mitkIpFloat8_t min_gv; /* min. possible greyvalue */ - mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ + mitkIpFloat8_t min1, max1; /* extreme greyvalues of 1. image */ mitkIpFloat8_t min2, max2; /* extreme greyvalues of 2. image */ mitkIpFloat8_t smin, smax; /* product of extreme greyvalues */ @@ -190,7 +184,7 @@ mitkIpPicDescriptor *mitkIpFuncSubI ( mitkIpPicDescriptor *pic_1, if ( pic_1->type == mitkIpPicInt ) { - if ( smax < max_gv && smin > min_gv ) + if ( smax < max_gv && smin > min_gv ) { pic_new = mitkIpPicCopyHeader ( pic_1, NULL ); } @@ -224,24 +218,24 @@ mitkIpPicDescriptor *mitkIpFuncSubI ( mitkIpPicDescriptor *pic_1, _mitkIpFuncExtT ( pic_new->type, pic_new->bpe, &min_gv, &max_gv ); } } - } + } /* change image type of images of type mitkIpPicUInt */ - + else if ( pic_1->type == mitkIpPicFloat ) { pic_new = mitkIpPicCopyHeader ( pic_1, NULL ); } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); } } - else + else { _mitkIpFuncSetErrno ( mitkIpFuncFLAG_ERROR ); - return ( mitkIpFuncERROR ); + return ( mitkIpFuncERROR ); } if ( pic_new == NULL ) @@ -253,7 +247,7 @@ mitkIpPicDescriptor *mitkIpFuncSubI ( mitkIpPicDescriptor *pic_1, if ( keep == mitkIpFuncNoKeep ) pic_new->data = malloc ( _mitkIpPicSize ( pic_new ) ); if ( pic_new->data == NULL ) - { + { mitkIpPicFree ( pic_new ); _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); @@ -269,7 +263,7 @@ mitkIpPicDescriptor *mitkIpFuncSubI ( mitkIpPicDescriptor *pic_1, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_1); - + return pic_new; } #endif diff --git a/Utilities/IpFunc/Thresh.c b/Utilities/IpFunc/Thresh.c index be9d62e2faf..c2edfc4f9e5 100644 --- a/Utilities/IpFunc/Thresh.c +++ b/Utilities/IpFunc/Thresh.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function performs a thresholding operation with a single theshold @@ -57,16 +51,16 @@ * @param pic_return memory used to store return image ( if pic_return == NULL * new memory is allocated ) * - * @return pointer to the transformed image + * @return pointer to the transformed image * * AUTHOR & DATE */ /* include-Files */ -#include "mitkIpFuncP.h" - -mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, +#include "mitkIpFuncP.h" + +mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t threshold, mitkIpPicDescriptor *pic_return ); @@ -85,17 +79,17 @@ mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, ( (( type * ) pic->data ) [i] > ( type ) threshold ) ? \ ( type ) 1 : ( type ) 0; \ } \ -} +} /* ------------------------------------------------------------------- */ /* -** function picThresh: -** +** function picThresh: +** */ /* ------------------------------------------------------------------- */ -mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t threshold, mitkIpPicDescriptor *pic_return ) { @@ -116,7 +110,7 @@ mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, /* test whether threshold is ok */ - if ( threshold < min_gv || threshold > max_gv ) + if ( threshold < min_gv || threshold > max_gv ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -127,7 +121,7 @@ mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, pic_new = _mitkIpFuncMalloc ( pic_old, pic_return, mitkIpOVERWRITE ); if ( pic_new == NULL ) return ( mitkIpFuncERROR ); - + /* macro to invert the picture (for all data types) */ mitkIpPicFORALL( THRESH, pic_old ); @@ -135,8 +129,8 @@ mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - + + return pic_new; } diff --git a/Utilities/IpFunc/Transpose.c b/Utilities/IpFunc/Transpose.c index fffba980efd..2eefa02b818 100644 --- a/Utilities/IpFunc/Transpose.c +++ b/Utilities/IpFunc/Transpose.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this funtion transposes the image @@ -53,13 +47,13 @@ * * @param pic pointer to picture * @param pic_old pointer to old picture, which is not used in this version - * @param permutations_vector indicates the permutation - * @par Example 3 1 2 + * @param permutations_vector indicates the permutation + * @par Example 3 1 2 * @arg third axis will be the first axis * @arg first axis will be the second - * @arg second axis will be the third - * - * @return transposed image + * @arg second axis will be the third + * + * @return transposed image * * $Log$ * Revision 1.3 2003/01/30 14:30:53 mark @@ -87,9 +81,9 @@ /* ** ipFunc includefiles -*/ +*/ #include "mitkIpFuncP.h" - + mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, mitkIpPicDescriptor *pic_old, int *permutations_vector ) @@ -97,13 +91,13 @@ mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncTranspose\tDKFZ (Dept. MBI) $Revision$ "__DATE__ }; -#endif - + static char *what = { "@(#)mitkIpFuncTranspose\tGerman Cancer Research Center (DKFZ) $Revision$ "__DATE__ }; +#endif + -/* +/* ** the action starts here */ mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, @@ -130,7 +124,7 @@ mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, /* - ** create and initialize help vectors + ** create and initialize help vectors */ /* @@ -139,7 +133,7 @@ mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, */ if( permutations_vector == NULL ) { - permutations_vector = (int *) malloc( + permutations_vector = (int *) malloc( pic->dim * sizeof( int )); if (!permutations_vector) return (0); @@ -169,8 +163,8 @@ mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, } - /* - ** take over image header structure and allocate memory + /* + ** take over image header structure and allocate memory */ mitkIpPicFree( pic_old ); pic_return = mitkIpPicCopyHeader( pic, NULL ); @@ -195,7 +189,7 @@ mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, /* ** fill new dimension to pic_return */ - for( i=0; idim; i++ ) + for( i=0; idim; i++ ) pic_return->n[i] = pic->n[ ( permutations_vector[i] - 1 ) ]; /* @@ -208,7 +202,7 @@ mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, } r_size[0] = 1; size[0] = 1; - for( i=1; idim; i++ ) + for( i=1; idim; i++ ) { size[i] = size[i-1] * pic->n[i-1]; r_size[i] = r_size[i-1] * pic_return->n[i-1]; @@ -221,22 +215,22 @@ mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, r_index = (mitkIpUInt4_t **) malloc( _mitkIpPicNDIM * sizeof( mitkIpUInt4_t * ) ); for( i=0; i<_mitkIpPicNDIM; i++) r_index[i] = &( index[i] ); - for( i=0; idim; i++ ) + for( i=0; idim; i++ ) r_index[i] = &( index[ ( permutations_vector[i] - 1 ) ]); - + /* ** Makro for all for-loops and switches for all dimensions (1-8) ** FOR ALL: dimensions, indizes, data types */ - mitkIpPicFORALL_4( mitkIpFuncFORALL, pic, pic_return, index, r_offset, + mitkIpPicFORALL_4( mitkIpFuncFORALL, pic, pic_return, index, r_offset, for( r_offset = *(r_index[0]), i=1; idim; i++ ) r_offset += *(r_index[i]) * r_size[i]; ) - + free( (void *) r_index ); if (default_perm) free ((void *) permutations_vector); diff --git a/Utilities/IpFunc/Var.c b/Utilities/IpFunc/Var.c index 5eaa2a060a8..229ccd7089c 100644 --- a/Utilities/IpFunc/Var.c +++ b/Utilities/IpFunc/Var.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the variance of all greyvalues @@ -52,19 +46,19 @@ /** this function calculates the variance of all greyvalues * in an image * - * @param pic pointer to the image + * @param pic pointer to the image * @param &max result variable: mean greyvalue - * + * * @return mitkIpFuncERROR - if an error occured * @return mitkIpFuncOK - if no error occures * * AUTHOR & DATE */ - + /* include-files */ #include "mitkIpFuncP.h" - + mitkIpFloat8_t mitkIpFuncVar ( mitkIpPicDescriptor *pic ); #ifndef DOXYGEN_IGNORE @@ -85,10 +79,10 @@ mitkIpFloat8_t mitkIpFuncVar ( mitkIpPicDescriptor *pic ); mean_2; \ } \ } - + /* ========================================================== */ /* -** function picVar : calculates the mean value (mean) +** function picVar : calculates the mean value (mean) ** of an image (pic) */ /* ========================================================== */ @@ -96,15 +90,15 @@ mitkIpFloat8_t mitkIpFuncVar ( mitkIpPicDescriptor *pic ); mitkIpFloat8_t mitkIpFuncVar ( mitkIpPicDescriptor *pic ) { - mitkIpFloat8_t var; - mitkIpFloat8_t mean; - mitkIpFloat8_t mean_2; + mitkIpFloat8_t var; + mitkIpFloat8_t mean; + mitkIpFloat8_t mean_2; /* check image data */ if ( _mitkIpFuncError ( pic ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( _mitkIpPicElements ( pic ) == 1 ) + if ( _mitkIpPicElements ( pic ) == 1 ) var = 0; else { @@ -112,8 +106,8 @@ mitkIpFloat8_t mitkIpFuncVar ( mitkIpPicDescriptor *pic ) mean = mitkIpFuncMean ( pic ); - mitkIpPicFORALL_2( MEAN_2, pic, mean, mean_2 ); - + mitkIpPicFORALL_2( MEAN_2, pic, mean, mean_2 ); + var = mean_2 / ( mitkIpFloat8_t ) ( _mitkIpPicElements ( pic ) - 1 ); } diff --git a/Utilities/IpFunc/VarC.c b/Utilities/IpFunc/VarC.c index 3a0811718d6..959bd1c19c8 100644 --- a/Utilities/IpFunc/VarC.c +++ b/Utilities/IpFunc/VarC.c @@ -1,63 +1,57 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function calculates the variance of all greyvalues which are in + * this function calculates the variance of all greyvalues which are in * a circle */ -/** @brief calculates the variance of all greyvalues which are in +/** @brief calculates the variance of all greyvalues which are in * a circle * * @param pic_old pointer to the original image - * @param center pointer to an array that contains the coordinates of the center + * @param center pointer to an array that contains the coordinates of the center * of the circle - * @param radius radius of the circle + * @param radius radius of the circle * - * @return variance of the greyvalues which are included by the circle + * @return variance of the greyvalues which are included by the circle * * AUTHOR & DATE */ @@ -72,7 +66,7 @@ mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -150,7 +144,7 @@ mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t i; /* loop index */ mitkIpFloat8_t mean; mitkIpFloat8_t mean2; - mitkIpFloat8_t var; + mitkIpFloat8_t var; mitkIpUInt4_t count; mitkIpUInt4_t end[_mitkIpPicNDIM]; /* end of window */ mitkIpUInt4_t begin[_mitkIpPicNDIM]; /* beginning of window */ @@ -161,7 +155,7 @@ mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( radius <= 0 ) + if ( radius <= 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -175,7 +169,7 @@ mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - + else begin[i] = help; help = center[i] + radius; @@ -184,9 +178,9 @@ mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - + else end[i] = help + 1; - + centr[i] = center[i]; } @@ -217,7 +211,7 @@ mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, else var = mean2 / ( count - 1 ); - return ( var ); + return ( var ); } #endif diff --git a/Utilities/IpFunc/VarR.c b/Utilities/IpFunc/VarR.c index 1bd95ebefe7..796aa715427 100644 --- a/Utilities/IpFunc/VarR.c +++ b/Utilities/IpFunc/VarR.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the variance of all greyvalues included by a rectangle @@ -50,7 +44,7 @@ /** @brief calculates the variance of all greyvalues included by a rectangle * - * The rectangle is described by a vector with the coordinates of the + * The rectangle is described by a vector with the coordinates of the * upper left corner and a vector of its length in each direction * * @param pic_old pointer to original image @@ -65,17 +59,17 @@ #include "mitkIpFuncP.h" mitkIpFloat8_t mitkIpFuncVarR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif mitkIpFloat8_t mitkIpFuncVarR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ) { diff --git a/Utilities/IpFunc/VarROI.c b/Utilities/IpFunc/VarROI.c index 4dff3775208..2e7b087d3c3 100644 --- a/Utilities/IpFunc/VarROI.c +++ b/Utilities/IpFunc/VarROI.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function calculates the variance of all pixels inside of a polygon @@ -79,14 +73,14 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncVarROI\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)mitkIpFuncVarROI\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /*definition of macros */ -#define MAX( x, y ) ( x > y ) ? x : y -#define MIN( x, y ) ( x < y ) ? x : y +#define MAX( x, y ) ( x > y ) ? x : y +#define MIN( x, y ) ( x < y ) ? x : y #define ROI( type, pic, pic_help, sum, sum2, count ) \ { \ mitkIpBool_t in; \ @@ -127,7 +121,7 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *pol_x, mitkIpUInt4_t *pol_y, - mitkIpUInt4_t no_pts ) + mitkIpUInt4_t no_pts ) { mitkIpFloat8_t var; /* variance of greyvalues in ROI */ mitkIpFloat8_t sum=0; /* sum of greyvalues in ROI */ @@ -165,29 +159,29 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, /* check whether ROI is in image */ - /* Expression is always false. - if ( min_x < 0 ) + /* Expression is always false. + if ( min_x < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } */ - if ( max_x > pic_old->n[0] ) + if ( max_x > pic_old->n[0] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } /* Expression is always false. - if ( min_y < 0 ) + if ( min_y < 0 ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } */ - if ( max_y > pic_old->n[1] ) + if ( max_y > pic_old->n[1] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -197,19 +191,19 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, a = ( mitkIpFloat8_t * ) malloc ( no_pts * sizeof ( mitkIpFloat8_t ) ); if ( !a ) - { + { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } b = ( mitkIpFloat8_t * ) malloc ( no_pts * sizeof ( mitkIpFloat8_t ) ); if ( !b ) - { + { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - + /* Geraden zwischen zwei benachbarten Punkten berechnen */ - + for ( i = 0; i < no_pts-1; i++ ) { diff = ( mitkIpFloat8_t ) pol_x[i+1] - ( mitkIpFloat8_t ) pol_x[i]; @@ -224,7 +218,7 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, a[i] = 0.; } } - diff = ( mitkIpFloat8_t ) pol_x[no_pts-1] - ( mitkIpFloat8_t ) pol_x[0]; + diff = ( mitkIpFloat8_t ) pol_x[no_pts-1] - ( mitkIpFloat8_t ) pol_x[0]; if ( diff ) { a[no_pts-1] = ( ( mitkIpFloat8_t ) pol_y[no_pts-1] - ( mitkIpFloat8_t ) pol_y[0] ) / diff; @@ -235,7 +229,7 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, b[no_pts-1] = 0.; a[no_pts-1] = 0.; } - + /* Function to calculate mean */ sum = mitkIpFuncMeanROI ( pic_old, pol_x, pol_y, no_pts ); @@ -243,8 +237,8 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, /* draw polygon to image */ pic_help = _mitkIpFuncDrawPoly ( pic_old, pol_x, pol_y, no_pts, a, b ); - if ( !pic_help ) - { + if ( !pic_help ) + { free ( a ); free ( b ); return ( mitkIpFuncERROR ); @@ -254,7 +248,7 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, if ( count == 1 ) var = 0; - else + else var = sum2 / ( count - 1 ); free ( a ); @@ -263,7 +257,7 @@ mitkIpFloat8_t mitkIpFuncVarROI ( mitkIpPicDescriptor *pic_old, return ( var ); -} +} #endif diff --git a/Utilities/IpFunc/Window.c b/Utilities/IpFunc/Window.c index 71fe5052601..7266665371f 100644 --- a/Utilities/IpFunc/Window.c +++ b/Utilities/IpFunc/Window.c @@ -1,59 +1,53 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file - * this function copies a rectangular section of an image to a new one + * this function copies a rectangular section of an image to a new one */ -/** @brief copies a rectangular section of an image to a new one +/** @brief copies a rectangular section of an image to a new one * * @param pic_old pointer to the original image - * @param begin pointer to an array that contains the beginning of the + * @param begin pointer to an array that contains the beginning of the * section in each direction - * @param length pointer to an array that contains the length of the section + * @param length pointer to an array that contains the length of the section * in each direction * * @return pointer to the iamge with the section of the iamge @@ -72,7 +66,7 @@ mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* definition of macros */ @@ -144,15 +138,15 @@ mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); for ( i = 0; i < pic_old->dim; i++ ) { - if ( begin[i] < 0 || begin[i] > pic_old->n[i] ) - { + if ( begin[i] < 0 || begin[i] > pic_old->n[i] ) + { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } beg[i] = begin[i]; end[i] = begin[i] + length[i]; if ( length[i] < 0 || end[i] > pic_old->n[i] ) - { + { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } @@ -178,7 +172,7 @@ mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, if ( pic_new == NULL ) { - _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); return ( mitkIpFuncERROR ); } @@ -191,7 +185,7 @@ mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, if ( pic_new->data == NULL ) { mitkIpPicFree ( pic_new ); - _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } @@ -200,9 +194,9 @@ mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return ( pic_new ); } diff --git a/Utilities/IpFunc/WindowR.c b/Utilities/IpFunc/WindowR.c index ff0e0d47d9b..6857acca5ce 100644 --- a/Utilities/IpFunc/WindowR.c +++ b/Utilities/IpFunc/WindowR.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function copies an image to a specified position in another image @@ -52,10 +46,10 @@ * * @param pic_1 pointer to the image into which @a pic_2 should be inserted * @param pic_2 pointer to image that should be inserted - * @param begin pointer to an array that contains the position at which + * @param begin pointer to an array that contains the position at which * @a pic_2 ist inserted to @a pic_1 * - * @return pointer to the new iamge + * @return pointer to the new iamge * * AUTHOR & DATE */ @@ -64,7 +58,7 @@ #include "mitkIpFuncP.h" -mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, +mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, mitkIpPicDescriptor *pic_2, mitkIpUInt4_t *begin, mitkIpFuncFlagI_t keep ); @@ -72,7 +66,7 @@ mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif @@ -131,7 +125,7 @@ mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, */ /* ------------------------------------------------------------------------------ */ -mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, +mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, mitkIpPicDescriptor *pic_2, mitkIpUInt4_t *begin, mitkIpFuncFlagI_t keep ) @@ -146,12 +140,12 @@ mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, if ( _mitkIpFuncError ( pic_1 ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); if ( _mitkIpFuncError ( pic_2 ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); - if ( pic_1->dim != pic_2->dim ) + if ( pic_1->dim != pic_2->dim ) { _mitkIpFuncSetErrno ( mitkIpFuncDIM_ERROR ); return ( mitkIpFuncERROR ); } - if ( pic_1->type != pic_2->type ) + if ( pic_1->type != pic_2->type ) { _mitkIpFuncSetErrno ( mitkIpFuncTYPE_ERROR ); return ( mitkIpFuncERROR ); @@ -161,10 +155,10 @@ mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, _mitkIpFuncSetErrno ( mitkIpFuncSIZE_ERROR ); return ( mitkIpFuncERROR ); } - + for ( i = 0; i < pic_1->dim; i++ ) { - if ( begin[i] < 0 || begin[i] > pic_1->n[i] ) + if ( begin[i] < 0 || begin[i] > pic_1->n[i] ) { _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); @@ -194,8 +188,8 @@ mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, /* allocate image structure */ if ( keep == mitkIpFuncKeep ) - pic_new = mitkIpPicClone ( pic_1 ); - else + pic_new = mitkIpPicClone ( pic_1 ); + else pic_new = pic_1; mitkIpPicFORALL_3 ( WINDR, pic_2, begin, end, size ); @@ -203,7 +197,7 @@ mitkIpPicDescriptor *mitkIpFuncWindowR ( mitkIpPicDescriptor *pic_1, /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_1); - + return ( pic_new ); } #endif diff --git a/Utilities/IpFunc/Xchange.c b/Utilities/IpFunc/Xchange.c index b9297f75ec2..954529c7ee7 100644 --- a/Utilities/IpFunc/Xchange.c +++ b/Utilities/IpFunc/Xchange.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * exchange of two image buffers @@ -52,9 +46,9 @@ * * @param pic1 pointer to pic descriptor * @param pic2 pointer to pic descriptor - * * - * @author Ulrike Guennel @date 07.7.1995 + * + * @author Ulrike Guennel @date 07.7.1995 * * $Log$ * Revision 1.3 2003/08/21 08:44:44 tobiask @@ -81,10 +75,10 @@ * */ - + /* ** ipFunc includefiles -*/ +*/ #include "mitkIpFuncP.h" void mitkIpFuncXchange( mitkIpPicDescriptor **pic1, @@ -93,16 +87,16 @@ void mitkIpFuncXchange( mitkIpPicDescriptor **pic1, #ifndef DOXYGEN_IGNORE #ifndef lint - static char *what = { "@(#)mitkIpFuncXchange\tDKFZ (Dept. MBI) $Revision$ "__DATE__ }; -#endif - + static char *what = { "@(#)mitkIpFuncXchange\tGerman Cancer Research Center (DKFZ) $Revision$ "__DATE__ }; +#endif + /* ** private macros */ - -/* + +/* ** the action starts here */ void mitkIpFuncXchange( mitkIpPicDescriptor **pic1, @@ -111,11 +105,11 @@ void mitkIpFuncXchange( mitkIpPicDescriptor **pic1, { mitkIpPicDescriptor *tmp_pic; - + tmp_pic = *pic1; *pic1 = *pic2; *pic2 = tmp_pic; - + return; } #endif diff --git a/Utilities/IpFunc/ZeroCr.c b/Utilities/IpFunc/ZeroCr.c index e031b1fc483..16cbe59f437 100644 --- a/Utilities/IpFunc/ZeroCr.c +++ b/Utilities/IpFunc/ZeroCr.c @@ -1,66 +1,60 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /**@file * this function detects zero-crossings */ -/** @brief detects zero-crossings +/** @brief detects zero-crossings * * @param pic_old pointer to the image that should be transformed * - * @return pointer to the transformed image + * @return pointer to the transformed image * * AUTHOR & DATE */ /* include-Files */ -#include "mitkIpFuncP.h" - +#include "mitkIpFuncP.h" + mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ) ; #ifndef DOXYGEN_IGNORE @@ -119,14 +113,14 @@ mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ) ; } \ } - + /* ------------------------------------------------------------------- */ /* */ /* ------------------------------------------------------------------- */ -mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ) +mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ) { mitkIpPicDescriptor *pic_new; /* convoluted image */ @@ -140,22 +134,22 @@ mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ) if ( _mitkIpFuncError ( pic_old ) != mitkIpFuncOK ) return ( mitkIpFuncERROR ); /* initialisation of vectors */ - + size[0] = 1; for ( i = 1; i < _mitkIpPicNDIM; i++ ) size[i] = size[i-1] * pic_old->n[i-1]; - - for ( i = 0; i < pic_old->dim; i++ ) - n[i] = pic_old->n[i] - 1; - - for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) - n[i] = 2; - + + for ( i = 0; i < pic_old->dim; i++ ) + n[i] = pic_old->n[i] - 1; + + for ( i = pic_old->dim; i < _mitkIpPicNDIM; i++ ) + n[i] = 2; + /* allocate and calculate offset vector */ off_vekt = malloc ( 2 * pic_old->dim * sizeof ( mitkIpInt4_t ) ); - if ( off_vekt == NULL ) - { + if ( off_vekt == NULL ) + { _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } @@ -165,7 +159,7 @@ mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ) j = 2 * i; off_vekt[j] = - size[i]; off_vekt[j+1] = size[i]; - } + } /* create a new picture, copy the header, allocate memory */ @@ -174,7 +168,7 @@ mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ) if ( pic_new == NULL ) { free ( off_vekt ); - _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncPICNEW_ERROR ); free ( off_vekt ); return ( mitkIpFuncERROR ); } @@ -183,24 +177,24 @@ mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ) { free ( off_vekt ); mitkIpPicFree ( pic_new ); - _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); + _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); free ( off_vekt ); return ( mitkIpFuncERROR ); } - + /* macro to convolute an image (for all data types) */ - mitkIpPicFORALL_3 ( ZERO, pic_old, size, off_vekt, n ); + mitkIpPicFORALL_3 ( ZERO, pic_old, size, off_vekt, n ); free ( off_vekt ); /* Copy Tags */ mitkIpFuncCopyTags(pic_new, pic_old); - - - + + + return pic_new; } diff --git a/Utilities/IpFunc/_BorderX.c b/Utilities/IpFunc/_BorderX.c index 02d5c52a022..a797a3f39f3 100644 --- a/Utilities/IpFunc/_BorderX.c +++ b/Utilities/IpFunc/_BorderX.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. -*****************************************************************************/ +============================================================================*/ /* * mitkIpFuncBorder @@ -90,10 +84,9 @@ * part of "if ( pic_new == NULL )" (first two rows). * *--------------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ #ifndef lint - static char *what = { "@(#)????????\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)????????\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include files */ @@ -223,9 +216,9 @@ mitkIpPicDescriptor *_mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncMALLOC_ERROR ); return ( mitkIpFuncERROR ); } - else + else { - for ( i = pic_new->dim; i < _mitkIpPicNDIM; i++ ) + for ( i = pic_new->dim; i < _mitkIpPicNDIM; i++ ) pic_new->n[i] = 0; for ( i = 0; i < pic_old->dim; i++ ) @@ -250,7 +243,7 @@ mitkIpPicDescriptor *_mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, _mitkIpFuncSetErrno ( mitkIpFuncDATA_ERROR ); return ( mitkIpFuncERROR ); } - + /* initialize vectors and variables */ @@ -259,7 +252,7 @@ mitkIpPicDescriptor *_mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, size[i] = size[i-1] * pic_new->n[i-1]; size[pic_new->dim] = 0; - mitkIpPicFORALL_2 ( BORDER, pic_new, size, value ) + mitkIpPicFORALL_2 ( BORDER, pic_new, size, value ) return ( pic_new ); } diff --git a/Utilities/IpFunc/_DrawPoly.c b/Utilities/IpFunc/_DrawPoly.c index ccaa7f40463..dedc848416d 100644 --- a/Utilities/IpFunc/_DrawPoly.c +++ b/Utilities/IpFunc/_DrawPoly.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * @@ -53,8 +47,8 @@ * FUNCTION DECLARATION * mitkIpPicDescriptor *_mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, * mitkIpUInt4_t *pol_x, - * mitkIpUInt4_t *pol_y, - * mitkIpUInt4_t no_pts, + * mitkIpUInt4_t *pol_y, + * mitkIpUInt4_t no_pts, * mitkIpFloat8_t *a, * mitkIpFloat8_t *b); * @@ -65,14 +59,14 @@ * pol_y - vector with the y-coordinates of the points which form * form the roi * no_pts - number of points used to describe ROI - * a - + * a - * b - * * REMARKS * this function could just be used for 2D images * * RETURN VALUES - * pic_help - image with roi + * pic_help - image with roi * * AUTHOR & DATE * Antje Schroeder 08.11.95 @@ -81,10 +75,9 @@ * a short history of the file * *--------------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ #ifndef lint - static char *what = { "@(#)_mitkIpFuncDrawPoly\t\tDKFZ (Dept. MBI)\t"__DATE__ }; + static char *what = { "@(#)_mitkIpFuncDrawPoly\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__ }; #endif /* include files */ @@ -101,7 +94,7 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *pol_x, mitkIpUInt4_t *pol_y, - mitkIpUInt4_t no_pts, + mitkIpUInt4_t no_pts, mitkIpFloat8_t *a, mitkIpFloat8_t *b ) { @@ -132,7 +125,7 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, /* draw polygon to pic_help */ for ( i = 0; i < no_pts-1; i++ ) - { + { if ( pol_x[i] == pol_x[i+1] ) { if ( pol_y[i] < pol_y[i+1] ) @@ -145,10 +138,10 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, end = pol_y[i]; beg = pol_y[i+1]; } - for ( j = beg; j < end; j++ ) + for ( j = beg; j < end; j++ ) (( mitkIpUInt1_t * )pic_help->data )[ j * pic_help->n[1] + pol_x[i]] = 100; } - else + else { if ( pol_x[i] < pol_x[i+1] ) { @@ -160,15 +153,15 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, end = pol_x[i]; beg = pol_x[i+1]; } - if ( pol_y[i] == pol_y[i+1] ) end = beg -1; - + if ( pol_y[i] == pol_y[i+1] ) end = beg -1; + for ( j = beg; j <= end; j++ ) { y = a[i] * j + b[i]; (( mitkIpUInt1_t * )pic_help->data )[ y * pic_help->n[1] + j ] = 100; } } - + if ( pol_y[i] == pol_y[i+1] ) { if ( pol_x[i] < pol_x[i+1] ) @@ -182,10 +175,10 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, beg = pol_x[i+1]; } - for ( j = beg; j < end; j++ ) + for ( j = beg; j < end; j++ ) (( mitkIpUInt1_t * )pic_help->data )[ j + pic_help->n[1] * pol_y[i]] = 100; } - else + else { if ( pol_y[i] < pol_y[i+1] ) { @@ -197,8 +190,8 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, end = pol_y[i+1]; beg = pol_y[i]; } - if ( pol_x[i] == pol_x[i+1] ) end = beg - 1; - + if ( pol_x[i] == pol_x[i+1] ) end = beg - 1; + for ( j = beg; j <= end; j++ ) { y = ( j - b[i] ) / a[i]; @@ -220,10 +213,10 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, beg = pol_y[0]; } - for ( j = beg; j < end; j++ ) + for ( j = beg; j < end; j++ ) (( mitkIpUInt1_t * )pic_help->data )[ j * pic_help->n[1] + pol_x[no_pts-1]] = 100; } - else + else { if ( pol_x[no_pts-1] < pol_x[0] ) { @@ -235,7 +228,7 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, end = pol_x[no_pts-1]; beg = pol_x[0]; } - if ( pol_y[no_pts-1] == pol_y[0] ) end = beg -1; + if ( pol_y[no_pts-1] == pol_y[0] ) end = beg -1; for ( j = beg; j <= end; j++ ) { @@ -243,7 +236,7 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, (( mitkIpUInt1_t * )pic_help->data )[ y * pic_help->n[1] + j ] = 100; } } - + if ( pol_y[no_pts-1] == pol_y[0] ) { if ( pol_x[no_pts-1] < pol_x[0] ) @@ -257,10 +250,10 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, beg = pol_x[0]; } - for ( j = beg; j < end; j++ ) + for ( j = beg; j < end; j++ ) (( mitkIpUInt1_t * )pic_help->data )[ j + pic_help->n[1] * pol_y[no_pts-1]] = 100; } - else + else { if ( pol_y[no_pts-1] < pol_y[0] ) { @@ -272,7 +265,7 @@ mitkIpPicDescriptor *_mitkIpFuncDrawPoly ( mitkIpPicDescriptor *pic_old, end = pol_y[no_pts-1]; beg = pol_y[0]; } - if ( pol_x[no_pts-1] == pol_x[0] ) end = beg - 1; + if ( pol_x[no_pts-1] == pol_x[0] ) end = beg - 1; for ( j = beg; j <= end; j++ ) { diff --git a/Utilities/IpFunc/gradient.h b/Utilities/IpFunc/gradient.h index 0886dcbdf40..a4e348bfda7 100644 --- a/Utilities/IpFunc/gradient.h +++ b/Utilities/IpFunc/gradient.h @@ -1,50 +1,44 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - - mitkIpInt2_t mask2[] = + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + + mitkIpInt2_t mask2[] = { 1, 1, 1, 0, 0, 0, -1, -1, -1, 1, 0, -1, 1, 0, -1, 1, 0, -1 }; @@ -53,15 +47,15 @@ 1, 1, 1, 0, 0, 0, -1, -1, -1, 1, 1, 1, 0, 0, 0, -1, -1, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; -mitkIpInt2_t mask4[] = +mitkIpInt2_t mask4[] = { 1, 1, 1, 0, 0, 0, -1, -1, -1, 1, 1, 1, 0, 0, 0, -1, -1, -1, 1, 1, 1, 0, 0, 0, -1, -1, -1, @@ -72,25 +66,25 @@ mitkIpInt2_t mask4[] = 1, 1, 1, 0, 0, 0, -1, -1, -1, 1, 1, 1, 0, 0, 0, -1, -1, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - 1, 0, -1, 1, 0, -1, 1, 0, -1, - + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 0, -1, 1, 0, -1, 1, 0, -1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -98,6 +92,6 @@ mitkIpInt2_t mask4[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; diff --git a/Utilities/IpFunc/ipAdministrative.h b/Utilities/IpFunc/ipAdministrative.h index c9000f81b77..e6b4eb3921a 100644 --- a/Utilities/IpFunc/ipAdministrative.h +++ b/Utilities/IpFunc/ipAdministrative.h @@ -1,50 +1,44 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * Administrative Functions * This header is for grouping purposes for the * documentation only. Don't use it, use mitkIpFunc.h instead. @@ -81,6 +75,6 @@ void mitkIpFuncPError ( char *string ); #endif -#endif /* _mitkIpFunc_h */ +#endif /* _mitkIpFunc_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpFunc/ipArithmeticAndLogical.h b/Utilities/IpFunc/ipArithmeticAndLogical.h index 2cc7a9d79b7..d4a8cb41cd9 100644 --- a/Utilities/IpFunc/ipArithmeticAndLogical.h +++ b/Utilities/IpFunc/ipArithmeticAndLogical.h @@ -1,50 +1,44 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * Arithmetic and Logical Operators. * This header is for grouping purposes for the * documentation only. Don't use it, use mitkIpFunc.h instead. @@ -66,7 +60,7 @@ extern "C" { mitkIpPicDescriptor *mitkIpFuncInv ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t kind, mitkIpPicDescriptor *pic_return ); @@ -81,12 +75,12 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); @@ -101,7 +95,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_new, + mitkIpPicDescriptor *pic_new, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); @@ -109,7 +103,7 @@ mitkIpPicDescriptor *mitkIpFuncAddSl ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t keep ); mitkIpPicDescriptor *mitkIpFuncSubI ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_new, + mitkIpPicDescriptor *pic_new, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); @@ -129,6 +123,6 @@ mitkIpPicDescriptor *mitkIpFuncNot ( mitkIpPicDescriptor *pic_old, #endif -#endif /* _mitkIpFunc_h */ +#endif /* _mitkIpFunc_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpFunc/ipFunc.c b/Utilities/IpFunc/ipFunc.c index 6a943d245eb..df281b7aa0d 100644 --- a/Utilities/IpFunc/ipFunc.c +++ b/Utilities/IpFunc/ipFunc.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. -*****************************************************************************/ +============================================================================*/ /* include files */ @@ -56,10 +50,10 @@ /* main function */ int -main (int argc, char **argv) +main (int argc, char **argv) { /* variables */ - + mitkIpPicDescriptor *pic_new=NULL; /* image descriptors */ mitkIpPicDescriptor *pic_ret=NULL; /* image descriptors */ mitkIpPicDescriptor *pic_hlp=NULL; /* image descriptors */ @@ -87,7 +81,7 @@ main (int argc, char **argv) mitkIpFloat8_t min, max; /* extreme greyvalues */ mitkIpFloat8_t min_gv, max_gv; /* extreme greyvalues */ mitkIpFloat8_t gv_low, gv_up; /* */ - mitkIpFloat8_t threshold; + mitkIpFloat8_t threshold; mitkIpFloat8_t value; /* value that is added to image */ mitkIpFloat8_t mean; /* mean greyvalue */ mitkIpFloat8_t var; /* variance of greyvalues */ @@ -102,10 +96,10 @@ main (int argc, char **argv) mitkIpUInt4_t mask_size; /* size of transformation mask */ mitkIpBool_t picput_flag=mitkIpTrue; /* */ int *grad, *order; - + /* input of operation and image file name */ - - + + if ( ((unsigned int) argc == 1) || ( ((unsigned int) argc == 2 ) && (strcasecmp (argv[1], "-h") == 0))) { printf("Usage: ipFunc operation infile outfile parameterlist\n"); @@ -124,7 +118,7 @@ main (int argc, char **argv) printf(" Misc: Border, BorderX, DrawPoly, Frame, Convert, MakeMorphSquareMask\n"); exit(1); } - + strcpy ( operation , argv[1]); if( ((unsigned int) argc != 2) && (strcasecmp (argv[2], "-h") != 0)) { @@ -140,7 +134,7 @@ main (int argc, char **argv) if ( strcasecmp ( operation, "Inv" ) == 0 ) { if ( (unsigned int) argc != 4 ) - { + { printf ( " usage: ipFunc Inv infile outfile \n" ); exit ( 1 ); } @@ -160,9 +154,9 @@ main (int argc, char **argv) { mitkIpUInt4_t blabel, rlabel, kind; - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != pic_old->dim * 2 + 8 ) ) + ( (unsigned int) argc != pic_old->dim * 2 + 8 ) ) { printf ( " usage: ipFunc RegGrow infile outfile beg_seed1...beg_seedn end_seed1...end_seedn border_label region_label std_dev_factor(double!!) kind(0=show border,1=show region)\n" ); exit ( 1 ); @@ -186,7 +180,7 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Convert" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0) ) || ( (unsigned int) argc != 6 ) ) { @@ -204,8 +198,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Refl" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Refl infile outfile axis \n"); @@ -225,163 +219,163 @@ main (int argc, char **argv) printf ( " ipFunc Sqrt infile outfile \n" ); exit ( 1 ); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; pic_new = mitkIpFuncSqrt ( pic_old, keep, pic_ret ); } else if ( strcasecmp ( operation, "Pot" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Pot infile outfile exponent \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; sscanf ( argv[4], "%lf", &value ); pic_new = mitkIpFuncPot ( pic_old, value, keep, pic_ret ); printf ( " Fehler : %d \n", mitkIpFuncErrno ); } else if ( strcasecmp ( operation, "DivC" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc DivC infile outfile value \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; sscanf ( argv[4], "%lf", &value ); pic_new = mitkIpFuncDivC ( pic_old, value, keep, pic_ret ); } else if ( strcasecmp ( operation, "MultC" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc MultC infile outfile value \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; sscanf ( argv[4], "%lf", &value ); pic_new = mitkIpFuncMultC ( pic_old, value, keep, pic_ret ); } else if ( strcasecmp ( operation, "SubC" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc SubC infile outfile value \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; sscanf ( argv[4], "%lf", &value ); pic_new = mitkIpFuncSubC ( pic_old, value, keep, pic_ret ); } else if ( strcasecmp ( operation, "AddC" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc AddC infile outfile value \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; sscanf ( argv[4], "%lf", &value ); pic_new = mitkIpFuncAddC ( pic_old, value, keep, pic_ret ); } else if ( strcasecmp ( operation, "AddSl" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 4 ) ) { printf("Usage: ipFunc AddSl infile outfile \n"); exit(1); } - keep = mitkIpFuncKeep; - pic_new = mitkIpFuncAddSl ( pic_old, keep ); + keep = mitkIpFuncKeep; + pic_new = mitkIpFuncAddSl ( pic_old, keep ); } else if ( strcasecmp ( operation, "DivI" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc DivI infile outfile image \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; strcpy ( mask_name, "" ); sscanf ( argv[4], "%s", mask_name ); pic_hlp = mitkIpPicGet ( mask_name, NULL ); - if ( pic_hlp != NULL ) + if ( pic_hlp != NULL ) pic_new = mitkIpFuncDivI ( pic_old, pic_hlp, keep, pic_ret ); - else - printf ( " iamge doesn't exist \n" ); + else + printf ( " iamge doesn't exist \n" ); } else if ( strcasecmp ( operation, "MultI" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc MultI infile outfile image \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; strcpy ( mask_name, "" ); sscanf ( argv[4], "%s", mask_name ); pic_hlp = mitkIpPicGet ( mask_name, NULL ); - if ( pic_hlp != NULL ) + if ( pic_hlp != NULL ) pic_new = mitkIpFuncMultI ( pic_old, pic_hlp, keep, pic_ret ); - else - printf ( " iamge doesn't exist \n" ); + else + printf ( " iamge doesn't exist \n" ); } else if ( strcasecmp ( operation, "AddI" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc AddI infile outfile image \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; strcpy ( mask_name, "" ); sscanf ( argv[4], "%s", mask_name ); pic_hlp = mitkIpPicGet ( mask_name, NULL ); - if ( pic_hlp != NULL ) + if ( pic_hlp != NULL ) pic_new = mitkIpFuncAddI ( pic_old, pic_hlp, keep, pic_ret ); - else - printf ( " iamge doesn't exist \n" ); + else + printf ( " iamge doesn't exist \n" ); } else if ( strcasecmp ( operation, "SubI" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc SubI infile outfile image \n"); exit(1); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; strcpy ( mask_name, "" ); sscanf ( argv[4], "%s", mask_name ); pic_hlp = mitkIpPicGet ( mask_name, NULL ); - if ( pic_hlp != NULL ) + if ( pic_hlp != NULL ) pic_new = mitkIpFuncSubI ( pic_old, pic_hlp, keep, pic_ret ); - else - printf ( " iamge doesn't exist \n" ); + else + printf ( " iamge doesn't exist \n" ); } else if ( strcasecmp ( operation, "Or" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Or infile outfile image \n"); @@ -390,15 +384,15 @@ main (int argc, char **argv) strcpy ( mask_name, "" ); sscanf ( argv[4], "%s", mask_name ); pic_hlp = mitkIpPicGet ( mask_name, NULL ); - if ( pic_hlp != NULL ) + if ( pic_hlp != NULL ) pic_new = mitkIpFuncOr ( pic_old, pic_hlp, pic_ret ); - else - printf ( " iamge doesn't exist \n" ); + else + printf ( " iamge doesn't exist \n" ); } else if ( strcasecmp ( operation, "And" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc And infile outfile image \n"); @@ -407,10 +401,10 @@ main (int argc, char **argv) strcpy ( mask_name, "" ); sscanf ( argv[4], "%s", mask_name ); pic_hlp = mitkIpPicGet ( mask_name, NULL ); - if ( pic_hlp != NULL ) + if ( pic_hlp != NULL ) pic_new = mitkIpFuncAnd ( pic_old, pic_hlp, pic_ret ); - else - printf ( " iamge doesn't exist \n" ); + else + printf ( " iamge doesn't exist \n" ); } else if ( strcasecmp ( operation, "Not" ) == 0 ) { @@ -423,8 +417,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Close" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Close infile outfile mask \n"); @@ -443,11 +437,11 @@ main (int argc, char **argv) } else printf ( " iamge doesn't exist \n" ); - } + } else if ( strcasecmp ( operation, "Open" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Open infile outfile mask \n"); @@ -465,11 +459,11 @@ main (int argc, char **argv) } else printf ( " iamge doesn't exist \n" ); - } + } else if ( strcasecmp ( operation, "Dila" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Dila infile outfile mask \n"); @@ -487,11 +481,11 @@ main (int argc, char **argv) } else printf ( " iamge doesn't exist \n" ); - } + } else if ( strcasecmp ( operation, "Ero" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Ero infile outfile mask \n"); @@ -509,7 +503,7 @@ main (int argc, char **argv) } else printf ( " iamge doesn't exist \n" ); - } + } /* else if ( strcasecmp ( operation, "hitmiss" ) == 0 ) { strcpy ( mask_name, "" ); @@ -521,20 +515,20 @@ main (int argc, char **argv) pic_new = mitkIpFuncHitMissI( pic_old, mask_1, mitkIpFuncBorderZero ); mitkIpPicFree ( mask_1 ); } - else - printf ( " iamge doesn't exist \n" ); + else + printf ( " iamge doesn't exist \n" ); }*/ else if ( strcasecmp ( operation, "Scale" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != pic_old->dim + 5 ) ) + ( (unsigned int) argc != pic_old->dim + 5 ) ) { printf("Usage: ipFunc Scale infile outfile sc_fact1 ... sc_factn kind \n"); printf(" sc_factx must contain a positive float number \n" ); printf(" kind describes the interpolation used to scale :\n" ); printf(" next neighbour : 7 \n" ); - printf(" bilinear : 6 \n" ); + printf(" bilinear : 6 \n" ); exit(1); } sc = malloc ( _mitkIpPicNDIM * sizeof ( mitkIpFloat8_t ) ); @@ -549,9 +543,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Transpose" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != pic_old->dim + 4 ) ) + ( (unsigned int) argc != pic_old->dim + 4 ) ) { printf("Usage: ipFunc Transpose infile outfile perm_1 ... perm_n \n"); printf(" perm_1 ... perm_n must be a permutation vector, e.g., 4 2 1 3 \n" ); @@ -568,8 +562,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Roberts" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Roberts infile outfile dim_mask \n"); @@ -581,8 +575,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "GaussF" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 6 ) ) { printf("Usage: ipFunc GaussF infile outfile len_mask dim_mask \n"); @@ -595,8 +589,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Canny" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 7 ) ) { printf("Usage: ipFunc Canny infile outfile len_mask dim_mask threshold \n"); @@ -612,8 +606,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Rank" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 7 ) ) { printf("Usage: ipFunc Rank infile outfile len_mask dim_mask rank \n"); @@ -627,8 +621,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "MeanF" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 6 ) ) { printf("Usage: ipFunc MeanF infile outfile len_mask dim_mask \n"); @@ -641,8 +635,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Shp" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 6 ) ) { printf("Usage: ipFunc Shp infile outfile len_mask dim_mask \n"); @@ -655,8 +649,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Laplace" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Laplace infile outfile dim_mask \n"); @@ -668,8 +662,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Sobel" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Sobel infile outfile dim_mask \n"); @@ -681,8 +675,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Grad" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Grad infile outfile dim_mask \n"); @@ -694,8 +688,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Thresh" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Thresh infile outfile threshold \n"); @@ -706,8 +700,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Conv" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 5 ) ) { printf("Usage: ipFunc Conv infile outfile mask \n"); @@ -717,7 +711,7 @@ main (int argc, char **argv) strcpy ( mask_name, "" ); sscanf ( argv[4], "%s", mask_name ); border = mitkIpFuncBorderZero; - + pic_mask = mitkIpPicGet ( mask_name, NULL ); if ( pic_mask != NULL ) { @@ -772,8 +766,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "NormXY" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 6 ) ) { printf("Usage: ipFunc NormXY infile outfile lower_value upper_value\n"); @@ -814,9 +808,9 @@ main (int argc, char **argv) } mitkIpFuncInertia ( pic_old, &inertia, &ev ); picput_flag = mitkIpFalse; - for ( i = 0; i < pic_old->dim; i++ ) + for ( i = 0; i < pic_old->dim; i++ ) printf ( " eigenvalue[%d] = %lf \n", i, ev[i] ); - for ( i = 0; i < pic_old->dim * pic_old->dim; i++ ) + for ( i = 0; i < pic_old->dim * pic_old->dim; i++ ) printf ( " inertia[%d] = %lf \n", i, inertia[i] ); } #endif @@ -829,7 +823,7 @@ main (int argc, char **argv) } grav = mitkIpFuncGrav ( pic_old ); picput_flag = mitkIpFalse; - for ( i = 0; i < pic_old->dim; i++ ) + for ( i = 0; i < pic_old->dim; i++ ) printf ( " center of gravity[%d] = %lf \n", i, grav[i] ); } else if ( strcasecmp ( operation, "Median" ) == 0 ) @@ -874,8 +868,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "SelMM" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 6 ) ) { printf("Usage: ipFunc SelMM infile outfile lower_value upper_value \n"); @@ -901,8 +895,8 @@ main (int argc, char **argv) */ else if ( strcasecmp ( operation, "Select" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 7 ) ) { printf("Usage: ipFunc Select infile outfile lower_value upper_value new_value\n"); @@ -915,8 +909,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "SelInv" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 7 ) ) { printf("Usage: ipFunc SelInv infile outfile lower_value upper_value new_value\n"); @@ -929,8 +923,8 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "LevWin" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || - ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || + if ( ( (unsigned int) argc == 2 ) || + ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || ( (unsigned int) argc != 6 ) ) { printf("Usage: ipFunc LevWin infile outfile level window \n" ); @@ -954,9 +948,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "BorderX" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != pic_old->dim + 5 ) ) + ( (unsigned int) argc != pic_old->dim + 5 ) ) { printf ( " usage: ipFunc BorderX infile outfile edge1...edgen value\n" ); exit ( 1 ); @@ -970,18 +964,18 @@ main (int argc, char **argv) pic_mask = mitkIpPicNew (); pic_mask->type = 3; pic_mask->bpe = 16; - pic_mask->dim = pic_old->dim; + pic_mask->dim = pic_old->dim; for ( i = 0; i < pic_old->dim; i++ ) pic_mask->n[i] = begin[i] *2 + 1; - pic_new = mitkIpFuncBorderX ( pic_old, pic_mask, value, NULL ); + pic_new = mitkIpFuncBorderX ( pic_old, pic_mask, value, NULL ); mitkIpPicFree ( pic_mask ); free ( begin ); } else if ( strcasecmp ( operation, "Frame" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != pic_old->dim + 5 ) ) + ( (unsigned int) argc != pic_old->dim + 5 ) ) { printf ( " usage: ipFunc Edge infile outfile edge1...edgen value\n" ); exit ( 1 ); @@ -992,19 +986,19 @@ main (int argc, char **argv) sscanf ( argv[4+i], "%d", &begin[i] ); } sscanf ( argv[4+pic_old->dim], "%lf", &value ); - pic_new = mitkIpFuncFrame ( pic_old, begin, value ); + pic_new = mitkIpFuncFrame ( pic_old, begin, value ); free ( begin ); } else if ( strcasecmp ( operation, "WindowR" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != pic_old->dim + 5 ) ) + ( (unsigned int) argc != pic_old->dim + 5 ) ) { printf ( " usage: ipFunc WindowR infile outfile image beg1...begn \n" ); exit ( 1 ); } - keep = mitkIpFuncKeep; + keep = mitkIpFuncKeep; strcpy ( mask_name, "" ); sscanf ( argv[4], "%s", mask_name ); pic_hlp = mitkIpPicGet ( mask_name, NULL ); @@ -1018,9 +1012,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Rotate" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != pic_old->dim * 2 + 4 ) ) + ( (unsigned int) argc != pic_old->dim * 2 + 4 ) ) { printf ( " usage: ipFunc Rotate infile outfile grad1...gradn order1...ordern \n" ); exit ( 1 ); @@ -1037,9 +1031,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "Window" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != pic_old->dim * 2 + 4 ) ) + ( (unsigned int) argc != pic_old->dim * 2 + 4 ) ) { printf ( " usage: ipFunc Window infile outfile beg1...begn length1...lengthn \n" ); exit ( 1 ); @@ -1058,11 +1052,11 @@ main (int argc, char **argv) else if ( strcasecmp ( operation, "DrawPoly" ) == 0 ) { /* - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 2 * pic_old->dim + 5 ) ) + ( (unsigned int) argc != 2 * pic_old->dim + 5 ) ) */ - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) ) { printf ( " usage: ipFunc Window infile outfile nr_points x1...xn y1...yn \n" ); @@ -1081,9 +1075,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "MeanROI" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 4 + pic_old->dim * 2 ) ) + ( (unsigned int) argc != 4 + pic_old->dim * 2 ) ) { printf ( " usage: ipFunc MeanROI infile nr_points x1...xn y1...yn \n" ); exit ( 1 ); @@ -1102,9 +1096,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "VarROI" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 4 + pic_old->dim * 2 ) ) + ( (unsigned int) argc != 4 + pic_old->dim * 2 ) ) { printf ( " usage: ipFunc VarROI infile nr_points x1...xn y1...yn \n" ); exit ( 1 ); @@ -1123,9 +1117,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "SDevROI" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 4 + pic_old->dim * 2 ) ) + ( (unsigned int) argc != 4 + pic_old->dim * 2 ) ) { printf ( " usage: ipFunc SDevROI infile nr_points x1...xn y1...yn \n" ); exit ( 1 ); @@ -1144,9 +1138,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "ExtrROI" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 4 + pic_old->dim * 2 ) ) + ( (unsigned int) argc != 4 + pic_old->dim * 2 ) ) { printf ( " usage: ipFunc ExtrROI infile nr_points x1...xn y1...yn \n" ); exit ( 1 ); @@ -1165,9 +1159,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "VarR" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 3 + 2 * pic_old->dim ) ) + ( (unsigned int) argc != 3 + 2 * pic_old->dim ) ) { printf ( " usage: ipFunc VarR infile beg1...begn length1...lengthn \n" ); exit ( 1 ); @@ -1185,9 +1179,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "SDevR" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 3 + 2 * pic_old->dim ) ) + ( (unsigned int) argc != 3 + 2 * pic_old->dim ) ) { printf ( " usage: ipFunc SDevR infile beg1...begn length1...lengthn \n" ); exit ( 1 ); @@ -1206,9 +1200,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "MeanR" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 3 + 2 * pic_old->dim ) ) + ( (unsigned int) argc != 3 + 2 * pic_old->dim ) ) { printf ( " usage: ipFunc MeanR infile beg1...begn length1...lengthn \n" ); exit ( 1 ); @@ -1227,9 +1221,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "ExtrR" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 3 + 2 * pic_old->dim ) ) + ( (unsigned int) argc != 3 + 2 * pic_old->dim ) ) { printf ( " usage: ipFunc ExtrR infile beg1...begn length1...lengthn \n" ); exit ( 1 ); @@ -1248,9 +1242,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "SDevC" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 4 + pic_old->dim ) ) + ( (unsigned int) argc != 4 + pic_old->dim ) ) { printf ( " usage: ipFunc SDevR infile radius begin1...beginn \n" ); exit ( 1 ); @@ -1265,9 +1259,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "VarC" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 4 + pic_old->dim ) ) + ( (unsigned int) argc != 4 + pic_old->dim ) ) { printf ( " usage: ipFunc VarC infile radius begin1...beginn \n" ); exit ( 1 ); @@ -1282,9 +1276,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "MeanC" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 4 + pic_old->dim ) ) + ( (unsigned int) argc != 4 + pic_old->dim ) ) { printf ( " usage: ipFunc MeanC infile radius begin1...beginn \n" ); exit ( 1 ); @@ -1299,9 +1293,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "ExtrC" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 4 + pic_old->dim ) ) + ( (unsigned int) argc != 4 + pic_old->dim ) ) { printf ( " usage: ipFunc ExtrC infile radius begin1...beginn \n" ); exit ( 1 ); @@ -1316,9 +1310,9 @@ main (int argc, char **argv) } else if ( strcasecmp ( operation, "MakeMorphSquareMask" ) == 0 ) { - if ( ( (unsigned int) argc == 2 ) || + if ( ( (unsigned int) argc == 2 ) || ( ( (unsigned int) argc == 3 ) && ( strcasecmp (argv[2], "-h") == 0 ) ) || - ( (unsigned int) argc != 6 ) ) + ( (unsigned int) argc != 6 ) ) { printf ( " usage: ipFunc MakeMorphSquareMask infile outfile dim size\n" ); exit ( 1 ); @@ -1335,8 +1329,8 @@ main (int argc, char **argv) } else printf ( " illegal operation \n" ); - - + + if ( mitkIpFuncErrno > mitkIpOK ) { mitkIpFuncPError ( error_nr ); @@ -1344,13 +1338,13 @@ main (int argc, char **argv) } if ( ( pic_new != 0 ) && ( picput_flag ) ) { - strcpy ( pic_name_t, argv[3] ); + strcpy ( pic_name_t, argv[3] ); mitkIpPicPut ( pic_name_t, pic_new ); picput_flag = mitkIpTrue; } - - - if ( pic_ret ) + + + if ( pic_ret ) { mitkIpPicFree ( pic_ret ); pic_old = NULL; diff --git a/Utilities/IpFunc/ipGeometrical.h b/Utilities/IpFunc/ipGeometrical.h index ef3aa1209ff..2ce7016844d 100644 --- a/Utilities/IpFunc/ipGeometrical.h +++ b/Utilities/IpFunc/ipGeometrical.h @@ -1,50 +1,44 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * Geometrical Operators. * This header is for grouping purposes for the * documentation only. Don't use it, use mitkIpFunc.h instead. @@ -71,15 +65,15 @@ mitkIpPicDescriptor *mitkIpFuncRefl ( mitkIpPicDescriptor *pic_old, mitkIpInt4_t axis ); mitkIpPicDescriptor *mitkIpFuncFrame ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *edge, - mitkIpFloat8_t value ); + mitkIpUInt4_t *edge, + mitkIpFloat8_t value ); mitkIpPicDescriptor *mitkIpFuncBorder ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *mask, + mitkIpPicDescriptor *mask, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *mask, + mitkIpPicDescriptor *mask, mitkIpFloat8_t value, mitkIpPicDescriptor *pic_return ); @@ -88,17 +82,17 @@ mitkIpPicDescriptor *mitkIpFuncScale ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t sc_kind ); mitkIpPicDescriptor *mitkIpFuncScFact ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t factor, + mitkIpFloat8_t factor, mitkIpFuncFlagI_t sc_kind ); -mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpPicDescriptor *mitkIpFuncWindowR( mitkIpPicDescriptor *pic_1, +mitkIpPicDescriptor *mitkIpFuncWindowR( mitkIpPicDescriptor *pic_1, mitkIpPicDescriptor *pic_2, - mitkIpUInt4_t *begin, - mitkIpFuncFlagI_t keep ); + mitkIpUInt4_t *begin, + mitkIpFuncFlagI_t keep ); mitkIpPicDescriptor *mitkIpFuncRotate ( mitkIpPicDescriptor *pic, mitkIpPicDescriptor *pic_old, @@ -107,10 +101,10 @@ mitkIpPicDescriptor *mitkIpFuncRotate ( mitkIpPicDescriptor *pic, mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, mitkIpPicDescriptor *pic_old, int *permutations_vector); - -mitkIpPicDescriptor *mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, + +mitkIpPicDescriptor *mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); #if defined(__cplusplus) || defined(c_plusplus) @@ -118,6 +112,6 @@ mitkIpPicDescriptor *mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, #endif -#endif /* _mitkIpFunc_h */ +#endif /* _mitkIpFunc_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpFunc/ipGetANew.c b/Utilities/IpFunc/ipGetANew.c index 9221af175c0..4bb0c2b504b 100644 --- a/Utilities/IpFunc/ipGetANew.c +++ b/Utilities/IpFunc/ipGetANew.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ #include "mitkIpFuncP.h" @@ -53,10 +47,10 @@ mitkIpUInt4_t NewIndex; /* return original Index */ if (aNew[Index] == Index) return (Index); - for (;;) + for (;;) { NewIndex = aNew[Index]; - if (NewIndex == aNew[NewIndex]) return(NewIndex); + if (NewIndex == aNew[NewIndex]) return(NewIndex); Index = NewIndex; } } diff --git a/Utilities/IpFunc/ipLocal.h b/Utilities/IpFunc/ipLocal.h index 3eb20b7cf20..3c778e7398c 100644 --- a/Utilities/IpFunc/ipLocal.h +++ b/Utilities/IpFunc/ipLocal.h @@ -1,50 +1,44 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * Local Operators. * This header is for grouping purposes for the * documentation only. Don't use it, use mitkIpFunc.h instead. @@ -64,50 +58,50 @@ extern "C" { #endif mitkIpPicDescriptor *mitkIpFuncConv ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t len_mask, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncCanny ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncCanny ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpUInt4_t len_mask, mitkIpFloat8_t threshold, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t rank, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpUInt4_t len_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t len_mask, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border, mitkIpUInt4_t mask_nr ); -mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncRoberts( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncRoberts( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); #if defined(__cplusplus) || defined(c_plusplus) @@ -115,6 +109,6 @@ mitkIpPicDescriptor *mitkIpFuncRoberts( mitkIpPicDescriptor *pic_old, #endif -#endif /* _mitkIpFunc_h */ +#endif /* _mitkIpFunc_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpFunc/ipMorphological.h b/Utilities/IpFunc/ipMorphological.h index e10dd54a987..697d84cf8c5 100644 --- a/Utilities/IpFunc/ipMorphological.h +++ b/Utilities/IpFunc/ipMorphological.h @@ -1,50 +1,44 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * Morphological Operators. * This header is for grouping purposes for the * documentation only. Don't use it, use mitkIpFunc.h instead. @@ -64,23 +58,23 @@ extern "C" { #endif mitkIpPicDescriptor *mitkIpFuncEro ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncDila ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncOpen ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncClose ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncHitMiss( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_masks, + mitkIpPicDescriptor *pic_masks, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncLabel ( mitkIpPicDescriptor *pic_old, @@ -92,12 +86,12 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *end_seed, mitkIpUInt4_t border_label, mitkIpUInt4_t region_label, - mitkIpFloat8_t std_fact, + mitkIpFloat8_t std_fact, mitkIpUInt4_t kind ); -mitkIpPicDescriptor *mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpPicDescriptor *mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); #if defined(__cplusplus) || defined(c_plusplus) @@ -105,6 +99,6 @@ mitkIpPicDescriptor *mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, #endif -#endif /* _mitkIpFunc_h */ +#endif /* _mitkIpFunc_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpFunc/ipPointOperators.h b/Utilities/IpFunc/ipPointOperators.h index a146fbd644c..6971f809ad6 100644 --- a/Utilities/IpFunc/ipPointOperators.h +++ b/Utilities/IpFunc/ipPointOperators.h @@ -1,50 +1,44 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * Point-Operators. * This header is for grouping purposes for the * documentation only. Don't use it, use mitkIpFunc.h instead. @@ -66,7 +60,7 @@ extern "C" { mitkIpPicDescriptor *mitkIpFuncInv ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t kind, mitkIpPicDescriptor *pic_return ); @@ -97,33 +91,33 @@ mitkIpPicDescriptor *mitkIpFuncLog ( mitkIpPicDescriptor *pic_old ); mitkIpPicDescriptor *mitkIpFuncNorm ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic, +mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic, mitkIpFloat8_t min_gv, mitkIpFloat8_t max_gv, mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t gv_low, - mitkIpFloat8_t gv_up, +mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t gv_low, + mitkIpFloat8_t gv_up, mitkIpFloat8_t gv, - mitkIpPicDescriptor *pic_return ); + mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t gv_low, - mitkIpFloat8_t gv_up, +mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t gv_low, + mitkIpFloat8_t gv_up, mitkIpFloat8_t gv, - mitkIpPicDescriptor *pic_return ); + mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t gv_low, +mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t gv_low, mitkIpFloat8_t gv_up, mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t level, +mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t level, mitkIpFloat8_t window, - mitkIpPicDescriptor *pic_return ); - + mitkIpPicDescriptor *pic_return ); + void mitkIpFuncXchange ( mitkIpPicDescriptor **pic1, mitkIpPicDescriptor **pic2 ); @@ -136,6 +130,6 @@ mitkIpPicDescriptor *mitkIpFuncConvert( mitkIpPicDescriptor *pic_old, #endif -#endif /* _mitkIpFunc_h */ +#endif /* _mitkIpFunc_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpFunc/ipStatistical.h b/Utilities/IpFunc/ipStatistical.h index 4fa245ecb6e..847d51a9a8f 100644 --- a/Utilities/IpFunc/ipStatistical.h +++ b/Utilities/IpFunc/ipStatistical.h @@ -1,50 +1,44 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * Operators to calculate statistical values. * This header is for grouping purposes for the * documentation only. Don't use it, use mitkIpFunc.h instead. @@ -77,37 +71,37 @@ mitkIpFloat8_t mitkIpFuncSDev ( mitkIpPicDescriptor *pic_old ); mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ); -mitkIpFloat8_t mitkIpFuncMeanC ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncMeanC ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t radius ); -mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t radius ); -mitkIpFloat8_t mitkIpFuncSDevC ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncSDevC ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t radius ); -mitkIpUInt4_t mitkIpFuncExtrC ( mitkIpPicDescriptor *pic_old, +mitkIpUInt4_t mitkIpFuncExtrC ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *min, - mitkIpFloat8_t *max, - mitkIpUInt4_t *center, + mitkIpFloat8_t *max, + mitkIpUInt4_t *center, mitkIpUInt4_t radius ); -mitkIpFloat8_t mitkIpFuncMeanROI( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpFloat8_t mitkIpFuncMeanROI( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); -mitkIpFloat8_t mitkIpFuncVarROI( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpFloat8_t mitkIpFuncVarROI( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); -mitkIpFloat8_t mitkIpFuncSDevROI( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpFloat8_t mitkIpFuncSDevROI( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); mitkIpFloat8_t mitkIpFuncSkewness ( mitkIpPicDescriptor *pic ); @@ -115,52 +109,52 @@ mitkIpFloat8_t mitkIpFuncSkewness ( mitkIpPicDescriptor *pic ); mitkIpFloat8_t mitkIpFuncCurtosis ( mitkIpPicDescriptor *pic ); mitkIpFloat8_t mitkIpFuncSkewnessR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); double mitkIpFuncCurtosisR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpUInt4_t mitkIpFuncExtrROI( mitkIpPicDescriptor *pic_old, +mitkIpUInt4_t mitkIpFuncExtrROI( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *min, - mitkIpFloat8_t *max, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, + mitkIpFloat8_t *max, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); -mitkIpFloat8_t mitkIpFuncMeanR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncMeanR ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpFloat8_t mitkIpFuncVarR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncVarR ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpFloat8_t mitkIpFuncSDevR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncSDevR ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpUInt4_t mitkIpFuncExtrR ( mitkIpPicDescriptor *pic_old, +mitkIpUInt4_t mitkIpFuncExtrR ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *min, - mitkIpFloat8_t *max, - mitkIpUInt4_t *begin, + mitkIpFloat8_t *max, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpUInt4_t mitkIpFuncRange ( mitkIpPicDescriptor *pic, +mitkIpUInt4_t mitkIpFuncRange ( mitkIpPicDescriptor *pic, mitkIpFloat8_t gv_low, mitkIpFloat8_t gv_up ); -mitkIpInt4_t mitkIpFuncExtr ( mitkIpPicDescriptor *pic, +mitkIpInt4_t mitkIpFuncExtr ( mitkIpPicDescriptor *pic, mitkIpFloat8_t *min, mitkIpFloat8_t *max ); -mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, +mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t **eigen_vect, mitkIpFloat8_t **eigen_val ); -mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t min_gv, +mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t min_gv, mitkIpFloat8_t max_gv, mitkIpUInt4_t **hist, mitkIpUInt4_t *size_hist ); @@ -170,6 +164,6 @@ mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, #endif -#endif /* _mitkIpFunc_h */ +#endif /* _mitkIpFunc_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpFunc/mitkIpFunc.h b/Utilities/IpFunc/mitkIpFunc.h index 75a72905dfc..cec8e1266c3 100644 --- a/Utilities/IpFunc/mitkIpFunc.h +++ b/Utilities/IpFunc/mitkIpFunc.h @@ -1,51 +1,45 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file - * contains the function prototypes, type definitions and + * contains the function prototypes, type definitions and * includes for the image processing functions */ @@ -96,19 +90,19 @@ * different datatypes and images of up to eight dimensions, the functions could * be used to transform all these different kind of images. * - * There's also an executable included to invoke the image processing functions from the + * There's also an executable included to invoke the image processing functions from the * command line. * * @section Installation Installation * @subsection PlatformIndependent Platform Independent - * There is a platform independent tmake-makefile called ipFunc.pro. You need to get + * There is a platform independent tmake-makefile called ipFunc.pro. You need to get * the free tmake-utility to use it from @htmlonly ftp://ftp.troll.no/freebies/tmake/ @endhtmlonly. * * @subsection Windows Windows * The library as well as the executable are precomiled using the Microsoft Developer Studio 6.0: * libipFuncD.lib and ipFunc.exe. The corresponding project file is ipFunc.dsw. - * + * * @subsection Unix Unix * There is a makefile, which should work on most unix platforms. There is also a special * makefile for Sun Solaris. @@ -133,7 +127,7 @@ #include #endif #include -/* +/* Diese Datei wird in der mitkIpFuncP.h includet #include */ @@ -144,7 +138,7 @@ /* definition of constants */ #define mitkIpFuncERROR 0 -#define mitkIpFuncOK 1 +#define mitkIpFuncOK 1 #define mitkIpFuncNOPIC_ERROR 2 #define mitkIpFuncDIM_ERROR 3 #define mitkIpFuncSIZE_ERROR 4 @@ -175,7 +169,7 @@ typedef enum /* mitkIpFuncFlagI_t */ mitkIpFuncKeep = 4, mitkIpFuncNoKeep = 5, mitkIpFuncScaleBl = 6, - mitkIpFuncScaleNN = 7, + mitkIpFuncScaleNN = 7, mitkIpFuncTotal = 8, mitkIpFuncMinMax = 9, mitkIpFuncAbove = 10, @@ -196,7 +190,7 @@ typedef struct /* macros */ #define IPFUNCMAX( x, y ) ( ( (x) > (y) ) ? (x) : (y) ) -#define IPFUNCMIN( x, y ) ( ( (x) < (y) ) ? (x) : (y) ) +#define IPFUNCMIN( x, y ) ( ( (x) < (y) ) ? (x) : (y) ) #if defined(__cplusplus) || defined(c_plusplus) extern "C" { @@ -218,13 +212,13 @@ mitkIpPicDescriptor *mitkIpFuncConvert( mitkIpPicDescriptor *pic_old, void mitkIpFuncCopyTags(mitkIpPicDescriptor *pic_new, mitkIpPicDescriptor *pic_old); -int mitkIpFuncSetTag( mitkIpPicDescriptor *pic, char *name, int type, int size, +int mitkIpFuncSetTag( mitkIpPicDescriptor *pic, char *name, int type, int size, int el_size, void *data ); mitkIpPicDescriptor *mitkIpFuncInv ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncEqual ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t kind, mitkIpPicDescriptor *pic_return ); @@ -241,79 +235,79 @@ mitkIpFloat8_t mitkIpFuncSDev ( mitkIpPicDescriptor *pic_old ); mitkIpFloat8_t *mitkIpFuncGrav ( mitkIpPicDescriptor *pic_old ); -mitkIpFloat8_t mitkIpFuncMeanC ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncMeanC ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t radius ); -mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncVarC ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t radius ); -mitkIpFloat8_t mitkIpFuncSDevC ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncSDevC ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t radius ); -mitkIpUInt4_t mitkIpFuncExtrC ( mitkIpPicDescriptor *pic_old, +mitkIpUInt4_t mitkIpFuncExtrC ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *min, - mitkIpFloat8_t *max, - mitkIpUInt4_t *center, + mitkIpFloat8_t *max, + mitkIpUInt4_t *center, mitkIpUInt4_t radius ); -mitkIpPicDescriptor *mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpPicDescriptor *mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); -mitkIpFloat8_t mitkIpFuncMeanROI( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpFloat8_t mitkIpFuncMeanROI( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); -mitkIpFloat8_t mitkIpFuncVarROI( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpFloat8_t mitkIpFuncVarROI( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); -mitkIpFloat8_t mitkIpFuncSDevROI( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpFloat8_t mitkIpFuncSDevROI( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); -mitkIpUInt4_t mitkIpFuncExtrROI( mitkIpPicDescriptor *pic_old, +mitkIpUInt4_t mitkIpFuncExtrROI( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *min, - mitkIpFloat8_t *max, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, + mitkIpFloat8_t *max, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts ); -mitkIpFloat8_t mitkIpFuncMeanR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncMeanR ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpFloat8_t mitkIpFuncVarR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncVarR ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpFloat8_t mitkIpFuncSDevR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpFloat8_t mitkIpFuncSDevR ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpUInt4_t mitkIpFuncExtrR ( mitkIpPicDescriptor *pic_old, +mitkIpUInt4_t mitkIpFuncExtrR ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t *min, - mitkIpFloat8_t *max, - mitkIpUInt4_t *begin, + mitkIpFloat8_t *max, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); mitkIpPicDescriptor *mitkIpFuncFrame ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *edge, - mitkIpFloat8_t value ); + mitkIpUInt4_t *edge, + mitkIpFloat8_t value ); mitkIpPicDescriptor *mitkIpFuncBorder ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *mask, + mitkIpPicDescriptor *mask, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncBorderX ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *mask, + mitkIpPicDescriptor *mask, mitkIpFloat8_t value, mitkIpPicDescriptor *pic_return ); @@ -328,12 +322,12 @@ mitkIpPicDescriptor *mitkIpFuncSubC ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncMultC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncDivC ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); @@ -348,7 +342,7 @@ mitkIpPicDescriptor *mitkIpFuncDivI ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncAddI ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_new, + mitkIpPicDescriptor *pic_new, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); @@ -356,7 +350,7 @@ mitkIpPicDescriptor *mitkIpFuncAddSl ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t keep ); mitkIpPicDescriptor *mitkIpFuncSubI ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_new, + mitkIpPicDescriptor *pic_new, mitkIpFuncFlagI_t keep, mitkIpPicDescriptor *pic_return ); @@ -388,27 +382,27 @@ mitkIpPicDescriptor *mitkIpFuncThresh ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); mitkIpPicDescriptor *mitkIpFuncConv ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); - + mitkIpPicDescriptor *mitkIpFuncEro ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncDila ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncOpen ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncClose ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncHitMiss( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_masks, + mitkIpPicDescriptor *pic_masks, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncScale ( mitkIpPicDescriptor *pic_old, @@ -416,50 +410,50 @@ mitkIpPicDescriptor *mitkIpFuncScale ( mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t sc_kind ); mitkIpPicDescriptor *mitkIpFuncScFact ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t factor, + mitkIpFloat8_t factor, mitkIpFuncFlagI_t sc_kind ); -mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncGausF ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t len_mask, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncCanny ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncCanny ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpUInt4_t len_mask, mitkIpFloat8_t threshold, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncRank ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t rank, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpUInt4_t len_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, +mitkIpPicDescriptor *mitkIpFuncMeanF ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t len_mask, - mitkIpUInt4_t dim_mask, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncShp ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border, mitkIpUInt4_t mask_nr ); -mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncLaplace( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncSobel ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncGrad ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); -mitkIpPicDescriptor *mitkIpFuncRoberts( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t dim_mask, +mitkIpPicDescriptor *mitkIpFuncRoberts( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t dim_mask, mitkIpFuncFlagI_t border ); mitkIpPicDescriptor *mitkIpFuncZeroCr ( mitkIpPicDescriptor *pic_old ); @@ -475,65 +469,65 @@ mitkIpPicDescriptor *mitkIpFuncLog ( mitkIpPicDescriptor *pic_old ); mitkIpPicDescriptor *mitkIpFuncNorm ( mitkIpPicDescriptor *pic_old, mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic, +mitkIpPicDescriptor *mitkIpFuncNormXY ( mitkIpPicDescriptor *pic, mitkIpFloat8_t min_gv, mitkIpFloat8_t max_gv, mitkIpPicDescriptor *pic_return ); -mitkIpUInt4_t mitkIpFuncRange ( mitkIpPicDescriptor *pic, +mitkIpUInt4_t mitkIpFuncRange ( mitkIpPicDescriptor *pic, mitkIpFloat8_t gv_low, mitkIpFloat8_t gv_up ); -mitkIpInt4_t mitkIpFuncExtr ( mitkIpPicDescriptor *pic, +mitkIpInt4_t mitkIpFuncExtr ( mitkIpPicDescriptor *pic, mitkIpFloat8_t *min, mitkIpFloat8_t *max ); -mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, +mitkIpInt4_t mitkIpFuncInertia ( mitkIpPicDescriptor *pic_old, mitkIpFloat8_t **eigen_vect, mitkIpFloat8_t **eigen_val ); -mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t min_gv, +mitkIpInt4_t mitkIpFuncHist ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t min_gv, mitkIpFloat8_t max_gv, mitkIpUInt4_t **hist, mitkIpUInt4_t *size_hist ); -mitkIpInt4_t mitkIpFuncHisto ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t *min_gv, +mitkIpInt4_t mitkIpFuncHisto ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t *min_gv, mitkIpFloat8_t *max_gv, mitkIpUInt4_t **hist, mitkIpUInt4_t *size_hist ); -mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t gv_low, - mitkIpFloat8_t gv_up, +mitkIpPicDescriptor *mitkIpFuncSelInv ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t gv_low, + mitkIpFloat8_t gv_up, mitkIpFloat8_t gv, - mitkIpPicDescriptor *pic_return ); + mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t gv_low, - mitkIpFloat8_t gv_up, +mitkIpPicDescriptor *mitkIpFuncSelect ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t gv_low, + mitkIpFloat8_t gv_up, mitkIpFloat8_t gv, - mitkIpPicDescriptor *pic_return ); + mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t gv_low, +mitkIpPicDescriptor *mitkIpFuncSelMM ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t gv_low, mitkIpFloat8_t gv_up, mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, - mitkIpFloat8_t level, +mitkIpPicDescriptor *mitkIpFuncLevWin ( mitkIpPicDescriptor *pic_old, + mitkIpFloat8_t level, mitkIpFloat8_t window, - mitkIpPicDescriptor *pic_return ); + mitkIpPicDescriptor *pic_return ); -mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, +mitkIpPicDescriptor *mitkIpFuncWindow ( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); -mitkIpPicDescriptor *mitkIpFuncWindowR( mitkIpPicDescriptor *pic_1, +mitkIpPicDescriptor *mitkIpFuncWindowR( mitkIpPicDescriptor *pic_1, mitkIpPicDescriptor *pic_2, - mitkIpUInt4_t *begin, - mitkIpFuncFlagI_t keep ); + mitkIpUInt4_t *begin, + mitkIpFuncFlagI_t keep ); mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, @@ -542,7 +536,7 @@ mitkIpPicDescriptor *mitkIpFuncRegGrow ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t *end_seed, mitkIpUInt4_t border_label, mitkIpUInt4_t region_label, - mitkIpFloat8_t std_fact, + mitkIpFloat8_t std_fact, mitkIpUInt4_t kind ); void mitkIpFuncPError ( char *string ); @@ -554,7 +548,7 @@ mitkIpPicDescriptor *mitkIpFuncRotate ( mitkIpPicDescriptor *pic, mitkIpPicDescriptor *mitkIpFuncTranspose( mitkIpPicDescriptor *pic, mitkIpPicDescriptor *pic_old, int *permutations_vector); - + void mitkIpFuncXchange ( mitkIpPicDescriptor **pic1, mitkIpPicDescriptor **pic2 ); @@ -562,16 +556,16 @@ mitkIpFloat8_t mitkIpFuncSkewness ( mitkIpPicDescriptor *pic ); mitkIpFloat8_t mitkIpFuncCurtosis ( mitkIpPicDescriptor *pic ); mitkIpFloat8_t mitkIpFuncSkewnessR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); double mitkIpFuncCurtosisR ( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *begin, + mitkIpUInt4_t *begin, mitkIpUInt4_t *length ); mitkIpPicDescriptor *mitkIpFuncFillArea ( mitkIpPicDescriptor *pic_old, mitkIpFuncBox_t box, - mitkIpFloat8_t value, + mitkIpFloat8_t value, mitkIpFuncFlagI_t over, mitkIpPicDescriptor *pic_return ); @@ -582,6 +576,6 @@ char *mitkIpFuncMakePicName ( char *pic_name, char *extension ); #endif -#endif /* _mitkIpFunc_h */ +#endif /* _mitkIpFunc_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpFunc/mitkIpFuncP.h b/Utilities/IpFunc/mitkIpFuncP.h index 1b0fcbc141d..63f5a57a7a1 100644 --- a/Utilities/IpFunc/mitkIpFuncP.h +++ b/Utilities/IpFunc/mitkIpFuncP.h @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * mitkIpFuncP.h *--------------------------------------------------------------- * DESCRIPTION - * contains the function prototypes, type definitions and + * contains the function prototypes, type definitions and * includes for the image processing functions * * AUTHOR @@ -58,7 +52,7 @@ * UPDATES * *--------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ @@ -79,9 +73,9 @@ typedef enum mitkIpFuncCloseF = 3, mitkIpFuncFlagF_MAX } _mitkIpFuncFlagF_t; - + typedef struct - { + { mitkIpUInt4_t length; mitkIpInt4_t *off_vekt; mitkIpFloat8_t *mask_vekt; @@ -127,7 +121,7 @@ typedef struct mitkIpFuncSourceOffset++;\ }\ }\ - } + } /* function prototypes */ @@ -143,15 +137,15 @@ mitkIpUInt4_t _mitkIpFuncBox3d ( mitkIpPicDescriptor *pic_old, mitkIpUInt4_t _mitkIpFuncError ( mitkIpPicDescriptor *pic ); -mitkIpPicDescriptor *_mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, - mitkIpUInt4_t *pol_x, - mitkIpUInt4_t *pol_y, +mitkIpPicDescriptor *_mitkIpFuncDrawPoly( mitkIpPicDescriptor *pic_old, + mitkIpUInt4_t *pol_x, + mitkIpUInt4_t *pol_y, mitkIpUInt4_t no_pts, mitkIpFloat8_t *a, mitkIpFloat8_t *b ); mitkIpPicDescriptor *_mitkIpFuncOpCl ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_mask, + mitkIpPicDescriptor *pic_mask, _mitkIpFuncFlagF_t kind, mitkIpFuncFlagI_t border ); @@ -160,13 +154,13 @@ mitkIpPicDescriptor *_mitkIpFuncMorph ( mitkIpPicDescriptor *pic_old, _mitkIpFuncFlagF_t kind, mitkIpFuncFlagI_t border ); -mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, +mitkIpFuncMasc_t *_mitkIpFuncCompressM ( mitkIpPicDescriptor *mask, mitkIpPicDescriptor *pic_old, mitkIpFuncFlagI_t kind, - mitkIpInt4_t beg[_mitkIpPicNDIM], + mitkIpInt4_t beg[_mitkIpPicNDIM], mitkIpInt4_t end[_mitkIpPicNDIM] ); -mitkIpInt4_t _mitkIpFuncExtT ( mitkIpPicType_t type, +mitkIpInt4_t _mitkIpFuncExtT ( mitkIpPicType_t type, mitkIpUInt4_t bpe, mitkIpFloat8_t *min_gv, mitkIpFloat8_t *max_gv ); @@ -191,7 +185,7 @@ void _mitkIpFuncSetErrno( int error_no ); mitkIpUInt4_t _ipGetANew( mitkIpUInt4_t aNew[], mitkIpUInt4_t Index ); mitkIpPicDescriptor *_mitkIpFuncMalloc ( mitkIpPicDescriptor *pic_old, - mitkIpPicDescriptor *pic_new, + mitkIpPicDescriptor *pic_new, mitkIpBool_t over_write ); -#endif /* _mitkIpFuncP_h */ +#endif /* _mitkIpFuncP_h */ /* DON'T ADD ANYTHING AFTER THIS #endif */ diff --git a/Utilities/IpPic/annotation/Annotation.c b/Utilities/IpPic/annotation/Annotation.c index 2f3b20f96e8..be51797736e 100755 --- a/Utilities/IpPic/annotation/Annotation.c +++ b/Utilities/IpPic/annotation/Annotation.c @@ -1,3 +1,42 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * Annotation.c @@ -9,10 +48,10 @@ * a.schroeter * *--------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)XipAnnotationWidget\tDKFZ (Dept. MBI)\t1993/09/17" }; + static char *what = { "@(#)XipAnnotationWidget\tGerman Cancer Research Center (DKFZ)\t1993/09/17" }; #endif @@ -154,13 +193,13 @@ static void Initialize( request, new, args, num_args ) static void getDrawGC( w ) XipAnnotationWidget w; { - XGCValues values; + XGCValues values; XtGCMask valueMask; - + values.foreground = w->primitive.foreground; values.background = w->core.background_pixel; - valueMask = GCForeground | GCBackground; - + valueMask = GCForeground | GCBackground; + w->annotation.draw_GC = XtGetGC ( (Widget)w, valueMask, &values ); } @@ -171,7 +210,7 @@ static void Realize( w, valueMask, attributes ) { /*(*xipAnnotationClassRec.core_class.superclass->core_class.realize) (w, valueMask, attributes);*/ - + XtCreateWindow( (Widget)w, InputOutput, CopyFromParent, @@ -215,7 +254,7 @@ static void Realize( w, valueMask, attributes ) 0); { int i; - + for( i = 0; i < w->core.width/6; i++ ) XDrawLine( XtDisplay(w), shape_mask, @@ -267,7 +306,7 @@ static void Realize( w, valueMask, attributes ) 0); { int i; - + for( i = 0; i < w->core.width/6; i++ ) XDrawLine( XtDisplay(w), shape_mask, @@ -297,7 +336,7 @@ static XtGeometryResult QueryGeometry( w, proposed, answer ) XtWidgetGeometry *proposed; XtWidgetGeometry *answer; { - + answer->width = (Dimension)256; answer->height = (Dimension)120; answer->request_mode = CWWidth || CWHeight; @@ -319,8 +358,8 @@ static void Resize( w ) /*if( w->core.width > w->annotation.image->width || w->core.height > w->annotation.image->height ) XtWarning( "XipAnnotationWidget resized" );*/ - -} + +} static void Redisplay( w, event, region) @@ -351,7 +390,7 @@ static void Redisplay( w, event, region) 0, 0, 200, 200 );*/ } -} +} static Boolean SetValues( current, request, new, args, num_args ) XipAnnotationWidget current, request, new; @@ -364,8 +403,8 @@ static Boolean SetValues( current, request, new, args, num_args ) /*printf( "setv\n" );*/ - return( redraw ); -} + return( redraw ); +} static void activate( w, event ) XipAnnotationWidget w; @@ -376,4 +415,4 @@ static void activate( w, event ) XtCallCallbacks( (Widget)w, XipNactivateCallback, (XtPointer) event ); -} +} diff --git a/Utilities/IpPic/annotation/Annotation.h b/Utilities/IpPic/annotation/Annotation.h index 124b5d37749..4c3bdc8b498 100755 --- a/Utilities/IpPic/annotation/Annotation.h +++ b/Utilities/IpPic/annotation/Annotation.h @@ -1,3 +1,42 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * Annotation.h @@ -9,7 +48,7 @@ * a.schroeter * *--------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef _XipAnnotationWidget_h @@ -25,7 +64,7 @@ typedef struct _XipAnnotationRec *XipAnnotationWidget; #endif /* -** resource strings +** resource strings */ #define XipNactivateCallback XmNactivateCallback diff --git a/Utilities/IpPic/annotation/AnnotationP.h b/Utilities/IpPic/annotation/AnnotationP.h index af4aab497ac..f1553932457 100755 --- a/Utilities/IpPic/annotation/AnnotationP.h +++ b/Utilities/IpPic/annotation/AnnotationP.h @@ -1,3 +1,42 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * AnnotationP.h @@ -9,7 +48,7 @@ * a.schroeter * *--------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef _XipAnnotationP_h diff --git a/Utilities/IpPic/annotation/main.c b/Utilities/IpPic/annotation/main.c index 4f8b0630292..ad280d5ddab 100755 --- a/Utilities/IpPic/annotation/main.c +++ b/Utilities/IpPic/annotation/main.c @@ -1,3 +1,43 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + #include #include #include diff --git a/Utilities/IpPic/endian.c b/Utilities/IpPic/endian.c index 82594f9f574..31ddd1f5706 100755 --- a/Utilities/IpPic/endian.c +++ b/Utilities/IpPic/endian.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ union { @@ -59,5 +53,5 @@ void main( void ) printf( "big\n" ); else printf( "little\n" ); - + } diff --git a/Utilities/IpPic/ipEndian.c b/Utilities/IpPic/ipEndian.c index 8c886913055..c1c2ed6193b 100755 --- a/Utilities/IpPic/ipEndian.c +++ b/Utilities/IpPic/ipEndian.c @@ -1,3 +1,42 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * $RCSfile$ @@ -33,10 +72,10 @@ * * *--------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)ipEndian\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)ipEndian\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include @@ -62,11 +101,11 @@ _mitkIpEndian_t _mitkIpEndian( void ) } void _mitkIpCp( void *source, void *destination, unsigned long int len ) -{ +{ if( !source ) - return; + return; if( !destination ) - return; + return; memmove( destination, source, len ); } diff --git a/Utilities/IpPic/ipError.c b/Utilities/IpPic/ipError.c index 3d8b75545d5..815215a5290 100755 --- a/Utilities/IpPic/ipError.c +++ b/Utilities/IpPic/ipError.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * maps @c mitkIpError_t type values to printable strings */ #ifndef lint - static char *what = { "@(#)mitkIpError\t\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpError\t\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include diff --git a/Utilities/IpPic/ipFRead.c b/Utilities/IpPic/ipFRead.c index 605358ca0ae..40fe74aad56 100755 --- a/Utilities/IpPic/ipFRead.c +++ b/Utilities/IpPic/ipFRead.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -97,10 +91,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)_ipFRead\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_ipFRead\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include diff --git a/Utilities/IpPic/ipFWrite.c b/Utilities/IpPic/ipFWrite.c index 76a4624d11c..cc17208106a 100755 --- a/Utilities/IpPic/ipFWrite.c +++ b/Utilities/IpPic/ipFWrite.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -82,10 +76,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)_mitkIpFWrite\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpFWrite\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include diff --git a/Utilities/IpPic/ipPicAddT.c b/Utilities/IpPic/ipPicAddT.c index f944d5c330f..35bec098653 100755 --- a/Utilities/IpPic/ipPicAddT.c +++ b/Utilities/IpPic/ipPicAddT.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * inserts a tsv into the pic */ #ifndef lint - static char *what = { "@(#)mitkIpPicAddTag\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicAddTag\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicAnnotation.h b/Utilities/IpPic/ipPicAnnotation.h index e905665ee8d..64aa9d944dd 100755 --- a/Utilities/IpPic/ipPicAnnotation.h +++ b/Utilities/IpPic/ipPicAnnotation.h @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* * mitkIpPicAnnotation.h @@ -57,7 +51,6 @@ * a short history of the file * *--------------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept. MBI) HEIDELBERG, FRG */ #ifndef _mitkIpPicAnnotation_h diff --git a/Utilities/IpPic/ipPicAnnotations.h b/Utilities/IpPic/ipPicAnnotations.h index 06bdbf63a24..edcd5b2795a 100755 --- a/Utilities/IpPic/ipPicAnnotations.h +++ b/Utilities/IpPic/ipPicAnnotations.h @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. -*****************************************************************************/ +============================================================================*/ /* * mitkIpPicAnnotations.h @@ -57,7 +51,6 @@ * a short history of the file * *--------------------------------------------------------------------- - * COPYRIGHT (c) 1995 by DKFZ (Dept.MBI) HEIDELBERG, FRG */ #ifndef _mitkIpPicAnnotations_h diff --git a/Utilities/IpPic/ipPicClear.c b/Utilities/IpPic/ipPicClear.c index 6f69648e911..6825cb047f3 100755 --- a/Utilities/IpPic/ipPicClear.c +++ b/Utilities/IpPic/ipPicClear.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -76,10 +70,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicClear\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicClear\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicClone.c b/Utilities/IpPic/ipPicClone.c index 23e44fe4c4c..895bf7f51ee 100755 --- a/Utilities/IpPic/ipPicClone.c +++ b/Utilities/IpPic/ipPicClone.c @@ -1,54 +1,48 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * creates the clone of a pic */ #ifndef lint - static char *what = { "@(#)mitkIpPicClone\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicClone\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicCopyH.c b/Utilities/IpPic/ipPicCopyH.c index 597d3fde20c..91093a56dca 100755 --- a/Utilities/IpPic/ipPicCopyH.c +++ b/Utilities/IpPic/ipPicCopyH.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file @@ -50,7 +44,7 @@ */ #ifndef lint - static char *what = { "@(#)mitkIpPicCopyHeader\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicCopyHeader\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicCopyS.c b/Utilities/IpPic/ipPicCopyS.c index b45ddf2bc4f..e59d448877b 100755 --- a/Utilities/IpPic/ipPicCopyS.c +++ b/Utilities/IpPic/ipPicCopyS.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file @@ -74,10 +68,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicCopySlice\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicCopySlice\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicDelT.c b/Utilities/IpPic/ipPicDelT.c index 4b1474ca057..7e860e68167 100755 --- a/Utilities/IpPic/ipPicDelT.c +++ b/Utilities/IpPic/ipPicDelT.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * deletes a tsv from the pic */ #ifndef lint - static char *what = { "@(#)mitkIpPicDelTag\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicDelTag\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicElements.c b/Utilities/IpPic/ipPicElements.c index dfebb62ccb4..c4e28f63818 100755 --- a/Utilities/IpPic/ipPicElements.c +++ b/Utilities/IpPic/ipPicElements.c @@ -1,56 +1,50 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + + +/** @file * calculates number of Elements in the data */ #ifndef lint - static char *what = { "@(#)_mitkIpPicElements\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpPicElements\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicFree.c b/Utilities/IpPic/ipPicFree.c index 3e6f06fee0e..7aa2abea49a 100755 --- a/Utilities/IpPic/ipPicFree.c +++ b/Utilities/IpPic/ipPicFree.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -81,10 +75,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicFree\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicFree\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" @@ -110,10 +104,10 @@ void mitkIpPicFreeTag( mitkIpPicTSV_t *tsv ) { if( tsv ) - { + { if( tsv->value ); free( tsv->value ); free( tsv ); - } + } } diff --git a/Utilities/IpPic/ipPicGet.c b/Utilities/IpPic/ipPicGet.c index 1ead9e0aad2..5d80efef8a5 100755 --- a/Utilities/IpPic/ipPicGet.c +++ b/Utilities/IpPic/ipPicGet.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -105,10 +99,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicGet\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicGet\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" @@ -129,9 +123,9 @@ _mitkIpPicOpenPicFileIn( const char *path ) { char buff[1024]; - sprintf( buff, "%s.gz", path ); + sprintf( buff, "%s.gz", path ); - infile = mitkIpPicFOpen( buff, "rb" ); + infile = mitkIpPicFOpen( buff, "rb" ); } return( infile ); diff --git a/Utilities/IpPic/ipPicGetH.c b/Utilities/IpPic/ipPicGetH.c index 0a226f83078..ef0b36f5d1c 100755 --- a/Utilities/IpPic/ipPicGetH.c +++ b/Utilities/IpPic/ipPicGetH.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -87,10 +81,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicGetHeader\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicGetHeader\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicGetMem.c b/Utilities/IpPic/ipPicGetMem.c index 8b5defa3290..880857318b5 100755 --- a/Utilities/IpPic/ipPicGetMem.c +++ b/Utilities/IpPic/ipPicGetMem.c @@ -1,3 +1,42 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* *-------------------------------------------------------------------- @@ -5,10 +44,10 @@ * creates a PicStructure from memory block * * FUNCTION DECLARATION - * + * * * PARAMETERS - * + * * * AUTHOR & DATE * Harald Evers 15.7.98 @@ -16,11 +55,11 @@ * UPDATES * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1998 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicGetMem\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicGetMem\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" @@ -34,13 +73,13 @@ mitkIpPicDescriptor *mitkIpPicGetMem( mitkIpUInt1_t *mem_pic ) if( !mem_pic ) return( NULL ); - + pic = mitkIpPicNew(); mitkIpPicClear( pic ); memmove( &(pic->info->version), mem_ptr, sizeof(mitkIpPicTag_t) ); - mem_ptr += sizeof(mitkIpPicTag_t); + mem_ptr += sizeof(mitkIpPicTag_t); if( strncmp( mitkIpPicVERSION, pic->info->version, 4 ) != 0 ) - { + { mitkIpPicFree( pic ); return( NULL ); } @@ -67,7 +106,7 @@ mitkIpPicDescriptor *mitkIpPicGetMem( mitkIpUInt1_t *mem_pic ) to_read = len - 3 * sizeof(mitkIpUInt4_t) - pic->dim * sizeof(mitkIpUInt4_t); - pic->info->tags_head = _mitkIpPicReadTagsMem( pic->info->tags_head, + pic->info->tags_head = _mitkIpPicReadTagsMem( pic->info->tags_head, to_read, &mem_ptr, mitkIpPicEncryptionType(pic) ); @@ -77,7 +116,7 @@ mitkIpPicDescriptor *mitkIpPicGetMem( mitkIpUInt1_t *mem_pic ) /* pic->info->pixel_start_in_file = ftell( infile ); */ - + /*memmove( pic->data, mem_ptr, pic->bpe/8*_mitkIpPicElements(pic) );*/ mitkIpCpFromLE( mem_ptr, pic->data, _mitkIpPicSize(pic), pic->bpe/8 ); @@ -85,7 +124,7 @@ mitkIpPicDescriptor *mitkIpPicGetMem( mitkIpUInt1_t *mem_pic ) } _mitkIpPicTagsElement_t * -_mitkIpPicReadTagsMem( _mitkIpPicTagsElement_t *head, mitkIpUInt4_t bytes_to_read, +_mitkIpPicReadTagsMem( _mitkIpPicTagsElement_t *head, mitkIpUInt4_t bytes_to_read, mitkIpUInt1_t **mem_ptr, char encryption_type ) { while( bytes_to_read > 0 ) @@ -146,7 +185,7 @@ _mitkIpPicReadTagsMem( _mitkIpPicTagsElement_t *head, mitkIpUInt4_t bytes_to_rea /*memmove( tsv->value, *mem_ptr, tsv->bpe/8*_mitkIpPicTSVElements(tsv) );*/ mitkIpCpFromLE( *mem_ptr, tsv->value, _mitkIpPicTSVSize(tsv), tsv->bpe/8 ); *mem_ptr += tsv->bpe/8*_mitkIpPicTSVElements(tsv); - + if( tsv->type == mitkIpPicASCII ) ((char *)(tsv->value))[elements] = '\0'; @@ -159,10 +198,10 @@ _mitkIpPicReadTagsMem( _mitkIpPicTagsElement_t *head, mitkIpUInt4_t bytes_to_rea sprintf( tsv->tag, "*** ENCRYPTED ***" ); tsv->tag[_mitkIpPicTAGLEN] = '\0'; } - + if( tsv->value ) free( tsv->value ); - + tsv->value = strdup( "*** ENCRYPTED ***" ); tsv->n[0] = (mitkIpUInt4_t)strlen(tsv->value); tsv->type = mitkIpPicASCII; diff --git a/Utilities/IpPic/ipPicGetS.c b/Utilities/IpPic/ipPicGetS.c index 93e3d70da92..d0fc1495d7b 100755 --- a/Utilities/IpPic/ipPicGetS.c +++ b/Utilities/IpPic/ipPicGetS.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -93,10 +87,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicGetSlice\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicGetSlice\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicGetT.c b/Utilities/IpPic/ipPicGetT.c index df525e30f5c..ff7da68e6a1 100755 --- a/Utilities/IpPic/ipPicGetT.c +++ b/Utilities/IpPic/ipPicGetT.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -87,10 +81,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicGetTag\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicGetTag\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicInfo.c b/Utilities/IpPic/ipPicInfo.c index a2e5b7c77d9..ef2580f9ec3 100755 --- a/Utilities/IpPic/ipPicInfo.c +++ b/Utilities/IpPic/ipPicInfo.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * prints information about an mitkIpPicDescriptor */ #ifndef lint - static char *what = { "@(#)_mitkIpPicInfo\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpPicInfo\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" @@ -57,8 +51,8 @@ /** prints information about an mitkIpPicDescriptor * * @param stream the output FILE* - * @param pic the pic - * @param flags which information to show + * @param pic the pic + * @param flags which information to show * * @return none * diff --git a/Utilities/IpPic/ipPicNew.c b/Utilities/IpPic/ipPicNew.c index bbe2716141c..7e1045c51c2 100755 --- a/Utilities/IpPic/ipPicNew.c +++ b/Utilities/IpPic/ipPicNew.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -75,10 +69,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicNew\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicNew\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicNewT.c b/Utilities/IpPic/ipPicNewT.c index 997f1b1dd0b..502317ed36d 100755 --- a/Utilities/IpPic/ipPicNewT.c +++ b/Utilities/IpPic/ipPicNewT.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. -*****************************************************************************/ +============================================================================*/ /* @@ -69,15 +63,15 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicNewTag\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicNewTag\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" mitkIpPicTSV *mitkIpPicNewTag( ) -{ +{ } diff --git a/Utilities/IpPic/ipPicOldGet.c b/Utilities/IpPic/ipPicOldGet.c index 95b9ea985bd..a3ea61fcd25 100755 --- a/Utilities/IpPic/ipPicOldGet.c +++ b/Utilities/IpPic/ipPicOldGet.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -81,10 +75,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)_mitkIpPicOldGet\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpPicOldGet\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicOldGetH.c b/Utilities/IpPic/ipPicOldGetH.c index 34d62421b6a..07bd7b9cbfe 100755 --- a/Utilities/IpPic/ipPicOldGetH.c +++ b/Utilities/IpPic/ipPicOldGetH.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -81,10 +75,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)_mitkIpPicOldGetHeader\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpPicOldGetHeader\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicOldGetS.c b/Utilities/IpPic/ipPicOldGetS.c index c17287dcb12..ec43f428b4d 100755 --- a/Utilities/IpPic/ipPicOldGetS.c +++ b/Utilities/IpPic/ipPicOldGetS.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -81,10 +75,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)_mitkIpPicOldGetSlice\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpPicOldGetSlice\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicPut.c b/Utilities/IpPic/ipPicPut.c index 99666c05571..8708c8aecf5 100755 --- a/Utilities/IpPic/ipPicPut.c +++ b/Utilities/IpPic/ipPicPut.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -102,10 +96,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicPut\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicPut\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicPutH.c b/Utilities/IpPic/ipPicPutH.c index 37fecf6bda3..c21b306a07d 100755 --- a/Utilities/IpPic/ipPicPutH.c +++ b/Utilities/IpPic/ipPicPutH.c @@ -1,56 +1,50 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + + +/** @file * writes a PicFile Header to disk */ #ifndef lint - static char *what = { "@(#)mitkIpPicPutHeader\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicPutHeader\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicPutMem.c b/Utilities/IpPic/ipPicPutMem.c index 6248ba5d674..564c5523fe3 100755 --- a/Utilities/IpPic/ipPicPutMem.c +++ b/Utilities/IpPic/ipPicPutMem.c @@ -1,65 +1,59 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + + +/** @file * writes a PicStructure to memory block */ #ifndef lint - static char *what = { "@(#)mitkIpPicPutMem\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicPutMem\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif -#include "mitkIpPic.h" +#include "mitkIpPic.h" /** FUNCTION DECLARATION - * + * * * PARAMETERS - * + * * * AUTHOR & DATE * Harald Evers 15.7.98 @@ -67,7 +61,7 @@ * UPDATES * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1998 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ @@ -120,7 +114,7 @@ void _mitkIpPicWriteTagsMem( _mitkIpPicTagsElement_t *head, mitkIpUInt1_t **mem_ *mem_ptr += sizeof(mitkIpUInt4_t); memmove( *mem_ptr, &(current->tsv->dim), sizeof(mitkIpUInt4_t) ); *mem_ptr += sizeof(mitkIpUInt4_t); - memmove( *mem_ptr, &(current->tsv->n), + memmove( *mem_ptr, &(current->tsv->n), current->tsv->dim*sizeof(mitkIpUInt4_t) ); *mem_ptr += current->tsv->dim*sizeof(mitkIpUInt4_t); @@ -137,7 +131,7 @@ void _mitkIpPicWriteTagsMem( _mitkIpPicTagsElement_t *head, mitkIpUInt1_t **mem_ } current = current->next; } - + } mitkIpUInt1_t * @@ -153,7 +147,7 @@ mitkIpPicPutMem( mitkIpPicDescriptor *pic, int *mem_size ) len = tags_len + 3 * sizeof(mitkIpUInt4_t) + pic->dim * sizeof(mitkIpUInt4_t); - *mem_size = + *mem_size = sizeof(mitkIpPicTag_t) + /* pic version */ sizeof(mitkIpUInt4_t) + /* pic data offset */ len + /* header + tags */ diff --git a/Utilities/IpPic/ipPicPutS.c b/Utilities/IpPic/ipPicPutS.c index cdbf5705931..cf492679dba 100755 --- a/Utilities/IpPic/ipPicPutS.c +++ b/Utilities/IpPic/ipPicPutS.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -90,10 +84,10 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)mitkIpPicPutSlice\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicPutSlice\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" @@ -106,7 +100,7 @@ void mitkIpPicPutSlice( const char *outfile_name, mitkIpPicDescriptor *pic, mitk mitkIpPicDescriptor *pic_in; FILE *outfile; - + size_t ignored; pic_in = mitkIpPicGetHeader( outfile_name, diff --git a/Utilities/IpPic/ipPicQueryT.c b/Utilities/IpPic/ipPicQueryT.c index 38ab26fcbd1..802edd941ed 100755 --- a/Utilities/IpPic/ipPicQueryT.c +++ b/Utilities/IpPic/ipPicQueryT.c @@ -1,61 +1,55 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * searches for a tag */ #ifndef lint - static char *what = { "@(#)mitkIpPicQueryTag\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicQueryTag\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" /** searches for a tag - * + * * @param pic the pic * @param tag the tag to search for * @param head the head of the tags list diff --git a/Utilities/IpPic/ipPicSize.c b/Utilities/IpPic/ipPicSize.c index 5a799dfac54..1e7644effa0 100755 --- a/Utilities/IpPic/ipPicSize.c +++ b/Utilities/IpPic/ipPicSize.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ - -/** @file + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + +/** @file * calculates the size of the image data */ #ifndef lint - static char *what = { "@(#)_mitkIpPicSize\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpPicSize\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" @@ -96,8 +90,8 @@ mitkIpUInt4_t _mitkIpPicSize( elements = pic->n[0]; for( i = 1; i < pic->dim; i++ ) elements *= pic->n[i]; - + bytesPerElement = pic->bpe / 8; - + return( elements * bytesPerElement ); } diff --git a/Utilities/IpPic/ipPicTSVElements.c b/Utilities/IpPic/ipPicTSVElements.c index 4a7b23f3d92..c29b670ce95 100755 --- a/Utilities/IpPic/ipPicTSVElements.c +++ b/Utilities/IpPic/ipPicTSVElements.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * calculates the number of elements in the TSV's value */ #ifndef lint - static char *what = { "@(#)_mitkIpPicTSVElements\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpPicTSVElements\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicTSVSize.c b/Utilities/IpPic/ipPicTSVSize.c index 56958d1f7e7..30328fa5f41 100755 --- a/Utilities/IpPic/ipPicTSVSize.c +++ b/Utilities/IpPic/ipPicTSVSize.c @@ -1,55 +1,49 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file * calculates the size of the TSV's value in bytes */ #ifndef lint - static char *what = { "@(#)_mitkIpPicTSVSize\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)_mitkIpPicTSVSize\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" diff --git a/Utilities/IpPic/ipPicType.c b/Utilities/IpPic/ipPicType.c index 083eaeb0f39..3964719ca54 100755 --- a/Utilities/IpPic/ipPicType.c +++ b/Utilities/IpPic/ipPicType.c @@ -1,63 +1,57 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. -*****************************************************************************/ +============================================================================*/ /** @file - * initialisation of an array that maps the + * initialisation of an array that maps the * mitkIpPicType_t types to printable strings */ #ifndef lint - static char *what = { "@(#)mitkIpPicType\t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)mitkIpPicType\t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif #include "mitkIpPic.h" -/** initialisation of an array that maps the +/** initialisation of an array that maps the * mitkIpPicType_t types to printable strings - * + * * @param type the type * * @return the printable string diff --git a/Utilities/IpPic/ipWin.c b/Utilities/IpPic/ipWin.c index 2b723b71d4f..5add62deb62 100755 --- a/Utilities/IpPic/ipWin.c +++ b/Utilities/IpPic/ipWin.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ #ifdef WIN diff --git a/Utilities/IpPic/mitkIpPic.h b/Utilities/IpPic/mitkIpPic.h index 0cc63aa766d..c89f8ddf03e 100644 --- a/Utilities/IpPic/mitkIpPic.h +++ b/Utilities/IpPic/mitkIpPic.h @@ -1,7 +1,6 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. Redistribution and use in source and binary forms, with or without @@ -17,32 +16,27 @@ - All advertising materials mentioning features or use of this software must display the following acknowledgement: - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /** @file */ @@ -213,7 +207,7 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #define USE_ITKZLIB diff --git a/Utilities/IpPic/mitkIpPicOldP.h b/Utilities/IpPic/mitkIpPicOldP.h index 5da7804a08d..5a3e07f31c6 100755 --- a/Utilities/IpPic/mitkIpPicOldP.h +++ b/Utilities/IpPic/mitkIpPicOldP.h @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. + "This product includes software developed by the German Cancer Research + Center (DKFZ)." - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. -*****************************************************************************/ +============================================================================*/ /* @@ -69,7 +63,7 @@ * * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef _mitkIpPicOldP_h diff --git a/Utilities/IpPic/mitkIpPicTypeMultiplex.h b/Utilities/IpPic/mitkIpPicTypeMultiplex.h index 775cfb5fed8..9cff7435ecc 100644 --- a/Utilities/IpPic/mitkIpPicTypeMultiplex.h +++ b/Utilities/IpPic/mitkIpPicTypeMultiplex.h @@ -1,5 +1,44 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ + /** @file -*DKFZ - Heidelberg * *Module Name:mitkIpPicTypeMultiplex * diff --git a/Utilities/IpPic/mitkIpTypes.h b/Utilities/IpPic/mitkIpTypes.h index fce747fdf16..5927d88ba01 100755 --- a/Utilities/IpPic/mitkIpTypes.h +++ b/Utilities/IpPic/mitkIpTypes.h @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -52,7 +46,6 @@ * defines the ipTypes * *-------------------------------------------------------------------- - * COPYRIGHT (c) 1994 by DKFZ (Dept. MBI) Heidelberg, FRG */ #ifndef _mitkIpTypes_h diff --git a/Utilities/IpPic/pic2seq.c b/Utilities/IpPic/pic2seq.c index 218e2ffad6e..ecaaa6fef27 100755 --- a/Utilities/IpPic/pic2seq.c +++ b/Utilities/IpPic/pic2seq.c @@ -1,3 +1,42 @@ +/*============================================================================ + + Copyright (c) German Cancer Research Center (DKFZ) + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + - Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /********************************************************************* / / pic2seq / @@ -29,10 +68,9 @@ / / / / / / -/ COPYRIGHT (c) 1992 by DKFZ (Dept. MBI) Heidelberg, FRG / /**********************************************************************/ -static char *what[] = { - "@(#)seqtopic \t06/92\tDKFZ (Dept. MBI)\t08.06.1992", +static char *what[] = { + "@(#)seqtopic \t06/92\tGerman Cancer Research Center (DKFZ)\t08.06.1992", }; /* standard include files */ #include @@ -53,9 +91,9 @@ typedef char Bool; #endif void main( int argc, char *argv[] ) -{ +{ int i; - + int n_infiles; char **infile_names; @@ -65,24 +103,24 @@ void main( int argc, char *argv[] ) Bool use_stdin; Bool use_stdout; Bool use_textfile; - + Bool append; int soffset; int aoffset; - + char outfile_name[FILENAME_MAX], outfile_string[FILENAME_MAX]; - + mitkIpPicDescriptor *pic = NULL,*header; - - - /*--------------- commandline scaning starts here -----------*/ + + + /*--------------- commandline scaning starts here -----------*/ append = False; use_stdin = True; use_stdout = True; scan_error = False; use_textfile = False; - + aoffset = 0; soffset = 0; @@ -119,9 +157,9 @@ void main( int argc, char *argv[] ) } n++; } - + if( scan_error ) - { + { fprintf( stderr, "Usage: %s -a -f outfile infiles \n", argv[0] ); fprintf( stderr, " -a appends the infiles to outfile\n" ); fprintf( stderr, " -f \"infiles\" is a text file containing the list of inputfiles\n" ); @@ -129,9 +167,9 @@ void main( int argc, char *argv[] ) fprintf( stderr, " infiles a list of inputfiles\n" ); exit( -1 ); } - + /*--------------- commandline scaning ends here -------------*/ - + /* read text file, if specified*/ if(use_textfile) { @@ -184,9 +222,9 @@ void main( int argc, char *argv[] ) for(i=0;idim++; pic->n[pic->dim-1]=1; - mitkIpPicPut(argv[aoffset+1], pic); + mitkIpPicPut(argv[aoffset+1], pic); } else mitkIpPicPutSlice( argv[aoffset+1], pic, soffset + i + 1 ); - + } - + exit( 0 ); } diff --git a/Utilities/IpPic/picinfo.c b/Utilities/IpPic/picinfo.c index 7755afc52ae..eeb361ad7d0 100755 --- a/Utilities/IpPic/picinfo.c +++ b/Utilities/IpPic/picinfo.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ /* @@ -82,10 +76,10 @@ * * *--------------------------------------------------------------- - * COPYRIGHT (c) 1993 by DKFZ (Dept. MBI) Heidelberg, FRG + * */ #ifndef lint - static char *what = { "@(#)picinfo \t\tDKFZ (Dept. MBI)\t"__DATE__"\t$Revision$" }; + static char *what = { "@(#)picinfo \t\tGerman Cancer Research Center (DKFZ)\t"__DATE__"\t$Revision$" }; #endif /* diff --git a/Utilities/IpPic/test.c b/Utilities/IpPic/test.c index 16efa9bd3ab..a96d506f4bd 100755 --- a/Utilities/IpPic/test.c +++ b/Utilities/IpPic/test.c @@ -1,48 +1,42 @@ -/***************************************************************************** +/*============================================================================ - Copyright (c) 1993-2000, Div. Medical and Biological Informatics, - Deutsches Krebsforschungszentrum, Heidelberg, Germany + Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. - Redistribution and use in source and binary forms, with or without + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - - Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation + - Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - - All advertising materials mentioning features or use of this software must - display the following acknowledgement: - - "This product includes software developed by the Div. Medical and - Biological Informatics, Deutsches Krebsforschungszentrum, Heidelberg, - Germany." - - - Neither the name of the Deutsches Krebsforschungszentrum nor the names of - its contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE DIVISION MEDICAL AND BIOLOGICAL - INFORMATICS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL THE DIVISION MEDICAL AND BIOLOGICAL INFORMATICS, - THE DEUTSCHES KREBSFORSCHUNGSZENTRUM OR CONTRIBUTORS BE LIABLE FOR - ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE - GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER - IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN - IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Send comments and/or bug reports to: - mbi-software@dkfz-heidelberg.de - -*****************************************************************************/ + - All advertising materials mentioning features or use of this software must + display the following acknowledgement: + + "This product includes software developed by the German Cancer Research + Center (DKFZ)." + + - Neither the name of the German Cancer Research Center (DKFZ) nor the names + of its contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE GERMAN CANCER RESEARCH CENTER (DKFZ) AND + CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, + BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE GERMAN + CANCER RESEARCH CENTER (DKFZ) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH + DAMAGE. + +============================================================================*/ #include diff --git a/Utilities/IpSegmentation/ipSegmentation.h b/Utilities/IpSegmentation/ipSegmentation.h index 834826196f9..092ba392523 100644 --- a/Utilities/IpSegmentation/ipSegmentation.h +++ b/Utilities/IpSegmentation/ipSegmentation.h @@ -1,28 +1,24 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ /*! \mainpage - \author Tobias Kunert, Thomas Boettger, Tobias Heimann (Deutsches Krebsforschungszentrum, Heidelberg) + \author Tobias Kunert, Thomas Boettger, Tobias Heimann \date October 2002 The ipMITKSegmentation library manages the results of the segmentation process. It provides basic capabilities to modify segmentation images. It includes also an - undo mechanism which allows to trace back the changes. + undo mechanism which allows to trace back the changes. */ @@ -67,7 +63,7 @@ extern "C" /*! \brief Interpolates the shape of segmentations. @param pic1,pic2 the images of the segmentation - @param ratio the ratio of the images, the ratios 0.0 and 1.0 will + @param ratio the ratio of the images, the ratios 0.0 and 1.0 will produce pic1 and pic2, accordingly. */ extern mitkIpPicDescriptor* ipMITKSegmentationInterpolate (mitkIpPicDescriptor* pic1, mitkIpPicDescriptor* pic2, const mitkIpFloat4_t ratio); @@ -88,7 +84,7 @@ extern "C" by a 2-D vector (x, y) @param segmentation the segmentation. @param num the number of points - @param mask the image which restricts the operation to a particular region + @param mask the image which restricts the operation to a particular region @param operation the operation which will be performed (see above) @param value the operand value of the operation \note The last point is automatically connected with the first one. @@ -97,7 +93,7 @@ extern "C" /*! \brief Enables the undo operation for the specified segmentation. - @param segmentation the segmentation + @param segmentation the segmentation @param level the number of undo levels */ extern void ipMITKSegmentationUndoEnable (mitkIpPicDescriptor* segmentation, const mitkIpUInt1_t level); @@ -105,7 +101,7 @@ extern "C" /*! \brief Disables the undo operation for the specified segmentation. The available data will be discarded. - @param segmentation the segmentation + @param segmentation the segmentation */ extern void ipMITKSegmentationUndoDisable (mitkIpPicDescriptor* segmentation); @@ -128,7 +124,7 @@ extern "C" extern void ipMITKSegmentationUndoSave (mitkIpPicDescriptor* segmentation); /*! - \brief Steps to the previous undo level. The data which has been saved + \brief Steps to the previous undo level. The data which has been saved before the last modifications will be restored. */ extern void ipMITKSegmentationUndo (mitkIpPicDescriptor* segmentation); @@ -144,7 +140,7 @@ extern "C" If maxIterations is > 0, the growing process is stopped after maxIterations. If segBuffer is 0, new memory for the segmented image is allocated and returned, else the segBuffer is used to store the result (has to be an 8-bit datatype, e.g. mitkIpUInt1_t). - histBuffer must be 0 or a pointer to a 16-bit mitkIpPicUInt image of the same size as src. In case of the latter, + histBuffer must be 0 or a pointer to a 16-bit mitkIpPicUInt image of the same size as src. In case of the latter, history data is written to that buffer: the seed pixel gets a 1, all direct neighbours 2 etc. The buffer is not cleared in this function and can thus hold history data of several growing processes in different areas. */ diff --git a/Utilities/IpSegmentation/ipSegmentationClear.c b/Utilities/IpSegmentation/ipSegmentationClear.c index 1a855012506..663164c73bf 100644 --- a/Utilities/IpSegmentation/ipSegmentationClear.c +++ b/Utilities/IpSegmentation/ipSegmentationClear.c @@ -1,28 +1,24 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "empty.xpm" #include "ipSegmentationP.h" -void +void ipMITKSegmentationClear (mitkIpPicDescriptor* segmentation) { - ipMITKSegmentationTYPE *cur, *last; - mitkIpPicTSV_t* tag; - const char *src; + ipMITKSegmentationTYPE *cur, *last; + mitkIpPicTSV_t* tag; + const char *src; mitkIpUInt1_t *dst; mitkIpUInt4_t i, j; @@ -49,7 +45,7 @@ ipMITKSegmentationClear (mitkIpPicDescriptor* segmentation) tag->bpe = sizeof (mitkIpBool_t) / 8; tag->dim = 1; tag->n[0] = 1; - tag->value = malloc (sizeof (mitkIpBool_t)); + tag->value = malloc (sizeof (mitkIpBool_t)); *((mitkIpBool_t *) tag->value) = mitkIpTrue; mitkIpPicAddTag (segmentation, tag); } @@ -63,7 +59,7 @@ ipMITKSegmentationClear (mitkIpPicDescriptor* segmentation) tag->bpe = 8; tag->dim = 2; tag->n[0] = 80; - tag->n[1] = 80; + tag->n[1] = 80; tag->value = malloc (tag->n[0] * tag->n[1] * sizeof (mitkIpUInt1_t)); strcpy (tag->tag, "ICON80x80"); mitkIpPicAddTag (segmentation, tag); @@ -76,5 +72,5 @@ ipMITKSegmentationClear (mitkIpPicDescriptor* segmentation) src++; dst++; } - } + } } diff --git a/Utilities/IpSegmentation/ipSegmentationContourExtraction.cpp b/Utilities/IpSegmentation/ipSegmentationContourExtraction.cpp index 7985df9ad9a..c3442d29bd7 100755 --- a/Utilities/IpSegmentation/ipSegmentationContourExtraction.cpp +++ b/Utilities/IpSegmentation/ipSegmentationContourExtraction.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "ipSegmentation.h" diff --git a/Utilities/IpSegmentation/ipSegmentationContourUtils.cpp b/Utilities/IpSegmentation/ipSegmentationContourUtils.cpp index c21de7bfea5..22a5dc05630 100755 --- a/Utilities/IpSegmentation/ipSegmentationContourUtils.cpp +++ b/Utilities/IpSegmentation/ipSegmentationContourUtils.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ipSegmentation.h" diff --git a/Utilities/IpSegmentation/ipSegmentationError.c b/Utilities/IpSegmentation/ipSegmentationError.c index 4c2309b4ba7..759b0c10e12 100644 --- a/Utilities/IpSegmentation/ipSegmentationError.c +++ b/Utilities/IpSegmentation/ipSegmentationError.c @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "ipSegmentationP.h" @@ -42,16 +38,16 @@ ipMITKSegmentationError (int error) } if (error > 0) { exit (-1); - } + } } void -ipMITKSegmentationCheckImage (mitkIpPicDescriptor* segmentation) +ipMITKSegmentationCheckImage (mitkIpPicDescriptor* segmentation) { if ((segmentation->type != ipMITKSegmentationTYPE_ID) || (segmentation->bpe != ipMITKSegmentationBPE)) { ipMITKSegmentationError (ipMITKSegmentationWRONG_TYPE); } if (!segmentation->data) { ipMITKSegmentationError (ipMITKSegmentationUNKNOWN_ERROR); - } + } } diff --git a/Utilities/IpSegmentation/ipSegmentationError.h b/Utilities/IpSegmentation/ipSegmentationError.h index 731722ea4dc..864218516f4 100644 --- a/Utilities/IpSegmentation/ipSegmentationError.h +++ b/Utilities/IpSegmentation/ipSegmentationError.h @@ -1,24 +1,20 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IPSEGMENTATION_ERROR_H #define IPSEGMENTATION_ERROR_H enum { ipMITKSegmentationOK = 0 /*! No errors at all. */, - ipMITKSegmentationOUT_OF_MEMORY /*! Not enough memory available. */, + ipMITKSegmentationOUT_OF_MEMORY /*! Not enough memory available. */, ipMITKSegmentationWRONG_TYPE /*! Segmentation image has a wrong type. */, ipMITKSegmentationUNDO_DISABLED /*! Undo cannot be performed. */, ipMITKSegmentationPIC_NULL /*! PIC descriptor is null. */, @@ -26,8 +22,8 @@ enum { }; /*! -\brief Prints an error message and exits -if an error has occurred. +\brief Prints an error message and exits +if an error has occurred. @param error error code */ void ipMITKSegmentationError (int error); diff --git a/Utilities/IpSegmentation/ipSegmentationFree.c b/Utilities/IpSegmentation/ipSegmentationFree.c index da3c74f9927..106d8562ff3 100644 --- a/Utilities/IpSegmentation/ipSegmentationFree.c +++ b/Utilities/IpSegmentation/ipSegmentationFree.c @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include diff --git a/Utilities/IpSegmentation/ipSegmentationGrowerHistory.cpp b/Utilities/IpSegmentation/ipSegmentationGrowerHistory.cpp index ddbe5c21a29..577441d829f 100755 --- a/Utilities/IpSegmentation/ipSegmentationGrowerHistory.cpp +++ b/Utilities/IpSegmentation/ipSegmentationGrowerHistory.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "ipSegmentation.h" diff --git a/Utilities/IpSegmentation/ipSegmentationInterpolate.c b/Utilities/IpSegmentation/ipSegmentationInterpolate.c index 685866b4a83..8962636e76f 100644 --- a/Utilities/IpSegmentation/ipSegmentationInterpolate.c +++ b/Utilities/IpSegmentation/ipSegmentationInterpolate.c @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Utilities/IpSegmentation/ipSegmentationNew.c b/Utilities/IpSegmentation/ipSegmentationNew.c index 23d84ad7c06..58f543fcc0a 100644 --- a/Utilities/IpSegmentation/ipSegmentationNew.c +++ b/Utilities/IpSegmentation/ipSegmentationNew.c @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "ipSegmentationP.h" diff --git a/Utilities/IpSegmentation/ipSegmentationP.h b/Utilities/IpSegmentation/ipSegmentationP.h index 364776ad9ec..fdfc7128d2a 100644 --- a/Utilities/IpSegmentation/ipSegmentationP.h +++ b/Utilities/IpSegmentation/ipSegmentationP.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef IPSEGMENTATIONP_H #define IPSEGMENTATIONP_H diff --git a/Utilities/IpSegmentation/ipSegmentationRegionCutter.cpp b/Utilities/IpSegmentation/ipSegmentationRegionCutter.cpp index 2021f5da8d0..b9518ac97f7 100755 --- a/Utilities/IpSegmentation/ipSegmentationRegionCutter.cpp +++ b/Utilities/IpSegmentation/ipSegmentationRegionCutter.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Utilities/IpSegmentation/ipSegmentationRegionGrower.cpp b/Utilities/IpSegmentation/ipSegmentationRegionGrower.cpp index ad339fbf070..f4779482f5b 100755 --- a/Utilities/IpSegmentation/ipSegmentationRegionGrower.cpp +++ b/Utilities/IpSegmentation/ipSegmentationRegionGrower.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Utilities/IpSegmentation/ipSegmentationReplaceRegion.cpp b/Utilities/IpSegmentation/ipSegmentationReplaceRegion.cpp index 95a86311228..e697b93e6d6 100755 --- a/Utilities/IpSegmentation/ipSegmentationReplaceRegion.cpp +++ b/Utilities/IpSegmentation/ipSegmentationReplaceRegion.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include "ipSegmentation.h" diff --git a/Utilities/IpSegmentation/ipSegmentationUndo.c b/Utilities/IpSegmentation/ipSegmentationUndo.c index 3f72bb1604a..0f7e1a75ecb 100644 --- a/Utilities/IpSegmentation/ipSegmentationUndo.c +++ b/Utilities/IpSegmentation/ipSegmentationUndo.c @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include @@ -22,7 +18,7 @@ static char* tagUNDO = "SEGMENTATION_UNDO"; static char* tagUNDO_DATA = "DATA"; static char* tagUNDO_LEVEL = "LEVEL"; -// Implemented in mitkIpPicDelT.c +// Implemented in mitkIpPicDelT.c static mitkIpPicTSV_t *_mitkIpPicRemoveTag( _mitkIpPicTagsElement_t **head, _mitkIpPicTagsElement_t *which, char *tag ); diff --git a/Utilities/mbilog/mbilog.cpp b/Utilities/mbilog/mbilog.cpp index c9c222bfd3f..bcdba45ee7b 100644 --- a/Utilities/mbilog/mbilog.cpp +++ b/Utilities/mbilog/mbilog.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Utilities/mbilog/mbilog.h b/Utilities/mbilog/mbilog.h index 355a3c6720d..3e797863a31 100644 --- a/Utilities/mbilog/mbilog.h +++ b/Utilities/mbilog/mbilog.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MBILOG_H #define _MBILOG_H diff --git a/Utilities/mbilog/mbilogBackendBase.cpp b/Utilities/mbilog/mbilogBackendBase.cpp index 719193cff00..3ac534e66ad 100644 --- a/Utilities/mbilog/mbilogBackendBase.cpp +++ b/Utilities/mbilog/mbilogBackendBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mbilogBackendBase.h" diff --git a/Utilities/mbilog/mbilogBackendBase.h b/Utilities/mbilog/mbilogBackendBase.h index db4d4926629..f13a992b70a 100644 --- a/Utilities/mbilog/mbilogBackendBase.h +++ b/Utilities/mbilog/mbilogBackendBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mbilogBackendBase_H #define _mbilogBackendBase_H diff --git a/Utilities/mbilog/mbilogBackendCout.cpp b/Utilities/mbilog/mbilogBackendCout.cpp index ecb2ff954e4..bd9604f3c1d 100644 --- a/Utilities/mbilog/mbilogBackendCout.cpp +++ b/Utilities/mbilog/mbilogBackendCout.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include #include diff --git a/Utilities/mbilog/mbilogBackendCout.h b/Utilities/mbilog/mbilogBackendCout.h index b793b1cad91..e4d290980d3 100644 --- a/Utilities/mbilog/mbilogBackendCout.h +++ b/Utilities/mbilog/mbilogBackendCout.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mbilogBackendCout_H #define _mbilogBackendCout_H diff --git a/Utilities/mbilog/mbilogConfig.h.in b/Utilities/mbilog/mbilogConfig.h.in index eac861f4f13..ac5ed9321b6 100644 --- a/Utilities/mbilog/mbilogConfig.h.in +++ b/Utilities/mbilog/mbilogConfig.h.in @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MBILOG_CONFIG_H_ #define _MBILOG_CONFIG_H_ diff --git a/Utilities/mbilog/mbilogLogMessage.cpp b/Utilities/mbilog/mbilogLogMessage.cpp index ad7782982d4..1611c219452 100644 --- a/Utilities/mbilog/mbilogLogMessage.cpp +++ b/Utilities/mbilog/mbilogLogMessage.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mbilogLogMessage.h" diff --git a/Utilities/mbilog/mbilogLogMessage.h b/Utilities/mbilog/mbilogLogMessage.h index 5c8df2af36f..82edb8d7500 100644 --- a/Utilities/mbilog/mbilogLogMessage.h +++ b/Utilities/mbilog/mbilogLogMessage.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mbilogLogMessage_H #define _mbilogLogMessage_H diff --git a/Utilities/mbilog/mbilogLoggingTypes.h b/Utilities/mbilog/mbilogLoggingTypes.h index e045371e998..d503fd02b82 100644 --- a/Utilities/mbilog/mbilogLoggingTypes.h +++ b/Utilities/mbilog/mbilogLoggingTypes.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MBILOG_LOGGINGTYPES_H_ #define _MBILOG_LOGGINGTYPES_H_ diff --git a/Utilities/mbilog/mbilogTextBackendBase.cpp b/Utilities/mbilog/mbilogTextBackendBase.cpp index fbb620b227d..1d33c1cd7a4 100644 --- a/Utilities/mbilog/mbilogTextBackendBase.cpp +++ b/Utilities/mbilog/mbilogTextBackendBase.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "mbilogTextBackendBase.h" #include "mbilogLoggingTypes.h" diff --git a/Utilities/mbilog/mbilogTextBackendBase.h b/Utilities/mbilog/mbilogTextBackendBase.h index be10b1ea640..be4e072b088 100644 --- a/Utilities/mbilog/mbilogTextBackendBase.h +++ b/Utilities/mbilog/mbilogTextBackendBase.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _mbilogTextBackendBase_H #define _mbilogTextBackendBase_H diff --git a/Utilities/mbilog/mbilogTextDictionary.h b/Utilities/mbilog/mbilogTextDictionary.h index cb2c6aff3fe..e84e599c81d 100644 --- a/Utilities/mbilog/mbilogTextDictionary.h +++ b/Utilities/mbilog/mbilogTextDictionary.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef _MBILOG_TEXTDICTIONARY_H_ #define _MBILOG_TEXTDICTIONARY_H_ diff --git a/Utilities/qtsingleapplication/qthandlenewappinstance.cpp b/Utilities/qtsingleapplication/qthandlenewappinstance.cpp index 26132ea44e6..a51d190256d 100644 --- a/Utilities/qtsingleapplication/qthandlenewappinstance.cpp +++ b/Utilities/qtsingleapplication/qthandlenewappinstance.cpp @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #include "qthandlenewappinstance.h" diff --git a/Utilities/qtsingleapplication/qthandlenewappinstance.h b/Utilities/qtsingleapplication/qthandlenewappinstance.h index 0dd8d2a4895..2abc418607e 100644 --- a/Utilities/qtsingleapplication/qthandlenewappinstance.h +++ b/Utilities/qtsingleapplication/qthandlenewappinstance.h @@ -1,18 +1,14 @@ -/*=================================================================== +/*============================================================================ The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, -Division of Medical and Biological Informatics. +Copyright (c) German Cancer Research Center (DKFZ) All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without -even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. +Use of this source code is governed by a 3-clause BSD license that can be +found in the LICENSE file. -See LICENSE.txt or http://www.mitk.org for details. - -===================================================================*/ +============================================================================*/ #ifndef QTHANDLENEWAPPINSTANCE_H #define QTHANDLENEWAPPINSTANCE_H diff --git a/Wrapping/Python/Packaging/setup.py.in b/Wrapping/Python/Packaging/setup.py.in index b4c8215a589..54812dd4105 100644 --- a/Wrapping/Python/Packaging/setup.py.in +++ b/Wrapping/Python/Packaging/setup.py.in @@ -98,7 +98,7 @@ class build_ext(_build_ext): setup( name = 'pyMITK', version = get_pep386version(), - author = 'Medical Image Computing, DKFZ Heidelberg', + author = 'German Cancer Research Center (DKFZ)', author_email = 'm.goetz@dkfz-heidelberg.de', ext_modules=[Extension('pyMITK._pyMITK', [r'@MITK_BINARY_MODULE@'])], packages= ['pyMITK'],